New naming convention proposal #149
BIN
docs/media/naming-conventions/collection_hierarchy_naming_example.png
(Stored with Git LFS)
Normal file
BIN
docs/media/naming-conventions/hierarchy_name_example.png
(Stored with Git LFS)
Normal file
@ -1,62 +1,147 @@
|
|||||||
# In-file Prefixes
|
# Datablock names
|
||||||
|
|
||||||
::: warning Work in Progress
|
Naming objects in a Blender production can be quite non-trivial when trying to achieve stability, clarity, and the ability to easily make shot files fully local at the end of production, to create fully interactive demo files that can be shared with the world.
|
||||||
Oct 13th 2023 - The content of this page is currently being edited/updated.
|
|
||||||
:::
|
|
||||||
|
|
||||||
## Collection names
|
## Separators
|
||||||
|
We try keep their meaning consistent across conventions:
|
||||||
|
|||||||
|
`-` : Separates prefixes (including the Namespace Identifier) from each other and from the rest of the name, eg. `GEO-esprite-head`. Also should be used for naming objects in a hierarchical way when possible, see "Indicating a hierarchy" below.
|
||||||
Simon Thommes
commented
To me these two categories are completely separate from each other. There could also be variations of symmetric objects. I'd propose to use To me these two categories are completely separate from each other. There could also be variations of symmetric objects.
I'd propose to use `.` generally for parts/hierarchies like we have in the past. `.L/R` is compatible with that definition imo.
Variations are for me something orthogonal to that. Could we introduce `:`? Not sure why we are limited to those 3, as compatibility shouldn't be an issue.
Demeter Dzadik
commented
I agree with introducing Only note is that I would still always put I agree with introducing `:` as a separator for variants, I only didn't do this because I wasn't sure if you guys are open to it.
Only note is that I would still always put `.L/.R` at the very end, even if there is a variation, otherwise blender's built-in name flipping function wouldn't work. (Which to be fair isn't used for any built-in operators in Object mode, but for add-ons it's still handy.)
|
|||||||
|
`.` : Separates suffixes for symmetry sides, eg. `GEO-esprite-eye.L`, as well as asset variants, see below.
|
||||||
|
`_` : Used to separate parts of the base name, eg. `wooden_wardrobe_032`. The base name of an ID never has any technical significance.
|
||||||
Simon Thommes
commented
I had to google what mnemonic means. Maybe we can move to something more intuitive like identifier? I had to google what mnemonic means. Maybe we can move to something more intuitive like identifier?
Demeter Dzadik
commented
Agreed! Agreed!
|
|||||||
|
|
||||||
We use prefixes only for top level collections of an asset. This is important to distinguish types of assets. The name of the asset itself should be lowercase.
|
## Namespace Identifier
|
||||||
|
|
||||||
Andy Goralczyk
commented
The mnemonics should have more 4 letters (more than the 2 and 3) to distinguish them from asset prefixes. otherwise it would be easy to confuse the two. maybe making them lower case would help too. The mnemonics should have more 4 letters (more than the 2 and 3) to distinguish them from asset prefixes. otherwise it would be easy to confuse the two. maybe making them lower case would help too.
Demeter Dzadik
commented
If we don't mind longer ID names, I'm happy to use just a slightly shortened version of names, eg. "elder" for Elder Sprite or "rocket_int" for Rocket Interior. If we don't mind longer ID names, I'm happy to use just a slightly shortened version of names, eg. "elder" for Elder Sprite or "rocket_int" for Rocket Interior.
|
|||||||
|
All datablocks across the entire production must have a unique name. To faciliate this, each asset's name, or a shortened version of it, should be present in all datablock names of that asset. This should be enforced by add-ons wherever possible. For example, the character "Elder Sprite" might have a full-length unique identifier of `elder_sprite`, along with an optional shortened (but still unique) version, eg. `esprite`. You should use the short version most of the time, eg. `GEO-esprite-head`, but the longer version when the name doesn't have a lot of other information, eg. the asset's root collection (`CH-elder_sprite`) or the rig object (`RIG-elder_sprite`).
|
||||||
|
|
||||||
|
This also applies to datablocks which are not part of an asset, for example pose library poses and shared node groups that get linked into assets. Their namespace identifier should simply be the name of the .blend file that they're in, or a shortened version of it.
|
||||||
|
|
||||||
|
This identifier will be present among the prefixes in the names of datablocks, to make sure all names are unique, not just in a single file, but across the whole production. This is necessary because Blender's Library Override system relies on making local copies of linked object hierarchies, meaning all assets need to be able to exist in the same namespace without name collisions.
|
||||||
|
|
||||||
|
The identifier can also have underscores and numbers in it, which may be the case for library assets, eg. `LI-tree_birch_001`.
|
||||||
|
|
||||||
|
## Asset Collection Hierarchy
|
||||||
|
|
||||||
|
We use prefixes for the root collections (and only the root) of assets to help distinguish different types of assets in the Outliner of a complex shot file. The name of the asset itself should be lowercase.
|
||||||
|
|
||||||
- `CH` : Character
|
- `CH` : Character
|
||||||
- `PR` : Prop
|
- `PR` : Rigged Prop
|
||||||
- `LI` : Library asset
|
- `LI` : Library/Environment Asset
|
||||||
- `SE` : set
|
- `SE` : Set
|
||||||
- `LG` : light rig
|
- `LG` : Light Rig
|
||||||
|
- `CA`: Camera Rig
|
||||||
Simon Thommes
commented
I don't remember this being a necessity in the current design of the asset pipeline. Maybe I'm misremembering but I don't generally think that binding the tasklayer association with the name is a good idea, since that will make changing this without breakage impossible. I don't remember this being a necessity in the current design of the asset pipeline. Maybe I'm misremembering but I don't generally think that binding the tasklayer association with the name is a good idea, since that will make changing this without breakage impossible.
Demeter Dzadik
commented
It is, it's necessary for each task layer to be assigned its own piece of the hierarchy, otherwise the pipeline doesn't know which hierarchy to keep; The one being pulled in, or the one already in the current file. So when pulling into Rigging currently, it will preserve the current hierarchy for the Rigging collection, but take the hierarchy of the other collections from the publish. It is, it's necessary for each task layer to be assigned its own piece of the hierarchy, otherwise the pipeline doesn't know which hierarchy to keep; The one being pulled in, or the one already in the current file. So when pulling into Rigging currently, it will preserve the current hierarchy for the Rigging collection, but take the hierarchy of the other collections from the publish.
Simon Thommes
commented
But I thought we agreed on storing this data as custom properties and keeping the hierarchies out of it, no? But I thought we agreed on storing this data as custom properties and keeping the hierarchies out of it, no?
Because this isn't just about the exceptions, right? Every collection would have that. Having the tasklayer name in every single collection of an asset seems quite off to me, that's not something I remember considering. Maybe that was a misunderstanding at the time.
Nick Alberelli
commented
So as far as the Asset Pipeline is concerned, we did agree on storing ownership information inside property groups on the individual objects, and that is how ownership of objects is handled by the Asset Pipeline. But for consistency in the organization of collections each task layer has a collection, the user can assign objects to their task layer collection. These top-level collections are named after the task layers and are purely organizational and don't influence who owns what object, but they are necessary to avoid conflicts in collection assignments during Push/Pull. Personally I prefer the collection set-up like this, but I'm open to discussing alternatives. It is possible to replace this feature with some kind of ownership system and UI similar to objects for collections, but that not within the scope of things we are currently focused on. We are more focused on finalizing the transfer logic and getting 'ownership' working on non-object IDs like GeoNode groups. So as far as the Asset Pipeline is concerned, we did agree on storing ownership information inside property groups on the individual objects, and that is how ownership of objects is handled by the Asset Pipeline.
But for consistency in the organization of collections each task layer has a collection, the user can assign objects to their task layer collection. These top-level collections are named after the task layers and are purely organizational and don't influence who owns what object, but they are necessary to avoid conflicts in collection assignments during Push/Pull. Personally I prefer the collection set-up like this, but I'm open to discussing alternatives.
It is possible to replace this feature with some kind of ownership system and UI similar to objects for collections, but that not within the scope of things we are currently focused on. We are more focused on finalizing the transfer logic and getting 'ownership' working on non-object IDs like GeoNode groups.
Demeter Dzadik
commented
It's actually not necessary for the sub-collections' names to include the task layer name, that's true. That was more of a stylistic choice on my end. So you're right, this is in fact legal:
I think it might be a bit nicer with the task layer names, when seeing the collections as a flat list, like when appending or using the Blend File view of the Outliner. Also because multiple task layers might have their own collection relating to a given part of a character. But I don't mind too much if this isn't strictly enforced. It's actually not necessary for the sub-collections' names to include the task layer name, that's true. That was more of a stylistic choice on my end. So you're right, this is in fact legal:
```
CH-elder_sprite
esprite-model
esprite-head
esprite-eyes
esprite-eye.L
esprite-eye.R
esprite-rig
esprite-shading
```
I think it might be a bit nicer with the task layer names, when seeing the collections as a flat list, like when appending or using the Blend File view of the Outliner. Also because multiple task layers might have their own collection relating to a given part of a character. But I don't mind too much if this isn't strictly enforced.
|
|||||||
|
|
||||||
Example: `CH-phileas`
|
Example root collection names: `CH-elder_sprite`, `LI-rock_large_013`
|
||||||
|
|
||||||
Sub-collections should start with the character's name and have dots as separators: `phileas.rig.widgets`
|
Note that there's no technical distinction between different types of assets. This is purely for organizational purposes and comfort.
|
||||||
Simon Thommes
commented
I find it quite confusing if the main asset collection prefix and any other collection prefix share the exact same formatting. I'd propose to keep those clearly different to avoid confusion and improve readability. So either making the identifier not capitalized or using a different separator or both. I find it quite confusing if the main asset collection prefix and any other collection prefix share the exact same formatting. I'd propose to keep those clearly different to avoid confusion and improve readability.
So either making the identifier not capitalized or using a different separator or both.
Demeter Dzadik
commented
This seems to align with Andy's suggestion of keeping these identifiers longer. In that case, I agree with lower-case, so instead of "ES" or "elder_sprite", we could just have "esprite" or "elder" (up to whoever is first creating the asset). For most assets, especially characters, our names tend to be quite short, so additional shortening isn't always needed. Only downside is that maybe sometimes we'll end up with some pretty long names, but it's not the end of the world. This seems to align with Andy's suggestion of keeping these identifiers longer. In that case, I agree with lower-case, so instead of "ES" or "elder_sprite", we could just have "esprite" or "elder" (up to whoever is first creating the asset). For most assets, especially characters, our names tend to be quite short, so additional shortening isn't always needed. Only downside is that maybe sometimes we'll end up with some pretty long names, but it's not the end of the world.
|
|||||||
|
|
||||||
## Object naming
|
The immediate sub-collections of the root collection should be named according to the Task Layers configured in our Asset Pipeline add-on, but this is not strictly required. Task Layers are the different data layers that make up an asset, such as Modeling, Rigging, and Shading. Collections nested beyond this can be named freely, as long as they still start with the namespace identifier.
|
||||||
|
|
||||||
All objects should have a prefix, followed by a dash that determines their type:
|
So, here's what an asset's collection hierarchy might look like:
|
||||||
|
![Collection Hierarchy Naming Example](/media/naming-conventions/collection_hierarchy_naming_example.png)
|
||||||
|
|
||||||
- `WGT` : bone shapes
|
|
||||||
- `LGT` : light objects and mesh-lights, also shadow casters
|
## Name Prefixes
|
||||||
|
All Object names (not just in Assets) must start with a prefix describing the object's purpose:
|
||||||
|
|
||||||
|
- `LGT` : Light objects and mesh-lights, also shadow casters
|
||||||
|
- `ENV` : Matte paintings, sky-domes, fog volume objects
|
||||||
|
- `GEO` : Geometry, meshes, curves that contribute to the rendered appearance of an asset
|
||||||
|
- `RIG` : Armatures of an asset
|
||||||
|
- `GPL` : Grease pencil stroke objects (need to differentiate from GEO because can not be rendered on the farm)
|
||||||
|
- `WGT` : Bone shapes
|
||||||
- `HLP` : Empties and other helper objects that are not rendered
|
- `HLP` : Empties and other helper objects that are not rendered
|
||||||
- `GEO` : Geometry, meshes, curves that contribute to the rendered appearance of the asset
|
- `TMP` : Any object used in pre-viz that should be replaced with final assets over the course of the production.
|
||||||
- `RIG` : Rig and rig specific objects that do not appear in rendering
|
|
||||||
- `ENV` : matte paintings, sky-domes, fog volume objects
|
|
||||||
- `GPL` : grease pencil stroke objects (need to differentiate from GEO because can not be rendered on the farm)
|
|
||||||
|
|
||||||
Use dot uppercase L or R for objects that belong to one side and are mirrored
|
All local datablocks of an asset (Object, Mesh, Material, Action, etc.) must also include either the asset's shortened or full name. Eg., `RIG-elder_sprite` or `GEO-esprite-eye.L`. This is enforced by the Asset Pipeline add-on.
|
||||||
|
|
||||||
Example: `GEO-dresser_drawer.L`
|
## Base Names
|
||||||
Andy Goralczyk
commented
This needs stronger wording than "should be advisable", every object datablock should have that prefix to make it clear when linking/appending what that object is and to visually distinguish the objects in the outliner and python query. This needs stronger wording than "should be advisable", every object datablock should have that prefix to make it clear when linking/appending what that object is *and* to visually distinguish the objects in the outliner and python query.
Demeter Dzadik
commented
Gotcha, will replace "should" with "must". Gotcha, will replace "should" with "must".
|
|||||||
|
- Object Data and Shape Keys should be named the same as the containing Object. This is automated by the Asset Pipeline add-on.
|
||||||
|
- Words in all base names should be lower-case and separated by `_`.
|
||||||
|
- All datablock names must not end with a `.00x` suffix. This is enforced by the Asset Pipeline add-on.
|
||||||
|
- When there's too many objects to manually name, like when building a house out of a hundred wooden plank objects, the **Batch Rename Datablocks Operator** should be used to give groups of objects the same name. Then replace the `.` in the `.00x` suffixes with an `_` instead, so `GEO-house-wooden_plank.023` becomes `GEO-house-wooden_plank_023`, making the number a part of the base name for the purposes of Library Overrides and duplication.
|
||||||
|
- This makes it so that when an asset is duplicated in a shot, every object in the same copy of the asset will have the same number suffix. The first copy will have no suffix, the second copy will have .001, etc. Without this step, this object would instead end up getting named `GEO-house-wooden_plank.024`, which would mean the suffix number has no correlation with which overridden copy of the asset this object belongs to. This could break Library Overrides.
|
||||||
|
|
||||||
If a name contains a *of* relationship - in the above example the `drawer` of the `dresser` - these should not be separated by a dot, but rather with an underscore.
|
## Indicating Hierarchy
|
||||||
|
For complex assets, try to use dashes to indicate a nested hierarchy of objects, eg:
|
||||||
|
![Indicating Hierarchy in names](/media/naming-conventions/hierarchy_name_example.png)
|
||||||
|
|
||||||
Another example: `GEO-ellie_watch_screw` and not `GEO-ellie_watch.screw`
|
|
||||||
|
|
||||||
If the watch had a variant of type `clean` and `dirty`, these would be using a dot to express the nature of the variant: `GEO-ellie_watch.clean` and `GEO-ellie_watch.dirty`
|
## Indicating Asset Variants
|
||||||
|
The `.` is also used for indicating asset variants, which is when an asset has multiple states or versions in the production.
|
||||||
|
The variant indicator can be placed anywhere in the name hierarchy:
|
||||||
|
`GEO-wardrobe.burned-shelf-book` indicates that the whole wardrobe has a burned variant. Perhaps there was a house fire in the film.
|
||||||
Andy Goralczyk
commented
according to the first section, according to the first section, `_` is used only as spacebar replacement, it's not a separator. so an _of_ relationship could be `-` instead
Demeter Dzadik
commented
Thinking about it now, I actually don't think an of relationship needs to be signified by the ID name at all, since it has no technical significance in the pipeline. To me, it's just the same as any other word separation. Collections also help with this. Thinking about it now, I actually don't think an *of* relationship needs to be signified by the ID name at all, since it has no technical significance in the pipeline. To me, it's just the same as any other word separation. Collections also help with this.
|
|||||||
|
`GEO-wardrobe-shelf-book.burned` indicates that only the book is burned, perhaps because a candle fell over in the film.
|
||||||
|
|
||||||
|
|
||||||
|
## Symmetry Suffixes
|
||||||
|
Use exactly `.L`/`.R` suffixes for objects that belong to one side and are symmetrical.
|
||||||
|
On the other hand, avoid using `.L`/`.R` when similar objects exist on each side of an asset but aren't meant to be symmetrical, and use a different side indicator if necessary, such as `_left`.
|
||||||
|
|
||||||
Andy Goralczyk
commented
dot dot `.` should become a dash `-`
everything else looks good and can be merged as far as I am concerned :)
Demeter Dzadik
commented
Thanks, fixed! Thanks, fixed!
|
|||||||
|
|
||||||
|
## Node Trees
|
||||||
|
Node Trees (aka Node Groups) in Blender are unfortunately all stored in one location, which is inconvenient when trying to browse them, which we frequently do. To remedy this, node groups should be prefixed with what type of node group they are.
|
||||||
|
```
|
||||||
|
`GN` : Geometry Nodes
|
||||||
|
`SH` : Shading Nodes
|
||||||
|
`CM` : Compositing Nodes
|
||||||
|
```
|
||||||
|
|
||||||
|
And as always, the namespace identifier must be included, eg. `GN-esprite-procedural_beard`.
|
||||||
|
|
||||||
## Actions
|
## Actions
|
||||||
|
|
||||||
### Prefixes
|
### Pose Library
|
||||||
|
|
||||||
Andy Goralczyk
commented
we established the "no caps, no gaps" rule at some point, should be used here as well. so no uppercase letters except for prefix and suffixes. we established the "no caps, no gaps" rule at some point, should be used here as well. so no uppercase letters except for prefix and suffixes.
|
|||||||
Example: `PLB-spring.hand`
|
Pose Library actions also need a namespace identifier. Other than that, stick to lowercase and underscores.
|
||||||
|
|
||||||
- `PLB` Pose library actions to be linked into animation files
|
Examples:
|
||||||
- `RIG` Actions used by the rig's Action constraints
|
|
||||||
- `ANI` Animation to be used in a shot
|
|
||||||
|
|
||||||
More examples:
|
|
||||||
|
|
||||||
```txt
|
|
||||||
- ANI-rex.140_0020_A.v001
|
|
||||||
- ANI-ellie.060_scratch.layout.v001
|
|
||||||
- ANI-sprite_A.110_0100_A.v001
|
|
||||||
- PLB-rex_face.scared
|
|
||||||
- PLB-rex_face.happy
|
|
||||||
- PLB-rex_hand.closed
|
|
||||||
```
|
```
|
||||||
|
rex-hand_fist
|
||||||
|
rex-hand_splayed
|
||||||
|
rex-face_happy
|
||||||
|
rex-face_surprised
|
||||||
|
rex-eyes_blink
|
||||||
|
rex-eyes_surprised
|
||||||
|
```
|
||||||
|
|
||||||
|
### Rig Actions
|
||||||
|
Rigs may use Actions for Action Constraint based control set-ups. Since these are datablocks and part of the character asset, they must include the namespace identifier.
|
||||||
|
Corrective Actions are ones which are meant to activate when two other actions activate. These should use the name of the two trigger actions, separated by a "+".
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
```
|
||||||
|
RIG-esprite-mouth_open
|
||||||
|
RIG-esprite-lips_wide
|
||||||
|
RIG-esprite-mouth_open+lips_wide
|
||||||
|
```
|
||||||
|
|
||||||
|
### Animations of Shots
|
||||||
|
Actions created for shots should be named `ANI-{namespace_identifier}-{scene_name}-{version}`
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
```
|
||||||
|
ANI-esprite-060_scratch_layout-v001
|
||||||
|
ANI-esprite-110_0100_A-v001
|
||||||
|
ANI-rex-140_0020_A-v001
|
||||||
|
```
|
||||||
|
|
||||||
|
### Bone Names
|
||||||
|
Making rigs as easy to learn and work with as possible is the most important thing when naming bones.
|
||||||
|
Every bone name should be named properly (never `Bone.023`), avoid ugly number suffixes, and avoid unnecessary padding in numbers.
|
||||||
|
Controls that are exposed to animators should ideally have max one prefix, with an intuitive acronym.
|
||||||
|
Examples:
|
||||||
|
```
|
||||||
|
Bad: STR-TIP-Finger_04_003.L
|
||||||
|
Good: STR-Finger_Pinky_4.L
|
||||||
|
```
|
||||||
|
|
||||||
|
Numbering should start from 1, but if a bone gets inserted at the start of the chain, it's better to just number it 0 rather than change all the pre-existing bones' names, to not break any existing animations.
|
||||||
|
|
||||||
|
Symmetry sides should be indicated by `.L`/`.R`.
|
||||||
|
|
||||||
|
Other prefixes and their meaning:
|
||||||
|
- `IK` : Control body parts in Inverse Kinematics mode
|
||||||
|
- `FK` : Control body parts in Forward Kinematics mode
|
||||||
|
- `STR` : Squash and stretch body parts
|
||||||
|
- `ROOT` : Control a cohesive area of the rig (often detachable)
|
||||||
|
- `TGT` : Control the target of a Look-At rig set-up
|
||||||
|
- `P` : Parent of another control
|
I agree with this characterization of
_
which to me stands in confilct of the proposal to use it for hierarchies/parts later in this document.I think that later part of the document is over-explaining a bit, and makes things that I see as part of the base name (without any suffixes or prefixes) sound as if they were something technically significant. I'll try to clarify this better.