Webview for RunT/Krom

This commit is contained in:
Gorochu
2026-07-13 15:44:52 -07:00
parent 7b2f21c499
commit 31a6a9d7ec
75 changed files with 1488 additions and 46 deletions

View File

@ -0,0 +1,15 @@
from lnx.logicnode.lnx_nodes import *
class KromDelayIdleSleepNode(LnxLogicTreeNode):
"""Delays idle sleep on mobile platforms to keep the runtime active"""
bl_idname = 'LNKromDelayIdleSleepNode'
bl_label = 'Delay Idle Sleep'
lnx_category = 'Krom Runtime'
lnx_section = 'system'
lnx_version = 1
def lnx_init(self, context):
self.add_input('LnxNodeSocketAction', 'In')
self.add_output('LnxNodeSocketAction', 'Out')