boonzeet submitted a new resource:
Efficient Water Puddle Animations - Water Puddle Animations that reuse the grass animation code for efficiency
Read more about this resource...
Efficient Water Puddle Animations - Water Puddle Animations that reuse the grass animation code for efficiency
View attachment 243
Scripts exist for the bubble animation when walking through puddles, but add a lot of code to tackle a small problem. This can be achieved in V17 with a simple edit of the grass animation code.
Settings
Find this line:
Ruby:PLANT_SPARKLE_ANIMATION_ID = 7
Add this directly below:
Ruby:PUDDLE_ANIMATION_ID = 8 # or whichever animation ID you'd like to use
PField_Field
Find these lines:
Ruby:if...
Read more about this resource...