load_attributes method

load_attributes(self, scene, file_name, prefix)

Load the attributes from specified file name


def load_attributes(self, scene, file_name, prefix):
    ...
ParameterTypeDescription
sceneaspose.threed.SceneThe scene where the attributes will be applied to
file_nameSystem.StringThe file’s name that contains the attributes
prefixSystem.StringThe prefix of the attributes that used to avoid conflict of names, default value is “rvm:”

load_attributes(self, scene, stream, prefix)

Load the attributes from specified stream


def load_attributes(self, scene, stream, prefix):
    ...
ParameterTypeDescription
sceneaspose.threed.SceneThe scene where the attributes will be applied to
streamio.RawIOBaseThe stream that contains the attributes
prefixSystem.StringThe prefix of the attributes that used to avoid conflict of names, default value is “rvm:”

See Also