commands
create_folder_id_hash(nodes)
Create a hash based on cbId attribute value Args: nodes (list): a list of nodes
Returns:
Type | Description |
---|---|
dict |
Source code in client/ayon_maya/tools/mayalookassigner/commands.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
|
create_items_from_nodes(nodes)
Create an item for the view based the container and content of it
It fetches the look document based on the folder id found in the content. The item will contain all important information for the tool to work.
If there is an folder id which is not registered in the project's collection it will log a warning message.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nodes | list | list of maya nodes | required |
Returns:
Type | Description |
---|---|
list of dicts |
Source code in client/ayon_maya/tools/mayalookassigner/commands.py
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
|
get_all_asset_nodes()
Get all assets from the scene, container based
Returns:
Name | Type | Description |
---|---|---|
list | list of dictionaries |
Source code in client/ayon_maya/tools/mayalookassigner/commands.py
57 58 59 60 61 62 63 |
|
get_namespace_from_node(node)
Get the namespace from the given node
Parameters:
Name | Type | Description | Default |
---|---|---|---|
node | str | name of the node | required |
Returns:
Type | Description |
---|---|
namespace (str) |
Source code in client/ayon_maya/tools/mayalookassigner/commands.py
34 35 36 37 38 39 40 41 42 43 44 45 |
|
get_selected_nodes()
Get information from current selection
Source code in client/ayon_maya/tools/mayalookassigner/commands.py
48 49 50 51 52 53 54 |
|
remove_unused_looks()
Removes all loaded looks for which none of the shaders are used.
This will cleanup all loaded "LookLoader" containers that are unused in the current scene.
Source code in client/ayon_maya/tools/mayalookassigner/commands.py
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
|