Is it possible to get the name of a custom type?
If so, is it possible to get the name of an extended type and it's base type separately?
Thank you.
If so, is it possible to get the name of an extended type and it's base type separately?
Thank you.
Global ActObj:TList = CreateList() 'Active Objects For Local Obj:Object = EachIn ActObj Local ObjTyp:TTypeId = TTypeId.ForObject( Obj ) 'Type ID If ObjTyp.Name() = "Ladder" 'Physics '*Check if at End of Ladder '*Check for Next Ladder 'Climb Ladder End If Next