Skip to content

Instantly share code, notes, and snippets.

@TomoG29
Created April 23, 2020 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TomoG29/8ce1a6c8e0ac72bb840780a21e8d7eb3 to your computer and use it in GitHub Desktop.
Save TomoG29/8ce1a6c8e0ac72bb840780a21e8d7eb3 to your computer and use it in GitHub Desktop.
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