1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-03-21 01:19:26 +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

View file

@ -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;

View file

@ -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);
}