includes info

This commit is contained in:
2025-09-05 16:59:29 -07:00
parent fce5e14ddb
commit b71e043d02

View File

@@ -3,7 +3,18 @@ import os
import mathutils
from bpy.props import StringProperty
from bpy.types import Panel, Operator
import math
bl_info = {
"name": "Compass Render", # Main display name
"author": "Bryce", # Your name/credit
"version": (1, 0, 0), # Version number
"blender": (2, 80, 0), # Minimum Blender version
"location": "Properties > Render Properties > Multi-Angle Renderer",
"description": "Your custom description here",
"warning": "Beta version - use with caution", # Optional warning
"doc_url": "https://your-documentation.com", # Optional docs link
"category": "Render", # Category in add-ons list
}
class RENDER_OT_multi_angle(Operator):
"""Render animation from multiple angles"""