From cf9915ef6097f897534a5bc843e71674836e09b6 Mon Sep 17 00:00:00 2001 From: Cameron Taylor <cameron.taylor.ninja@gmail.com> Date: Fri, 8 Sep 2023 01:37:32 -0400 Subject: [PATCH] puddle positioning --- source/funkin/import.hx | 1 + source/funkin/play/stage/Stage.hx | 2 ++ 2 files changed, 3 insertions(+) diff --git a/source/funkin/import.hx b/source/funkin/import.hx index 5ca6b03db..02055d4ed 100644 --- a/source/funkin/import.hx +++ b/source/funkin/import.hx @@ -6,6 +6,7 @@ import funkin.util.Constants; import funkin.Paths; import funkin.Preferences; import flixel.FlxG; // This one in particular causes a compile error if you're using macros. +import flixel.system.debug.watch.Tracker; // These are great. using Lambda; diff --git a/source/funkin/play/stage/Stage.hx b/source/funkin/play/stage/Stage.hx index c8cb8ce66..f876a0e54 100644 --- a/source/funkin/play/stage/Stage.hx +++ b/source/funkin/play/stage/Stage.hx @@ -276,6 +276,8 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass { namedProps.set(name, prop); prop.name = name; + FlxG.debugger.track(prop, name); + FlxG.debugger.track(prop.scale, name + '.scale'); } this.add(prop); }