replace-delete-by-remove

This commit is contained in:
knowledgenude 2020-09-24 21:02:26 -03:00
parent 618fa26dd4
commit 4e114e02d3
5 changed files with 5 additions and 5 deletions

View file

@ -3,7 +3,7 @@ from arm.logicnode.arm_nodes import *
class RemoveObjectNode(ArmLogicTreeNode):
"""Use to delete an object from the scene."""
bl_idname = 'LNRemoveObjectNode'
bl_label = 'Delete Object'
bl_label = 'Remove Object'
arm_version = 1
def init(self, context):

View file

@ -6,7 +6,7 @@ from arm.logicnode.arm_nodes import *
class RemovePhysicsNode (ArmLogicTreeNode):
"""Use to delete a rigid body from an object."""
bl_idname = 'LNRemovePhysicsNode'
bl_label = 'Delete Rigid Body'
bl_label = 'Remove Rigid Body'
arm_version = 1
def init(self, context):

View file

@ -3,7 +3,7 @@ from arm.logicnode.arm_nodes import *
class RemoveActiveSceneNode(ArmLogicTreeNode):
"""Use to delete the active scene."""
bl_idname = 'LNRemoveActiveSceneNode'
bl_label = 'Delete Active Scene'
bl_label = 'Remove Active Scene'
arm_version = 1
def init(self, context):

View file

@ -3,7 +3,7 @@ from arm.logicnode.arm_nodes import *
class RemoveGroupNode(ArmLogicTreeNode):
"""Use to delete a collection from the scene."""
bl_idname = 'LNRemoveGroupNode'
bl_label = 'Delete Collection'
bl_label = 'Remove Collection'
arm_version = 1
def init(self, context):

View file

@ -3,7 +3,7 @@ from arm.logicnode.arm_nodes import *
class RemoveTraitNode(ArmLogicTreeNode):
"""Use to remove a trait."""
bl_idname = 'LNRemoveTraitNode'
bl_label = 'Delete Trait'
bl_label = 'Remove Trait'
arm_version = 1
def init(self, context):