Hello Houdinos,
I am following along with this tutorial (sidefx.com/tutorials/tree-generator, Bake Branches) and at ~10 minutes in we bake our branches onto a 2d grid as a color texture.
In the video, Simon uses the naming convention: $HIP/render/Leaves_$(CHANNEL)_$F.png
which results in the filename "Leaves_color_1" for frame 1, etc.
I thought to myself "If I *were* going to be rendering multiple outputs like AO in addition to color, I would want the frame number to be *before* the channel name, not after." So I tried the convention: $HIP/render/Leaves_$F_$(CHANNEL).png
but the output I got was "Leaves_color". No frame present at all! I thought maybe the parenthesis was necessary so I tried $HIP/render/Leaves_$(F)_$(CHANNEL).png but here, $(F) was interpreted literally and I ended up with "Leaves_$(F)_color".
How should I format my arguments to end up with "Leaves_1_color", etc?
Thanks!