-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
111 lines (102 loc) · 2.33 KB
/
Copy path__init__.py
File metadata and controls
111 lines (102 loc) · 2.33 KB
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
"""YABQOLA - Yet Another Blender Quality of Life Extension."""
# Legacy metadata kept so Blender <4.2 can still treat the package as an add-on.
bl_info = {
"name": "YABQOLA: Yet Another Blender Quality of Life Extension",
"description": "Modular animation QoL tools: noise randomizer, timing/stagger, quick flip, scene cleanup, and a reference camera matcher.",
"author": "Xnom3d",
"version": (1, 5, 0),
"blender": (5, 0, 0),
"location": "Graph/Dope Sheet & 3D View > Sidebar",
"warning": "",
"doc_url": "",
"category": "Animation",
}
import importlib
import bpy
from . import preferences, properties
from .operators import (
auto_framing,
background_swap,
batch_render,
camera_snapshots,
color_temperature,
compositor_setup,
cycle_setup,
ease_presets,
expression_mixer,
focus_helper,
lighting_presets,
keyframe_offset,
loop_animation,
material_override,
motion_hold,
noise_randomizer,
output_presets,
overshoot_settle,
physics_snapshot,
pose_snapshots,
quick_backdrop,
quick_flip,
silhouette_check,
reference_camera,
render_presets,
scale_values,
scene_cleanup,
select_by_type,
snap_keyframes,
stagger_timing,
time_stretch,
turntable,
viewport_hdri,
watermark,
)
from .ui import panels
MODULES = (
preferences,
properties,
noise_randomizer,
keyframe_offset,
stagger_timing,
ease_presets,
motion_hold,
select_by_type,
scale_values,
snap_keyframes,
loop_animation,
overshoot_settle,
cycle_setup,
time_stretch,
quick_flip,
batch_render,
compositor_setup,
auto_framing,
silhouette_check,
pose_snapshots,
camera_snapshots,
focus_helper,
lighting_presets,
reference_camera,
render_presets,
scene_cleanup,
output_presets,
background_swap,
viewport_hdri,
color_temperature,
material_override,
quick_backdrop,
turntable,
expression_mixer,
physics_snapshot,
watermark,
panels,
)
def register():
for module in MODULES:
importlib.reload(module)
for module in MODULES:
module.register()
preferences.refresh_keymaps(bpy.context)
def unregister():
preferences.clear_keymaps()
for module in reversed(MODULES):
module.unregister()