Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:nxt-dev/nxt_editor into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLucasBrown committed Feb 9, 2021
2 parents 0afa98c + 7149c28 commit 5fb0ea5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
6 changes: 5 additions & 1 deletion build/make_maya_plugin.nxt
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,11 @@
"os.makedirs('${mod_folder}/scripts/Qt')",
"",
"with open('${mod_folder}/scripts/Qt/__init__.py', 'w+') as fp:",
" fp.write(result.content)"
" if isinstance(result.content, str):",
" fp.write(result.content)",
" else:",
" fp.write(result.content.decode())",
""
]
}
}
Expand Down
7 changes: 4 additions & 3 deletions nxt_editor/integration/unreal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
This is an Unreal plugin to connect to the nxt python package. The nxt python package will be downloaded from the internet as part of this installation.

1. Move this plugin either into your project or engine's plugin directory.
2. Activate the plugin in the engine plugin browser. <restart the engine>
3. Install the nxt python package
- __automated -__ From top menu option "nxt", select "Install nxt package to active python"
2. Ensure that the python editor scripting plugin is activated.
3. Activate the plugin in the engine plugin browser. Exit the engine.
4. Install the nxt python package
- __automated -__ From unreal editor top menu option "nxt", select "Install nxt package to active python"
- __by hand -__ Locate engine python(`sys.prefix`) in commmand prompt or terminal and run: `python -m pip install nxt-editor` (Note on windows this will be `python.exe`)
4. Restart Editor

Expand Down

0 comments on commit 5fb0ea5

Please sign in to comment.