-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
54 lines (45 loc) · 1012 Bytes
/
config.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
engine_name = "EXAMPLE_RENDER"
engine_label = "Bitto_Example"
film_props = (
{
'type' : 'float',
'name' : 'example',
'text' : 'Example',
'props' : {
'description' : 'this is a example property',
'default' : 0,
'min' : 0,
'max' : 1
}
},
{
'type' : 'string',
'name' : 'string_prop',
'text' : 'BlaBla',
'props' : {
'description' : 'this is a example float property',
'default' : '',
'subtype' : 'FILE_PATH'
}
}
)
camera_props = ()
integrator_props = ()
light_props = ()
sampler_props = ()
world_props = ()
preference_props = (
{
'type' : 'int',
'name' : 'test_prop',
'text' : 'BlaBla',
'props' : {
'description' : 'this is a int property',
'default' : 5,
},
},
)
node_categories = (
('BITTO_MATERIAL', 'Material'),
('BITTO_TEXTURE', 'Texture'),
)