mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 11:22:55 +00:00
Fixed issues with Nene offsets in Pico mode
This commit is contained in:
parent
dff87babe6
commit
df42ac7531
2
assets
2
assets
|
@ -1 +1 @@
|
|||
Subproject commit 2ad892c76665abad5764137288c606f2f4fcd331
|
||||
Subproject commit 8573b2039b9fb37551a41f5195aaa2abdc63770e
|
|
@ -411,7 +411,6 @@ class BaseCharacter extends Bopper
|
|||
else
|
||||
{
|
||||
// Play the idle animation.
|
||||
trace('${characterId}: attempting dance');
|
||||
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
|
||||
{
|
||||
// FlxG.watch.addQuick('playAnim(${characterName})', name);
|
||||
super.playAnimation(name, restart, ignoreOther, reversed);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,6 +67,8 @@ class MultiSparrowCharacter extends BaseCharacter
|
|||
if (texture == null)
|
||||
{
|
||||
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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue