Welcome to mirror list, hosted at ThFree Co, Russian Federation.

space_logic.py « ui « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 728e5e6307b4bb1b1fe5d6a2fd09c637ad72033c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import bpy

class LOGIC_PT_properties(bpy.types.Panel):
	__space_type__ = "LOGIC_EDITOR"
	__region_type__ = "UI"
	__label__ = "Properties"

	def poll(self, context):
		ob = context.active_object
		return ob and ob.game

	def draw(self, context):
		layout = self.layout
		ob = context.active_object
		game = ob.game
		
		for prop in game.properties:
			flow = layout.row()
			flow.itemR(prop, "name", text="")
			flow.itemR(prop, "type", text="")
			flow.itemR(prop, "value", text="") # we dont care about the type. rna will display correctly
			flow.itemR(prop, "debug")

bpy.types.register(LOGIC_PT_properties)