mirror of
https://github.com/blender/blender-addons.git
synced 2025-08-01 16:06:15 +00:00

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
48 lines
1.2 KiB
Python
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()
|