Create a New Location with RENDER
- DJ
- Jul 12, 2019
- 1 min read
Use this in Write Node
import os
if not os.path.isdir(os.path.dirname(nuke.thisNode()['file'].evaluate())): os.makedirs(os.path.dirname(nuke.thisNode()['file'].evaluate()))
Plus info about eval(Evaluate):
>>> your_calculation=input("Enter a calculation:")
Enter a calculation:12*52
>>> eval(your_calculation)
624
Comments