Add leenkx/blender/lnx/logicnode/browser/LN_detect_mobile_browser.py

This commit is contained in:
LeenkxTeam 2025-01-29 08:11:04 +00:00
parent 16e8e00783
commit 1958342a74

View File

@ -0,0 +1,10 @@
from lnx.logicnode.lnx_nodes import *
class DetectMobileBrowserNode(LnxLogicTreeNode):
"""Determines the mobile browser or not (works only for web browsers)."""
bl_idname = 'LNDetectMobileBrowserNode'
bl_label = 'Detect Mobile Browser'
lnx_version = 1
def lnx_init(self, context):
self.add_output('LnxBoolSocket', 'Mobile')