当前位置: 首页>>代码示例>>Python>>正文


Python creator.ActuatorCreator类代码示例

本文整理汇总了Python中morse.builder.creator.ActuatorCreator的典型用法代码示例。如果您正苦于以下问题:Python ActuatorCreator类的具体用法?Python ActuatorCreator怎么用?Python ActuatorCreator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ActuatorCreator类的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: properties

 def properties(self, **kwargs):
     radar = self._bpy_object.game.sensors["Radar"]
     if "Angle" in kwargs:
         radar.angle = kwargs["Angle"]
     if "Distance" in kwargs:
         radar.distance = kwargs["Distance"]
     ActuatorCreator.properties(self, **kwargs)
开发者ID:mag9erik,项目名称:MorseUbuntuTestOF,代码行数:7,代码来源:actuators.py

示例2: __init__

 def __init__(self, name=None):
     ActuatorCreator.__init__(self, name,
         "morse/actuators/waypoint",
         "WaypointActuatorClass", "waypoint")
     self.properties(Target = "")
     # append 2 Radar with logic
     self.add_lr_radars()
开发者ID:matrixchan,项目名称:morse,代码行数:7,代码来源:actuators.py

示例3: __init__

 def __init__(self, name=None):
     ActuatorCreator.__init__(self, name, \
                              "morse.actuators.light.Light",\
                              "light")
     light = Spot("LightSpot")
     self.append(light)
     self.properties(emit = True)
开发者ID:cburbridge,项目名称:morse,代码行数:7,代码来源:actuators.py

示例4: __init__

 def __init__(self, name=None):
     ActuatorCreator.__init__(self, name)
     self.properties(mode="play")
     #self.select()
     bpymorse.add_actuator(type="SOUND", name="MORSE_SOUND")
     actuator = self._bpy_object.game.actuators[-1]
     controller =  self._bpy_object.game.controllers[-1]
     controller.link(actuator=actuator)
开发者ID:hawesie,项目名称:morse,代码行数:8,代码来源:actuators.py

示例5: __init__

 def __init__(self, name=None):
     self.light = None
     ActuatorCreator.__init__(self, name,
                              "morse.actuators.light.Light",
                              "light")
     self.light = Spot("LightSpot")
     self.append(self.light)
     self.properties(Emit=True)
开发者ID:Djeef,项目名称:morse,代码行数:8,代码来源:actuators.py

示例6: __init__

    def __init__(self, name=None, armature_name=None, model_name=None):
        """ Initialize an armature

        Either `armature_name` or `model_name` or both must be specified.
        

        :param armature_name: Armature object name
        :param model_name: Armature model name, if any
        """

        if not armature_name and not model_name:
            raise MorseBuilderError(
                "You need to specify either the name of "
                "an armature or a Blender model in order to create an "
                "armature actuator."
            )

        if model_name:
            ActuatorCreator.__init__(
                self,
                name,
                action=ComponentCreator.USE_BLEND,
                blendfile=model_name,
                blendobject=armature_name,
                make_morseable=True,
            )

        else:
            ActuatorCreator.__init__(
                self, name, action=ComponentCreator.LINK_EXISTING_OBJECT, blendobject=armature_name, make_morseable=True
            )

        self.ik_targets = []

        # the user may have created IK constraints on the armature, without
        # setting an IK target. In that case, we add such a target
        for bone in self._bpy_object.pose.bones:
            for c in bone.constraints:
                if c.type == "IK" and c.ik_type == "DISTANCE":
                    if not c.target:
                        self.create_ik_targets([bone.name])
开发者ID:mag9erik,项目名称:MorseUbuntuTestOF,代码行数:41,代码来源:actuators.py

示例7: __init__

 def __init__(self, name=None):
     ActuatorCreator.__init__(self, name, \
                              "morse.actuators.teleport.Teleport",\
                              "teleport")
开发者ID:marc-hanheide,项目名称:morse,代码行数:4,代码来源:actuators.py

示例8: __init__

 def __init__(self, name=None):
     ActuatorCreator.__init__(self, name)
开发者ID:nicolaje,项目名称:sailboat,代码行数:2,代码来源:sailboatactuator.py


注:本文中的morse.builder.creator.ActuatorCreator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。