mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-22 03:34:10 -04:00
Fixed issues with Nene offsets in Pico mode
This commit is contained in:
parent
dff87babe6
commit
df42ac7531
3 changed files with 3 additions and 3 deletions
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…
Add table
Add a link
Reference in a new issue