def _get_requested_type(self) -> ObjectType:
     return ObjectType(sim.simGetObjectType(self.get_handle()))
Exemple #2
0
    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)))
Exemple #3
0
    def get_type(self) -> ObjectType:
        """Gets the type of the object.

        :return: Type of the object.
        """
        return ObjectType(sim.simGetObjectType(self._handle))
Exemple #4
0
    def _get_requested_type(self) -> ObjectType:
        """Gets the type of the object.

        :return: Type of the object.
        """
        return ObjectType(sim.simGetObjectType(self.get_handle()))