-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblender_manifest.toml
More file actions
75 lines (66 loc) · 2.29 KB
/
Copy pathblender_manifest.toml
File metadata and controls
75 lines (66 loc) · 2.29 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
schema_version = "1.0.0"
id = "convert_rotation_mode"
version = "1.5.1"
name = "Convert Rotation Mode"
tagline = "Change rotation mode whilst preserving animation"
maintainer = "Loïc \"Lauloque\" Dautry"
type = "add-on"
website = "https://github.com/Lauloque/convertRotationMode"
# Optional list defined by Blender and server, see:
# https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html
tags = ["Animation", "3D View", "Bake"]
blender_version_min = "4.5.0"
# blender_version_max = "5.1.0"
# License conforming to https://spdx.org/licenses/ (use "SPDX: prefix)
# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html
license = ["SPDX:GPL-3.0-or-later",]
# Optional: Platforms
# If you know your addon is platform-specific, you can specify supported platforms here.
# For example:
# platforms = ["windows-x64", "macos-arm64", "linux-x64"]
# Other supported platforms include "windows-arm64", "macos-x64".
# Optional: Bundle third-party Python modules
# If your addon relies on additional Python modules, bundle them using wheels.
# For example:
# wheels = [
# "./wheels/hexdump-3.3-py3-none-any.whl",
# "./wheels/jsmin-3.0.1-py3-none-any.whl",
# ]
# Optional: Resources required by the addon
# If your addon requires specific resources such as filesystem or internet access,
# list them here and explain the usage.
# Supported resources include:
# * files (for filesystem access)
# * network (for internet access)
# * clipboard (for clipboard access)
# * camera (for capturing photos or videos)
# * microphone (for capturing audio)
# If using network permissions, ensure you also check `bpy.app.online_access` in your addon.
# https://docs.blender.org/manual/en/dev/advanced/extensions/addons.html#internet-access
[permissions]
# network = "Sync motion-capture data to server"
# files = "Import/export FBX files"
clipboard = "Copy and paste bone transforms"
# Optional: Build settings
# If you're distributing your addon and need to exclude certain files or directories,
# specify the paths to exclude here.
# For example:
[build]
paths_exclude_pattern = [
"/__pycache__/",
"/.git/",
"/.github/",
"/.pytype/",
"/.vscode/",
"*.zip",
"/Prez/",
"/Releases/",
"/venv*/",
"/Building_Solutions/",
".git*",
"*.sublime*",
"*.blend*",
"*.pyc",
"*.txt",
"*.md",
]