forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
13
leenkx/blender/lnx/logicnode/math/LN_rad_to_deg.py
Normal file
13
leenkx/blender/lnx/logicnode/math/LN_rad_to_deg.py
Normal file
@ -0,0 +1,13 @@
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
class RadToDegNode(LnxLogicTreeNode):
|
||||
"""Converts radians to degrees."""
|
||||
bl_idname = 'LNRadToDegNode'
|
||||
bl_label = 'Rad to Deg'
|
||||
lnx_version = 1
|
||||
lnx_section = 'angle'
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.add_input('LnxFloatSocket', 'Radians')
|
||||
|
||||
self.add_output('LnxFloatSocket', 'Degrees')
|
Reference in New Issue
Block a user