forked from bartvdbraak/blender
23 lines
529 B
Python
23 lines
529 B
Python
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"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
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")
|
|
|
|
bpy.types.register(OBJECT_PT_hello)
|