Skip to content

Commit

Permalink
v2.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
smell-of-curry committed Feb 16, 2024
1 parent ff30800 commit 938dd5a
Show file tree
Hide file tree
Showing 21 changed files with 3,912 additions and 39 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**Update v2.9.2**
**Update v2.9.4**

- Added new Poke dollars glyph
- The top UI bar now displays how much poke dollars you have
- New custom door model
- fixed apricorn doors
- Added Beldum, Metang, and Metagross
- Added Max revive and revive
- Pokémon animation controllers have been updated to just look if the Pokémon is swimming to play animation
- Pokémon animation controllers have been updated to not trigger fly animation if jumping
4 changes: 2 additions & 2 deletions animation_controllers/pokemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"walking": "query.modified_move_speed >= 0.01 && query.is_on_ground && !query.is_in_water"
},
{
"swimming": "query.modified_move_speed >= 0.01 && q.is_in_water"
"swimming": "query.is_swimming"
},
{
"flying": "query.modified_move_speed >= 0.01 && q.can_fly && !query.is_on_ground && !query.is_in_water"
"flying": "query.modified_move_speed >= 0.01 && q.can_fly && !query.is_on_ground && !query.is_in_water && !query.is_jumping"
},
{
"sleeping": "q.is_sleeping"
Expand Down
Loading

0 comments on commit 938dd5a

Please sign in to comment.