createGUI
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
26
27
28
29
30
31
32
33
34
35 | import bpy
"""

"""
class SAMPLE_PT_Props(bpy.types.PropertyGroup):
# PropertyGroupを追加
my_int: bpy.props.IntProperty()
my_float: bpy.props.FloatProperty()
my_string: bpy.props.StringProperty()
class SAMPLE_PT_samplePanel(bpy.types.Panel):
bl_label = "PropSample"
bl_space_type = "VIEW_3D"
bl_region_type = "UI"
bl_category = "SamplePanel"
def draw(self, context):
layout = self.layout
layout.prop(context.object.sampleValue, 'my_int')
layout.prop(context.object, 'sample')
def register():
bpy.types.Object.sampleValue = bpy.props.PointerProperty(type=SAMPLE_PT_Props)
def unregister():
pass
|
最終更新日:
2022-05-10 14:46:53