Update leenkx/blender/lnx/props.py

This commit is contained in:
LeenkxTeam 2025-04-09 20:35:42 +00:00
parent 7f38b15fe7
commit c6f672bd61

View File

@ -307,7 +307,8 @@ def init_properties():
bpy.types.World.lnx_verbose_output = BoolProperty(name="Verbose Output", description="Print additional information to the console during compilation", default=False)
bpy.types.World.lnx_runtime = EnumProperty(
items=[('Krom', 'Krom', 'Krom'),
('Browser', 'Browser', 'Browser')],
('Browser', 'Browser', 'Browser'),
('Hashlink', 'Hashlink', 'Hashlink (Requires Hashlink target build)')],
name="Runtime", description="Runtime to use when launching the game", default='Krom', update=assets.invalidate_shader_cache)
bpy.types.World.lnx_loadscreen = BoolProperty(name="Loading Screen", description="Show asset loading progress on published builds", default=True)
bpy.types.World.lnx_vsync = BoolProperty(name="VSync", description="Vertical Synchronization", default=True, update=assets.invalidate_compiler_cache)