Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update build script for renderDesc
Renamed renderDesc to keep consistency with Maya's prefs.
  • Loading branch information
luisbarrancos committed Dec 9, 2017
1 parent 7b01cc9 commit 6ffbbc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deploy/appleseed-maya.package.py
Expand Up @@ -269,6 +269,9 @@ def orchestrate(self):
progress("Copying resources") progress("Copying resources")
dir_util.copy_tree(os.path.join(self.settings.root_dir, "resources"), os.path.join(self.settings.package_output_path, "resources")) dir_util.copy_tree(os.path.join(self.settings.root_dir, "resources"), os.path.join(self.settings.package_output_path, "resources"))


progress("Copying renderDesc")
dir_util.copy_tree(os.path.join(self.settings.root_dir, "renderDesc"), os.path.join(self-settings.package_output_path, "renderDesc"))

progress("Copying scripts") progress("Copying scripts")
dir_util.copy_tree(os.path.join(self.settings.root_dir, "scripts"), os.path.join(self.settings.package_output_path, "scripts")) dir_util.copy_tree(os.path.join(self.settings.root_dir, "scripts"), os.path.join(self.settings.package_output_path, "scripts"))


Expand Down Expand Up @@ -322,7 +325,7 @@ def do_generate_module_file(self, maya_platform_id):
f.write("MAYA_PRESET_PATH +:= presets\n") f.write("MAYA_PRESET_PATH +:= presets\n")
f.write("MAYA_CUSTOM_TEMPLATE_PATH +:= scripts/appleseedMaya/AETemplates\n") f.write("MAYA_CUSTOM_TEMPLATE_PATH +:= scripts/appleseedMaya/AETemplates\n")
f.write("MAYA_SHELF_PATH +:= prefs/shelves\n") f.write("MAYA_SHELF_PATH +:= prefs/shelves\n")
f.write("MAYA_RENDER_DESC_PATH+:=renderdesc\n") f.write("MAYA_RENDER_DESC_PATH +:= renderDesc\n")
f.write("XBMLANGPATH +:= icons/%B\n") f.write("XBMLANGPATH +:= icons/%B\n")


def copy_binaries(self): def copy_binaries(self):
Expand Down
File renamed without changes.

0 comments on commit 6ffbbc9

Please sign in to comment.