[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.

initial blender script file setup

+23
+23
stacker.py
··· 1 + bl_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 + 11 + import bpy 12 + 13 + def register(): 14 + print("Hello there") 15 + 16 + def 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. 22 + if __name__ == "__main__": 23 + register()