generated from joeyskeys/bitto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
136 lines (124 loc) · 3.15 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
import os
# This field should align with the name set in bl_info
engine_name = "bazen"
engine_label = "Bazen"
film_props = [
{
'type' : 'int',
'name' : 'tile_resolution_x',
'text' : 'Tiles X',
'props' : {
'description' : 'Tile resolution of horizontal direction',
'default' : 4
}
},
{
'type' : 'int',
'name' : 'tile_resolution_y',
'text' : 'Tiles Y',
'props' : {
'description' : 'Tile resolution of vertical direction',
'default' : 4
}
},
{
'type' : 'string',
'name' : 'output',
'text' : 'Output',
'props' : {
'description' : 'Output path of the render',
'default' : './output.png',
'subtype' : 'FILE_PATH'
}
}
]
camera_props = [
{
'type' : 'float',
'name' : 'near_plane',
'text' : 'Near Plane',
'props' : {
'description' : 'Near clipping plane',
'default' : 1,
'min' : 0.1,
'max' : 100,
}
},
{
'type' : 'float',
'name' : 'far_plane',
'text' : 'Far Plane',
'props' : {
'description' : 'Far clipping plane',
'default' : 1000,
'min' : 10,
'max' : 100000,
}
},
]
accelerator_props = [
{
'type' : 'enum',
'name' : 'accelerator_type',
'text' : 'AcceleratorType',
'props' : {
'items' : (
('Accelerator', 'BasicAccel', ''),
('BVHAccelerator', 'BVHAccel', ''),
('EmbreeAccelerator', 'EmbreeAccel', ''),
),
'default' : 'EmbreeAccelerator',
}
}
]
integrator_props = [
{
'type' : 'enum',
'name' : 'integrator_type',
'text' : 'IntegratorType',
'props' : {
'items' : (
('NormalIntegrator', 'Normal', ''),
('AmbientOcclusionIntegrator', 'AmbientOcculusion', ''),
('WhittedIntegrator', 'Whitted', ''),
('PathMatsIntegrator', 'PathMats', ''),
('PathEmsIntegrator', 'PathEms', ''),
('PathIntegrator', 'Path', ''),
),
'default' : 'PathIntegrator',
}
}
]
light_props = []
sampler_props = []
world_props = []
preference_props = [
{
'type' : 'int',
'name' : 'sample_cnt',
'text' : 'Sample Count',
'props' : {
'description' : 'Sample count for each pixel',
'default' : 5,
}
},
{
'type' : 'int',
'name' : 'thread_cnt',
'text' : 'Thread Count',
'props' : {
'description' : 'Thread count setting',
'default' : os.cpu_count(),
}
}
]
category_name = 'BAZEN'
node_categories = [
('BazenMaterial', 'Material'),
('BazenTexture', 'Texture'),
]
use_seprate_node_editor = False
node_editor_name = 'Bazen Shader Editor'
node_editor_convert_text = 'Use Bazen Material Nodes'
node_editor_recover_text = 'Use Cycles Material Nodes'
output_node_label = 'BazenOutput'