armory/blender/arm/logicnode/transform/LN_translate_on_local_axis.py

20 lines
736 B
Python
Raw Normal View History

2018-02-18 19:19:43 +01:00
from arm.logicnode.arm_nodes import *
2020-09-08 23:21:41 +02:00
2018-02-18 19:19:43 +01:00
class TranslateOnLocalAxisNode(ArmLogicTreeNode):
2020-10-05 19:55:56 +02:00
"""Translates (moves) the given object using the given vector in the local coordinates."""
2018-02-18 19:19:43 +01:00
bl_idname = 'LNTranslateOnLocalAxisNode'
bl_label = 'Translate On Local Axis'
2020-10-27 19:44:37 +01:00
arm_section = 'location'
arm_version = 1
2018-02-18 19:19:43 +01:00
def init(self, context):
super(TranslateOnLocalAxisNode, self).init(context)
2020-09-08 21:49:02 +02:00
self.add_input('ArmNodeSocketAction', 'In')
self.add_input('ArmNodeSocketObject', 'Object')
self.add_input('NodeSocketFloat', 'Speed')
self.add_input('NodeSocketInt', 'Forward/Up/Right')
self.add_input('NodeSocketBool', 'Inverse')
2020-11-17 16:01:15 +01:00
2020-09-08 21:49:02 +02:00
self.add_output('ArmNodeSocketAction', 'Out')