PDA

View Full Version : Output Path Templates


sanostol
06-25-2008, 04:38 AM
How do I use the [Value]-Template. I want to link in a custom parameter at the scenelevel ( a string in my case ), but xsi can not resolve it. the tag looks like this:

[Scene_Root.Render.TargetDirectory]/[Pass]/......

Martin

sanostol
06-25-2008, 11:38 AM
Thanks to Vincent Fortin:


[Value Property.Parameter] does the job

Martin

uno
09-24-2008, 05:46 AM
I want in Output Path Templates to receive the following pattern

Pass_CurrentPassCamera.#.pic
But I have no access to CameraObject

[Pass]_[Value Passes.Default_Pass.Camera] is works
But if to rename pass :
// ERROR: Optional argument ' Passes. Default_Pass. Camera ', for path template token 'Value', is not valid. Ignored.
// ERROR: Unknown property ' Passes. Default_Pass. Camera '.

Whether it is possible to receive template not dependent from a name pass
a-la > [Pass]_[Value Passes.[Pass].Camera]?

halfdan
09-26-2008, 03:59 PM
Use this: [Value Passes.Current.Camera]

JDex
09-26-2008, 07:47 PM
Use this: [Value Passes.Current.Camera]

So sweet! Thank you Halfdan.

uno
09-28-2008, 05:44 AM
Thanks, Halfdan :)