Update Files
This commit is contained in:
@ -0,0 +1,30 @@
|
||||
import bpy
|
||||
from bpy.props import *
|
||||
from bpy.types import Node, NodeSocket
|
||||
from lnx.logicnode.lnx_nodes import *
|
||||
|
||||
|
||||
@deprecated('Get Cursor State')
|
||||
class GetMouseVisibleNode(LnxLogicTreeNode):
|
||||
"""Deprecated. It is recommended to use the 'Get Cursor State' node instead."""
|
||||
bl_idname = 'LNGetMouseVisibleNode'
|
||||
bl_label = 'Get Mouse Visible'
|
||||
bl_description = "Please use the \"Get Cursor State\" node instead"
|
||||
lnx_category = 'Input'
|
||||
lnx_section = 'mouse'
|
||||
lnx_version = 2
|
||||
|
||||
def lnx_init(self, context):
|
||||
self.outputs.new('LnxBoolSocket', 'Is Visible')
|
||||
|
||||
def get_replacement_node(self, node_tree: bpy.types.NodeTree):
|
||||
if self.lnx_version not in (0, 1):
|
||||
raise LookupError()
|
||||
|
||||
mainnode = node_tree.nodes.new('LNGetCursorStateNode')
|
||||
secondnode = node_tree.nodes.new('LNNotNode')
|
||||
node_tree.links.new(mainnode.outputs[2], secondnode.inputs[0])
|
||||
for link in self.outputs[0].links:
|
||||
node_tree.links.new(secondnode.outputs[0], link.to_socket)
|
||||
|
||||
return [mainnode, secondnode]
|
Reference in New Issue
Block a user