You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/user_docs/docs/extensions.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,12 @@ NXT can easily extended to better meet a user's/studio's needs. In this section
6
6
7
7
## Simple Remote Context
8
8
In Maya simply navigate to the nxt menu and select "Create Maya Context". You'll be prompted to enter a name, the name you enter will be how you call your custom Maya context.
9
-
For more on using custom contexts [see here](tutorials.md#contexts)
9
+
For more on using custom contexts [see here](tutorials.md#contexts).
10
10
11
11
# In depth explanations:
12
12
### Config dir
13
13
14
-
Custom configurations are graphs and code that extends or alters the functionality of nxt. Cofigs are not to be confused with preferences which are soley UX related.
14
+
Custom configurations are graphs and code that extends or alters the functionality of nxt. Cofigs are not to be confused with preferences which are solely UX related.
15
15
16
16
To add a config there are two approaches, both of which are compatible with eachother.
17
17
@@ -44,7 +44,7 @@ nxt.create_context('MyContext',
44
44
45
45
### Creating Custom Contexts (Manually)
46
46
47
-
It is possible to execute graphs in "remote contexts", for example it one may want to execute a graph in a headless Maya session. These remote contexts can easilly be configured by users and TDs, this section will provide some examples on how to go about writing your own custom context plugin.
47
+
It is possible to execute graphs in "remote contexts," for example it one may want to execute a graph in a headless Maya session. These remote contexts can easilly be configured by users and TDs, this section will provide some examples on how to go about writing your own custom context plugin.
48
48
49
49
Below is an exmaple of creating a custom Maya context. This code is an example to get you started, its not the _only_ way to do things.
50
50
@@ -131,7 +131,7 @@ os.chdir(STAGE.old_cwd)
131
131
132
132
3. Set your new node's instance path to `/_remote_sub_graph`
133
133
134
-
4. Set the `_context` attr to the raw **context name** you have access to or just created
134
+
4. Set the `_context` attr to the raw **context name** you have access to or just created.
135
135
136
136
5. Set the `_graph_path` attr to the path to a graph that you wish to run in the remote context.
0 commit comments