Blender2.5から始めるスクリプト04

オブジェクトパネル最下部に「Test」欄作成

import bpy

class ObjectButtonsPanel(bpy.types.Panel):
bl_space_type = “PROPERTIES”
bl_region_type = “WINDOW”
bl_context = “object”

class OBJECT_PT_Test(ObjectButtonsPanel):
bl_label = “Test”
Display = 0

def draw_header(self, context):
layout = self.layout

def draw(self, context):
layout = self.layout

bpy.types.register(OBJECT_PT_Test)

コメントをどうぞ

メールアドレスが公開されることはありません。 が付いている欄は必須項目です