1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 19:33:36 +00:00

Fixed issues with Nene offsets in Pico mode

This commit is contained in:
EliteMasterEric 2024-08-27 04:20:49 -04:00
parent dff87babe6
commit df42ac7531
3 changed files with 3 additions and 3 deletions

2
assets

@ -1 +1 @@
Subproject commit 2ad892c76665abad5764137288c606f2f4fcd331 Subproject commit 8573b2039b9fb37551a41f5195aaa2abdc63770e

View file

@ -411,7 +411,6 @@ class BaseCharacter extends Bopper
else else
{ {
// Play the idle animation. // Play the idle animation.
trace('${characterId}: attempting dance');
dance(true); dance(true);
} }
} }
@ -633,7 +632,6 @@ class BaseCharacter extends Bopper
public override function playAnimation(name:String, restart:Bool = false, ignoreOther:Bool = false, reversed:Bool = false):Void public override function playAnimation(name:String, restart:Bool = false, ignoreOther:Bool = false, reversed:Bool = false):Void
{ {
// FlxG.watch.addQuick('playAnim(${characterName})', name);
super.playAnimation(name, restart, ignoreOther, reversed); super.playAnimation(name, restart, ignoreOther, reversed);
} }
} }

View file

@ -67,6 +67,8 @@ class MultiSparrowCharacter extends BaseCharacter
if (texture == null) if (texture == null)
{ {
trace('Multi-Sparrow atlas could not load PRIMARY texture: ${_data.assetPath}'); trace('Multi-Sparrow atlas could not load PRIMARY texture: ${_data.assetPath}');
FlxG.log.error('Multi-Sparrow atlas could not load PRIMARY texture: ${_data.assetPath}');
return;
} }
else else
{ {