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

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

import bpy

class DataButtonsPanel(bpy.types.Panel):
	bl_space_type = 'PROPERTIES'
	bl_region_type = 'WINDOW'
	bl_context = "data"
	
	def poll(self, context):
		return (context.object and context.object.type == 'EMPTY')
	
class DATA_PT_empty(DataButtonsPanel):
	bl_label = "Empty"

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

		layout.itemR(ob, "empty_draw_type", text="Display")
		layout.itemR(ob, "empty_draw_size", text="Size")
		
bpy.types.register(DATA_PT_empty)