Skip to content

Commit

Permalink
fixed for blender 4.0 bone collections
Browse files Browse the repository at this point in the history
  • Loading branch information
pKrime committed Nov 15, 2023
1 parent 104536a commit fa4de7c
Show file tree
Hide file tree
Showing 5 changed files with 793 additions and 12 deletions.
53 changes: 53 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "blender 3.6",
"type": "process",
"command": "D:\\Program Files\\Blender Foundation\\Blender 3.6\\blender.exe",
"problemMatcher": [],
"options": {
"env": {
"BLENDER_DEV_MODE": "1",
"BLENDER_USER_SCRIPTS": "D:\\User\\Documents\\Source\\pKrime"
}
},
"group": {
"kind": "build",
}
},
{
"label": "blender 4.0",
"type": "process",
"command": "D:\\Program Files\\Blender Foundation\\Blender 4.0\\blender.exe",
"problemMatcher": [],
"options": {
"env": {
"BLENDER_DEV_MODE": "1",
"BLENDER_USER_SCRIPTS": "D:\\User\\Documents\\Source\\pKrime"
}
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "blender dev",
"type": "process",
"command": "D:\\User\\Documents\\Source\\blender\\blender-git\\build_windows_x64_vc16_Release\\bin\\Release\\blender.exe",
"problemMatcher": [],
"options": {
"env": {
"BLENDER_DEV_MODE": "1",
"BLENDER_USER_SCRIPTS": "D:\\User\\Documents\\Source\\pKrime"
}
},
"group": {
"kind": "build",
}
}
]
}
55 changes: 55 additions & 0 deletions __init__.py.orig
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# ====================== BEGIN GPL LICENSE BLOCK ======================
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation, version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ======================= END GPL LICENSE BLOCK ========================


bl_info = {
"name": "Expy Kit",
<<<<<<< HEAD
"version": (0, 2, 2),
"author": "Paolo Acampora",
=======
"version": (0, 5, 0),
"author": "Paolo Acampora (Balls & Ninjas)",
>>>>>>> ret_mapping
"blender": (2, 90, 0),
"description": "Tools for Character Rig Conversion",
"category": "Rigging",
}


from . import operators
from . import ui
from . import preferences
from . import preset_handler
from . import properties
from .preferences import ExpyPrefs, ExpyToClipboard


def register():
properties.register_classes()
preferences.register_classes()
operators.register_classes()
ui.register_classes()

preset_handler.install_presets()


def unregister():
ui.unregister_classes()
operators.unregister_classes()
preferences.unregister_classes()
properties.unregister_classes()
1 change: 1 addition & 0 deletions _extra_
Submodule _extra_ added at d93760
Loading

0 comments on commit fa4de7c

Please sign in to comment.