Skip to content

Commit

Permalink
Updating example integration scripts to output images at 512x512.
Browse files Browse the repository at this point in the history
  • Loading branch information
tswong committed May 17, 2010
1 parent 5f90676 commit 3323552
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Scripts/FMax.py
Expand Up @@ -37,7 +37,7 @@ class FMax (FApplication):
(__RENDER_STILL_START, "fromframe", "1"),
(__RENDER_STILL_END, "toframe", "1"),
(__RENDER_STILL_STEP, "nthframe", "1"),
("Output Size", "outputSize", "[300,300]"),
("Output Size", "outputSize", "[512,512]"),
(__RENDER_FILE_TYPE, "", "png"),
("Renderer", "renderer", "#production"),
("Progress Bar", "progressbar", "false"),
Expand Down
4 changes: 2 additions & 2 deletions Scripts/FMaya.py
Expand Up @@ -63,8 +63,8 @@ class FMaya (FApplication):
__RENDER_OPTIONS = [
("Camera", "-cam", "\"|testCamera\""),
("Renderer", "-r", "ctfHw"),
(__RENDER_WIDTH, "-x", "300"),
(__RENDER_HEIGHT, "-y", "300"),
(__RENDER_WIDTH, "-x", "512"),
(__RENDER_HEIGHT, "-y", "512"),
(__RENDER_ARD, "-ard", "1.0"),
(__RENDER_ANIMATION_START, "-s", "1"),
(__RENDER_ANIMATION_END, "-e", "45"),
Expand Down
4 changes: 2 additions & 2 deletions Scripts/FMaya_UIRender.py
Expand Up @@ -75,8 +75,8 @@ class FMaya_UIRender (FApplication):

__RENDER_OPTIONS = [
(__RENDER_CAMERA, "- NOT USED -", "|testCamera"),
(__RENDER_WIDTH, "- NOT USED -", "300"),
(__RENDER_HEIGHT, "- NOT USED -", "300"),
(__RENDER_WIDTH, "- NOT USED -", "512"),
(__RENDER_HEIGHT, "- NOT USED -", "512"),
(__RENDER_ANIMATION_START, "setAttr defaultRenderGlobals.startFrame ", "1"),
(__RENDER_ANIMATION_END, "setAttr defaultRenderGlobals.endFrame ", "45"),
(__RENDER_ANIMATION_STEP, "setAttr defaultRenderGlobals.byFrameStep ", "3"),
Expand Down
4 changes: 2 additions & 2 deletions Scripts/FXComposer.py
Expand Up @@ -56,8 +56,8 @@ class FXComposer (FApplication):
(__RENDER_STILL_END, "", "0.0"),
(__RENDER_STILL_FRAMES, "", "1"),

(__RENDER_WIDTH, "", "300"),
(__RENDER_HEIGHT, "", "300"),
(__RENDER_WIDTH, "", "512"),
(__RENDER_HEIGHT, "", "512"),
(__RENDER_OUTPUT_FORMAT, "", "png")]


Expand Down

0 comments on commit 3323552

Please sign in to comment.