IC Python API:RLPy RFileIO

From Reallusion Wiki!
Revision as of 02:12, 26 March 2019 by Chuck (RL) (Talk | contribs) (Created page with "{{TOC}} {{Parent|IC_Python_API:RL_Python_Modules|Modules}} == Detailed Description == This class provides I/O operations on the scene files. <syntaxhighlight lang="Python"> #...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Main article: Modules.

Detailed Description

This class provides I/O operations on the scene files.

# load project file
file_path = "c:/myProject.iProject"
RLPy.RFileIO.LoadFile(file_path)

# load object
object = RLPy.RFileIO.LoadObject("C:/CC_Standard_Neutral.iavatar")
print(type(object)) #RLPy.RIAvatar

object = RLPy.RFileIO.LoadObject("C:/Arc_001.iProp")
print(type(object)) #RLPy.RIProp

Member Functions

LoadAlembicFile

RLPy.RFileIO.LoadAlembicFile ( spObject, strFilePath, eUpAxis )

Import the alembic file from the given file into the current scene.

Parameters

spObject [IN] target object - RLPy.RIObject

strFilePath [IN] file path - string

eUpAxis [IN] coordinate axis - RLPy.ECoordinateAxis

  • RLPy.ECoordinateAxis_X
  • RLPy.ECoordinateAxis_NegativeX
  • RLPy.ECoordinateAxis_Y
  • RLPy.ECoordinateAxis_NegativeY
  • RLPy.ECoordinateAxis_Z
  • RLPy.ECoordinateAxis_NegativeZ

Return Values

RLPy.RStatus.Success Success

RLPy.RStatus.Failure Fail


LoadFile

RLPy.RFileIO.LoadFile ( strFilePath )

Import the scene elements from the given file into the current scene. Current supported file types: All iClone supported file format.

Parameters

strFilePath [IN] file path - string

Return Values

RLPy.RStatus.Success Success

RLPy.RStatus.Failure Fail


LoadObject

RLPy.RFileIO.LoadObject ( strFilePath )

Import the scene elements from the given file into the current scene. Current supported file types: Only the file type of the object. ( Experimental API )

Parameters

strFilePath [IN] file path - string

Return Values

RIObjectPtr The requested object returned as a Type.