Skip to content

Commit

Permalink
gf assets and offsets update
Browse files Browse the repository at this point in the history
  • Loading branch information
ninjamuffin99 committed Dec 11, 2020
1 parent 487a1f1 commit eb017da
Show file tree
Hide file tree
Showing 7 changed files with 215 additions and 144 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Made it less punishing to ATTEMPT to hit a note and miss, rather than let it pass you
### Fixed
- Song desync of you paused and unpaused frequently ([shoutouts SonicBlam](https://github.com/ninjamuffin99/Funkin/issues/37))
- Animation offsets when GF is scared

## [0.2.3] - 2020-12-04
### Added
Expand Down
Binary file modified art/GF_ass_sets.fla
Binary file not shown.
2 changes: 1 addition & 1 deletion assets/data/blammed/blammed-easy.json

Large diffs are not rendered by default.

Binary file modified assets/images/GF_assets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
342 changes: 201 additions & 141 deletions assets/images/GF_assets.xml

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions source/Character.hx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ class Character extends FlxSprite
animation.addByIndices('sad', 'gf sad', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "", 24, false);
animation.addByIndices('danceLeft', 'GF Dancing Beat', [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
animation.addByIndices('danceRight', 'GF Dancing Beat', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);

animation.addByIndices('hairBlow', "GF Dancing Beat Hair blowing", [0, 1, 2, 3], "", 24);
animation.addByIndices('hairFall', "GF Dancing Beat Hair Landing", [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], "", 24, false);
animation.addByPrefix('scared', 'GF FEAR', 24);

addOffset('cheer');
Expand All @@ -53,8 +54,10 @@ class Character extends FlxSprite
addOffset("singRIGHT", 0, -20);
addOffset("singLEFT", 0, -19);
addOffset("singDOWN", 0, -20);
addOffset('hairBlow', 45, -8);
addOffset('hairFall', 0, -9);

addOffset('scared');
addOffset('scared', -2, -17);

playAnim('danceRight');

Expand Down
7 changes: 7 additions & 0 deletions source/FreeplayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ class FreeplayState extends MusicBeatState
songs.push('South');
}

if (StoryMenuState.weekUnlocked[3] || isDebug)
{
songs.push('Pico');
songs.push('Philly');
songs.push('Blammed');
}

// LOAD MUSIC

// LOAD CHARACTERS
Expand Down

0 comments on commit eb017da

Please sign in to comment.