Try the following possible solutions.
Only one render layer can be visible at a time, whether it is a render layer you created, or the master (scene) render layer.
You can add objects to the collections in your layer without being in that layer. Therefore, you may have added objects to a layer that you are not currently in.
To identify the layer that you are in, look for the layer with the highlighted icon. If you are in the scene (master) layer, the in the Scene settings area at the top of the Render Setup editor is highlighted.
To switch to a different render layer, or to the scene (master) layer, click on the layer.
Collections are interpreted top-down. Therefore, if the same object appears in two collections, and one collection is disabled, then it is the state of the collection further down in the list that determines the final state. See Control visibility of collections.
In this example, the eyes geometry belong to both the top and the bottom collections. However, because collections are interpreted top-down, and the collection further down in the list is disabled, it takes precedence over the collection that is enabled, and the eyes do not appear in the render layer.
Overrides are also interpreted top-down. See Order of application of overrides.
Select a collection, then click View All to display a list of the collection members.
The Collection Filters functionality in the collection Property Editor can be used to include only specific node types in a collection. If your objects are not appearing in your layer, they may have been excluded by your filter settings. See Identify missing members in a collection and Add collection members by node type.
Expressions are case sensitive; therefore *apple* is not the same as *Apple*. If you populated your collection with an expression, check the expression against your node names to see if you used the correct case to include your nodes.
A node may be missing from your collection if it was added to your collection, but was deleted from the scene later on. The Render Setup editor marks the layer and collection with a icon to alert you of the missing members. If you have a long list of layers, you may need to scroll down the list of layers to locate the one with the error.
A parent collection determines membership, and a child collection should only contain a subset of the parent collection's members. If you add pSphere1 to the parent collection and pSphere2 to your child collection, then pSphere2 will not be visible in your layer. See Create subcollections.
Refresh your layer. Check if a red border appears around the layer visibility icon and click the icon to update your layer accordingly.
Check if the node that you want to create an override for is part of the collection. To do this, click View All in the Property Editor of the collection. If the node that you want to create an override for is not listed in the View Collection Objects window, then that is the reason why your override is not taking effect.
Reasons for this may include a spelling error in the node name so that it does not match the expression, or selecting an incorrect Collection Filter in the Property Editor so that the node you want is filtered out accidentally.
Add the following flag to the attribute control command in the AE<NodeType>Template.mel file of the node that the attribute belongs to:
-dragCallback "AEdragCallback"
See AElambertCommon.mel for an example.
The Bump Mapping attribute of the Lambert node can be middle-mouse drag and dropped because the attrNavigationControlGrp section of the procedure that creates the bump mapping attribute in the UI has the line -dragCallback "AEdragCallback" added to it:
global proc AEshaderBumpNew (string $attrName) { setUITemplate -pst attributeEditorTemplate; attrNavigationControlGrp -label (uiRes("m_AElambertCommon.kBumpMapping")) -at $attrName -dragCallback "AEdragCallback" bumpControl; setUITemplate -ppt; }
If you select a node and click Add in the Property Editor, and it appears greyed out and italicized in the node list, check the Collection Filter drop-down list to see if you have selected the correct node type for your collection. If you try to add a transform node, but your Collection Filter is set to Shaders, then your node will not be added to the collection.
If you import a render setup template and then import or reference a scene, your light groups in the Light Editor may become lost. To workaround this issue, first import the light rig, then import the .json template file.
When you select File > Import All, you can only import files that were exported using File > Export All; that is, files that are a complete render setup. Files that were exported using File > Export Selected; that is, files that contain a subset of your render setup, such as a layer and a collection, or two overrides, can only be imported by clicking the button, or via the right-click menu of a layer or collection.
You can export multiple items via Export Selected; however, the items must be of the same type. For example, you cannot export only a layer and an override. Otherwise, an error occurs, or the Export Selected contextual menu does not appear.
In Maya 2017, the default user templates location is <Documents>\maya\RSTemplates while in Maya 2016 Extension 2, it was <Documents>\maya\Templates. If you saved your templates to the default location in Maya 2016 Extension 2, they are not recognized automatically in Maya 2017. To workaround this issue, copy your templates from the Templates folder to the new RSTemplates location.
The place3dTexture node is a transform node. Therefore, if you add your objects to a collection, then drag and drop an attribute on the place3dTexture node to override one of its attributes, for example, to translate the texture, a place3dTexture subcollection is not created as a result.
Workaround: Select the place3dTexture nodes and add them to your collection manually. You can add them to your collection of objects or create a separate collection for these nodes. If the latter, leave the Collection Filters drop-down list at its default value (Transforms).
In general, if the overriding of an attribute is not supported, then the corresponding right-click menu to create the override will also not be available.
Setting your global template path to a remote server that is slow to access may cause a slowdown when loading the import template menus (both via or via the layer/collection right-click menus ).
It is advisable to store your global templates to a local server instead.
Similarly, if either your local or global template path is a folder that consists of a lot of files or subfolders, a slowdown may occur when accessing the right-click menu. If this occurs, you may want to select a different folder as your template path.
Errors may be printed to the Script Editor. Check the Script Editor for possible messages.