getInterfaces {<MAXWrapper> | <MAXClass>}
getInterfaces returns an array containing the interfaces exposed by the argument.
If the argument is a node, the node level interfaces for that node are returned. If you want the interfaces for the node's base object, you need to specify <node>.baseobject as the argument.
For example:
s=sphere()
$Sphere:Sphere01 @ [0.000000,0.000000,0.000000]
converttopoly s
$Editable_Poly:Sphere01 @ [0.000000,0.000000,0.000000]
getInterfaces s
#(<MixinInterface:IAssembly>, <MixinInterface:INodeGIProperties>, <MixinInterface:INode>, <MixinInterface:INodeLayerProperties>, <MixinInterface:INodeBakeProperties>, <MixinInterface:SkinPose>)
getInterfaces s.baseobject
#(<MixinInterface:EditablePoly>)
If the argument is a MAXClass, only static interfaces for that class are returned. Typically, only utility plugin classes define static interfaces.
For example:
getInterfaces Plug_in_Manager
#(<Interface:PluginMgrAction>)
See also
Class and Object Inspector Functions