1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-04-05 11:34:48 +00:00

puddle positioning

This commit is contained in:
Cameron Taylor 2023-09-08 01:37:32 -04:00
parent 4815bed2cb
commit cf9915ef60
2 changed files with 3 additions and 0 deletions
source/funkin

View file

@ -6,6 +6,7 @@ import funkin.util.Constants;
import funkin.Paths; import funkin.Paths;
import funkin.Preferences; import funkin.Preferences;
import flixel.FlxG; // This one in particular causes a compile error if you're using macros. 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. // These are great.
using Lambda; using Lambda;

View file

@ -276,6 +276,8 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass
{ {
namedProps.set(name, prop); namedProps.set(name, prop);
prop.name = name; prop.name = name;
FlxG.debugger.track(prop, name);
FlxG.debugger.track(prop.scale, name + '.scale');
} }
this.add(prop); this.add(prop);
} }