[READ-ONLY] Mirror of https://github.com/tynanpurdy/stacker. A modernized open source revival of the late autodesk slicer for fusion 360
0

Configure Feed

Select the types of activity you want to include in your feed.

stacker / stacker.py
583 B 23 lines
1bl_info = { 2 "name": "Stacker", 3 "description": "A modern revival of Autodesk Slicer for Fusion 360", 4 "author": "Tynan Purdy", 5 "version": (0,1), 6 "blender": (2,80,0), # minimum blender version required (no reference for what it should be so far) 7 "support": "TESTING", 8 "category": "Object" 9} 10 11import bpy 12 13def register(): 14 print("Hello there") 15 16def unregister(): 17 print("General Kenobi") 18 19 20# This allows you to run the script directly from Blender's Text editor 21# to test the add-on without having to install it. 22if __name__ == "__main__": 23 register()