def _get_requested_type(self) -> ObjectType: return ObjectType(sim.simGetObjectType(self.get_handle()))
def get_object_type(name: str) -> ObjectType: """Gets the type of the object. :return: Type of the object. """ return ObjectType(sim.simGetObjectType(sim.simGetObjectHandle(name)))
def get_type(self) -> ObjectType: """Gets the type of the object. :return: Type of the object. """ return ObjectType(sim.simGetObjectType(self._handle))
def _get_requested_type(self) -> ObjectType: """Gets the type of the object. :return: Type of the object. """ return ObjectType(sim.simGetObjectType(self.get_handle()))