Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 88985e0

Browse files
committed
cool chart editor additions
1 parent 27b9e9f commit 88985e0

File tree

7 files changed

+1459
-46
lines changed

7 files changed

+1459
-46
lines changed
164 Bytes
Loading

assets/shared/sounds/metronome.ogg

6.77 KB
Binary file not shown.

source/game/cdev/engineutils/CDevFPSMem.hx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ class CDevFPSMem extends TextField
9898

9999
game.cdev.CDevConfig.elapsedGameTime += FlxG.elapsed * 1000;
100100

101-
/*if (bitmap != null)
101+
/*if (bitmap != null)
102102
Main.instance.removeChild(bitmap);
103103
104-
bitmap = ImageOutline.renderImage(this, 1, 0x000000, 1, true);
104+
bitmap = ImageOutline.renderImage(this, 1, 0x000000, 1, true);
105105
if (bitmap == null)
106106
return;
107107

source/meta/modding/char_editor/CharacterEditor.hx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -447,12 +447,12 @@ class CharacterEditor extends meta.states.MusicBeatState
447447
{
448448
healthBarBG = new FlxSprite(30, FlxG.height - 78).loadGraphic(Paths.image("healthBar", 'shared'));
449449
healthBarBG.antialiasing = CDevConfig.saveData.antialiasing;
450-
add(healthBarBG);
451-
450+
452451
healthBar = new FlxSprite(healthBarBG.x+2, healthBarBG.y+2).makeGraphic(Std.int(healthBarBG.width-4), Std.int(healthBarBG.height-4),FlxColor.WHITE);
453452
healthBar.antialiasing = CDevConfig.saveData.antialiasing;
454453
add(healthBar);
455-
454+
add(healthBarBG);
455+
456456
healthIcon = new HealthIcon(charJSON.iconName, false);
457457
add(healthIcon);
458458

0 commit comments

Comments
 (0)