-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path__init__.py
More file actions
33 lines (26 loc) · 769 Bytes
/
__init__.py
File metadata and controls
33 lines (26 loc) · 769 Bytes
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
# Mustard Simplify addon
# GitHub page: https://github.com/Mustard2/MustardSimplify/
# Add-on information
bl_info = {
"name": "Mustard Simplify",
"description": "A set of tools to simplify scenes for better viewport performance",
"author": "Mustard",
"version": (2025, 4, 1),
"blender": (4, 3, 0),
"warning": "",
"doc_url": "https://github.com/Mustard2/MustardSimplify/wiki",
"category": "Scene",
}
from . import menu, settings, simplify, tools, utils # noqa: E402
def register():
settings.register()
simplify.register()
tools.register()
utils.register()
menu.register()
def unregister():
menu.unregister()
utils.unregister()
tools.unregister()
simplify.unregister()
settings.unregister()