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


Python types.Menu类代码示例

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


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

示例1: draw

    def draw(self, context):
        props = self.layout.operator("wm.context_set_value", text="Blender (default)")
        props.data_path = "window_manager.keyconfigs.active"
        props.value = "context.window_manager.keyconfigs.default"

        # now draw the presets
        Menu.draw_preset(self, context)
开发者ID:JT-a,项目名称:blender-lukas_t,代码行数:7,代码来源:space_userpref.py

示例2: draw

    def draw(self, context):
        self.operator = context.active_operator.bl_idname

        # dummy 'default' menu item
        layout = self.layout
        layout.operator("wm.operator_defaults")
        layout.separator()

        Menu.draw_preset(self, context)
开发者ID:ruesp83,项目名称:Blender---Layer,代码行数:9,代码来源:presets.py

示例3: draw

 def draw(self, context):
     self.operator = context.space_data.operator.bl_idname
     Menu.draw_preset(self, context)
开发者ID:BHCLL,项目名称:blendocv,代码行数:3,代码来源:presets.py

示例4: draw

 def draw(self, context):
     self.operator = context.active_operator.bl_idname
     Menu.draw_preset(self, context)
开发者ID:ryden,项目名称:blender-mirror,代码行数:3,代码来源:presets.py

示例5: draw

    def draw(self, context):
        layout = self.layout
        layout.emboss = 'PULLDOWN_MENU'
        layout.operator_context = 'EXEC_DEFAULT'

        Menu.draw_preset(self, context)
开发者ID:dfelinto,项目名称:blender,代码行数:6,代码来源:utils.py


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