blender/release/scripts/templates/panel_simple.py

22 lines
493 B
Python
Raw Normal View History

import bpy
class OBJECT_PT_hello(bpy.types.Panel):
bl_label = "Hello World Panel"
bl_space_type = "PROPERTIES"
bl_region_type = "WINDOW"
bl_context = "object"
2010-01-31 14:46:28 +00:00
def draw(self, context):
layout = self.layout
2010-01-31 14:46:28 +00:00
obj = context.object
row = layout.row()
row.label(text="Hello world!", icon='WORLD_DATA')
row = layout.row()
row.label(text="Active object is: " + obj.name)
row = layout.row()
row.prop(obj, "name")