Files
blender-addons/add_camera_rigs/__init__.py
Wayne Dixon 14a10cbb99 Fix Add Camera Rigs after 4.0 API changes
This pull request updates the 'add camera rigs' addon to use bone
collections for the 4.0 release.
It also adjusts some of the naming convention to match the Rigify.

Pull Request: https://projects.blender.org/blender/blender-addons/pulls/104919
2023-09-27 13:19:02 +02:00

48 lines
1.2 KiB
Python

# SPDX-FileCopyrightText: 2019-2022 Blender Foundation
#
# SPDX-License-Identifier: GPL-2.0-or-later
bl_info = {
"name": "Add Camera Rigs",
"author": "Wayne Dixon, Brian Raschko, Kris Wittig, Damien Picard, Flavio Perez",
"version": (1, 6, 0),
"blender": (4, 0, 0),
"location": "View3D > Add > Camera > Dolly or Crane Rig",
"description": "Adds a Camera Rig with UI",
"doc_url": "{BLENDER_MANUAL_URL}/addons/camera/camera_rigs.html",
"tracker_url": "https://github.com/waylow/add_camera_rigs/issues",
"category": "Camera",
}
import bpy
import os
from . import build_rigs
from . import operators
from . import ui_panels
from . import prefs
from . import composition_guides_menu
# =========================================================================
# Registration:
# =========================================================================
def register():
build_rigs.register()
operators.register()
ui_panels.register()
prefs.register()
composition_guides_menu.register()
def unregister():
build_rigs.unregister()
operators.unregister()
ui_panels.unregister()
prefs.unregister()
composition_guides_menu.unregister()
if __name__ == "__main__":
register()