Created
April 23, 2020 05:34
-
-
Save TomoG29/8ce1a6c8e0ac72bb840780a21e8d7eb3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bpy | |
bl_info = { | |
"name": "SampleAddon", | |
"author": "Your Name", | |
"version": (1, 0), | |
"blender": (2, 80, 2), | |
"location": "", | |
"description": "Sample", | |
"warning": "", | |
"support": "TESTING", | |
"wiki_url": "", | |
"tracker_url": "", | |
"category": "Object" | |
} | |
def register(): | |
print("execute register") | |
def unregister(): | |
print("execute unregister") | |
if __name__ == "__main__": | |
register() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment