forked from GoldenQubicle/BAT4Blender
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathB4B.puml
53 lines (43 loc) · 888 Bytes
/
B4B.puml
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
@startuml
package BAT4Blender {
class Rig {
zoom enum
rotation enum
HD/SD enum
...
---
checkRequirements()
..
gui_render(zoom, level)
gui_add_lod()
...
}
object LOD
object Camera
object Sun
object Renderer
Rig -down-> LOD
Rig -down-> Camera
Rig -down-> Sun
Rig -down-> Renderer
Class GUI_Panel {
button w selection vars
..
button w operators,
executes on click
..
}
Class GUI_vars {
using B4B enums
register w ui manager
}
Class GUI_ops {
defines UI operators such as render
preview, reset, etc
..
passes selected ui vars along
}
GUI_Panel -down-|> GUI_ops
GUI_ops -down-|> Rig : calls on
}
@enduml