From 33235528187eb2c499a92bcf1f77f4d8a20ef5ac Mon Sep 17 00:00:00 2001 From: tswong Date: Mon, 17 May 2010 19:53:03 +0000 Subject: [PATCH] Updating example integration scripts to output images at 512x512. --- Scripts/FMax.py | 2 +- Scripts/FMaya.py | 4 ++-- Scripts/FMaya_UIRender.py | 4 ++-- Scripts/FXComposer.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Scripts/FMax.py b/Scripts/FMax.py index d507a4ec..412ca627 100644 --- a/Scripts/FMax.py +++ b/Scripts/FMax.py @@ -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"), diff --git a/Scripts/FMaya.py b/Scripts/FMaya.py index 95b5db43..0c442d46 100644 --- a/Scripts/FMaya.py +++ b/Scripts/FMaya.py @@ -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"), diff --git a/Scripts/FMaya_UIRender.py b/Scripts/FMaya_UIRender.py index 8c26faa5..999f5cdd 100644 --- a/Scripts/FMaya_UIRender.py +++ b/Scripts/FMaya_UIRender.py @@ -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"), diff --git a/Scripts/FXComposer.py b/Scripts/FXComposer.py index 65fbfdc3..931182e7 100644 --- a/Scripts/FXComposer.py +++ b/Scripts/FXComposer.py @@ -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")]