From 7084465393c38ac533a6403f8f85fa3b8dc1334b Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 30 Jul 2024 16:44:12 +0200 Subject: [PATCH] Templates: Remove bl_info from addon_add_object --- scripts/templates_py/addon_add_object.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/scripts/templates_py/addon_add_object.py b/scripts/templates_py/addon_add_object.py index 05a713b76b0..b98d3e42864 100644 --- a/scripts/templates_py/addon_add_object.py +++ b/scripts/templates_py/addon_add_object.py @@ -1,15 +1,5 @@ -bl_info = { - "name": "New Object", - "author": "Your Name Here", - "version": (1, 0), - "blender": (2, 80, 0), - "location": "View3D > Add > Mesh > New Object", - "description": "Adds a new Mesh Object", - "warning": "", - "doc_url": "", - "category": "Add Mesh", -} - +# To make this add-on installable, create an extension with it: +# https://docs.blender.org/manual/en/latest/advanced/extensions/getting_started.html import bpy from bpy.types import Operator