includes info
This commit is contained in:
@@ -3,7 +3,18 @@ import os
|
|||||||
import mathutils
|
import mathutils
|
||||||
from bpy.props import StringProperty
|
from bpy.props import StringProperty
|
||||||
from bpy.types import Panel, Operator
|
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):
|
class RENDER_OT_multi_angle(Operator):
|
||||||
"""Render animation from multiple angles"""
|
"""Render animation from multiple angles"""
|
||||||
|
|||||||
Reference in New Issue
Block a user