21 lines
383 B
Python
21 lines
383 B
Python
|
import bpy
|
||
|
bl_info = {
|
||
|
"name": "Sprite preview",
|
||
|
"author": "Cube Animation",
|
||
|
"version": (1, 0),
|
||
|
"blender": (2, 80, 0),
|
||
|
"location": "Properties > Object > Sprite Components",
|
||
|
"description": "Manage sprite components in blender",
|
||
|
"warning": "",
|
||
|
"wiki_url": "",
|
||
|
"category": "Cube Animation",
|
||
|
}
|
||
|
|
||
|
|
||
|
def register():
|
||
|
pass
|
||
|
|
||
|
|
||
|
def unregister():
|
||
|
pass
|