Delete LN_animation_state.py

This commit is contained in:
knowledgenude 2020-10-05 19:07:10 -03:00 committed by GitHub
parent 7dee6d97b4
commit 6cd52a4d26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,16 +0,0 @@
from arm.logicnode.arm_nodes import *
class AnimationStateNode(ArmLogicTreeNode):
"""Get information about the current animation of an object."""
bl_idname = 'LNAnimationStateNode'
bl_label = 'Animation State'
arm_version = 1
def init(self, context):
super(AnimationStateNode, self).init(context)
self.add_input('ArmNodeSocketObject', 'Object')
self.add_output('NodeSocketBool', 'Is Playing')
self.add_output('NodeSocketString', 'Action')
self.add_output('NodeSocketInt', 'Frame')
add_node(AnimationStateNode, category=PKG_AS_CATEGORY)