Thursday 4 December 2014

Clearing all OctaneRender for Poser data

Following on from Accessing Octane plugin data from python in Poser, below shows how to delete all Octane data from your Poser scene.

1) Open a Python Shell in Poser (Scripts->Python Shell)

2) Enter the following commands
 octanePlugin = __import__("OctaneRender for Poser")  
 octanePlugin.Globals.m_SavedTreeInfo = {}  
 octanePlugin.MaterialManager.m_SceneNode = None  

3) Save the Poser scene (all previous Octane data will be cleared)

No comments:

Post a Comment