Files
mod_gdscript_test/scripts/light_reset_action.gd
T
2026-09-10 10:59:37 +03:00

10 lines
188 B
GDScript

extends RefCounted
func get_name():
return "gds.light_reset"
func run(ctx):
ctx.Lighting.ClearDepthMap()
ctx.Lighting.SetUseTime(false)
ctx.Log("GDS", "Lighting reset via GDScript")