empty objects cannot have modifiers #44150

Closed
opened 2015-03-27 03:38:17 +01:00 by Ian Bruce · 7 comments

System Information
Debian Linux

Blender Version
2.72.b

Short description of error

One of the recommended uses for empty objects is as a parent for a group of other objects:

  "An Empty can be parented to any number of other objects --
  This gives the user the ability to control a group of objects easily,
  and without affecting a render."

http://www.blender.org/manual/modeling/empties.html

If this is done, it would then be very useful to be able to use the Array Modifier (and possibly others) to make multiple copies of the compound object. However, it appears that this is not currently possible; the Properties pane for empty objects does not offer a Modifiers tab.

Is there any rational reason for this restriction?

A related question would be, why is there no way that an empty object can be used to control the visibility of its children?

**System Information** Debian Linux **Blender Version** 2.72.b **Short description of error** One of the recommended uses for empty objects is as a parent for a group of other objects: ``` "An Empty can be parented to any number of other objects -- This gives the user the ability to control a group of objects easily, and without affecting a render." ``` http://www.blender.org/manual/modeling/empties.html If this is done, it would then be very useful to be able to use the Array Modifier (and possibly others) to make multiple copies of the compound object. However, it appears that this is not currently possible; the Properties pane for empty objects does not offer a Modifiers tab. Is there any rational reason for this restriction? A related question would be, why is there no way that an empty object can be used to control the visibility of its children?
Author

Changed status to: 'Open'

Changed status to: 'Open'
Author

Added subscriber: @ian_bruce

Added subscriber: @ian_bruce

Changed status from 'Open' to: 'Archived'

Changed status from 'Open' to: 'Archived'
Bastien Montagne self-assigned this 2015-03-27 11:19:58 +01:00

Thanks for the report, but that kind of discussion/request has nothing to do on our tracker, please rather use ML, IRC or forums.

That said, modifiers do not affect objects, they affect geometries (i.e. object’s data). Since empties have no data/geometry, they cannot have modifiers…

(as for visibility, pretty sure this is easily doable with drivers).

Thanks for the report, but that kind of discussion/request has nothing to do on our tracker, please rather use ML, IRC or forums. That said, modifiers do not affect **objects**, they affect **geometries** (i.e. object’s data). Since empties have no data/geometry, they cannot have modifiers… (as for visibility, pretty sure this is easily doable with drivers).
Author

propellor.blend

propellor2.blend
Apparently, even for non-empty objects, the Array modifier (and others?) is NOT applied to its child objects. This seems to make it much less useful than it would otherwise be, if it's not functional for compound objects.

Is there a reason why this should be so? Can recursive application at least be made an option?

Perhaps this bug should be retitled "modifiers are not applied to child objects". Until that becomes possible, there is obviously no reason why it would be useful for empty objects to have modifiers.

The two attached files are intended as examples of WHY it is desirable that modifiers be applicable to child objects, even of empty parents. Discussion to follow, if anybody's interested.

related:

http://blender.stackexchange.com/questions/13396/array-modifier-on-parent-and-all-of-its-children

http://blender.stackexchange.com/questions/3488/is-it-possible-to-apply-modifiers-to-multiple-objects-at-once

http://blenderartists.org/forum/showthread.php?175763-Groups-Parent-objects-explained

[propellor.blend](https://archive.blender.org/developer/F155554/propellor.blend) [propellor2.blend](https://archive.blender.org/developer/F155555/propellor2.blend) Apparently, even for non-empty objects, the Array modifier (and others?) is NOT applied to its child objects. This seems to make it much less useful than it would otherwise be, if it's not functional for compound objects. Is there a reason why this should be so? Can recursive application at least be made an option? Perhaps this bug should be retitled "modifiers are not applied to child objects". Until that becomes possible, there is obviously no reason why it would be useful for empty objects to have modifiers. The two attached files are intended as examples of WHY it is desirable that modifiers be applicable to child objects, even of empty parents. Discussion to follow, if anybody's interested. related: http://blender.stackexchange.com/questions/13396/array-modifier-on-parent-and-all-of-its-children http://blender.stackexchange.com/questions/3488/is-it-possible-to-apply-modifiers-to-multiple-objects-at-once http://blenderartists.org/forum/showthread.php?175763-Groups-Parent-objects-explained
Author

why is there no way that an empty object can be used to control the visibility of its children?

Apparently this is incorrect. The key recursively applies the visibility change to the child objects (why can't modifiers do that?).

But this is still the wrong algorithm. It means that if you have explicitly turned off visibility for some object, and then recursively turn visibility off and then on again for one of its ancestors, the object which you thought you had made invisible is now visible again, almost certainly against your wishes.

Compare to Inkscape: there the actual visibility status of an object is the logical AND of its own explicit visibility setting with that of all of its ancestors. If an object is set to invisible, turning one of its ancestors off and then on again will not make it visible. It's pretty hard to imagine a situation in which what Blender does would be preferable to this.

However, the situations are not exactly comparable, because in Inkscape, a parent object ("group") must necessarily be empty. Since it can't have any content of its own, its visibility setting only matters in relation to its descendents; there is no distinction to be made between recursive and non-recursive visibility.

In Blender, a parent object can have its own content; it is quite possible that you would want to have that visible, but not the children, or the other way around. Presumably this is what the recursive/non-recursive visibility controls are intended to address. But for the reasons given above, this is inadequate. What is really needed is that parent objects have two visibility controls (and two render controls?), one for their own content, and one for their descendents, which would function as a mask, as it does in Inkscape.

> why is there no way that an empty object can be used to control the visibility of its children? Apparently this is incorrect. The <CTRL> key recursively applies the visibility change to the child objects (why can't modifiers do that?). But this is still the wrong algorithm. It means that if you have explicitly turned off visibility for some object, and then recursively turn visibility off and then on again for one of its ancestors, the object which you thought you had made invisible is now visible again, almost certainly against your wishes. Compare to Inkscape: there the actual visibility status of an object is the logical AND of its own explicit visibility setting with that of all of its ancestors. If an object is set to invisible, turning one of its ancestors off and then on again will not make it visible. It's pretty hard to imagine a situation in which what Blender does would be preferable to this. However, the situations are not exactly comparable, because in Inkscape, a parent object ("group") must necessarily be empty. Since it can't have any content of its own, its visibility setting only matters in relation to its descendents; there is no distinction to be made between recursive and non-recursive visibility. In Blender, a parent object can have its own content; it is quite possible that you would want to have that visible, but not the children, or the other way around. Presumably this is what the recursive/non-recursive visibility controls are intended to address. But for the reasons given above, this is inadequate. What is really needed is that parent objects have two visibility controls (and two render controls?), one for their own content, and one for their descendents, which would function as a mask, as it does in Inkscape.
Author

modifiers do not affect objects, they affect geometries (i.e. object’s data). Since empties have no data/geometry, they cannot have modifiers...

Their descendent objects presumably have both data and geometry; this is what the modifier would be applied to. I thought I had made this clear by quoting from the manual, about empty objects being used as parents.

I've just uploaded an example which seems impossible to accomplish in any other way. There would be a trivial solution, if modifiers were applied to child objects.

> modifiers do not affect objects, they affect geometries (i.e. object’s data). Since empties have no data/geometry, they cannot have modifiers... Their descendent objects presumably have both data and geometry; this is what the modifier would be applied to. I thought I had made this clear by quoting from the manual, about empty objects being used as parents. I've just uploaded an example which seems impossible to accomplish in any other way. There would be a trivial solution, if modifiers were applied to child objects.
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#44150
No description provided.