From 683f5a38cfb9f55caafaa80543766c07d42e9961 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Wed, 26 Jun 2024 22:32:43 -0600 Subject: [PATCH] use FlxPoint.get --- src/hollywoo_flixel/FlxDirector.kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hollywoo_flixel/FlxDirector.kiss b/src/hollywoo_flixel/FlxDirector.kiss index 8ac811e..07bcad3 100644 --- a/src/hollywoo_flixel/FlxDirector.kiss +++ b/src/hollywoo_flixel/FlxDirector.kiss @@ -1109,4 +1109,4 @@ (set FlxG.mouse.visible false)) (method :FlxLightSource offsetLightSource [:FlxLightSource source :StagePosition offset] - (new FlxLightSource (for point source.points (new FlxPoint (+ point.x offset.x) (+ point.y offset.y))) source.color)) \ No newline at end of file + (new FlxLightSource (for point source.points (FlxPoint.get (+ point.x offset.x) (+ point.y offset.y))) source.color)) \ No newline at end of file