• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Polished Floors

Resource Polished Floors 2022-12-24

TechSkylander1518 submitted a new resource:

Polished Floors - Terrain tag for tiles with reflections that don't ripple.

View attachment 14572
Script to make ripples a property of terrain tags separate from shows_reflections, for reflective floors.​

Code​

Paste as a new script section above Main, or download as a Plugin here.
Ruby:
Expand Collapse Copy
module GameData
  class TerrainTag
    attr_reader :ripples
   
    alias oldinitialize initialize
    def initialize(hash)
      oldinitialize(hash)...

Read more about this resource...
 
Thank you so much for sharing this.

I love this kind of details.

Question: Is there a way for the other events to be reflected as well to avoid the vampire effect on the NPCs?
 
Just because I ran into this issue today: to anyone using v21, if you want the script to be compatible all you need to do is replace @rsprite with @parent_sprite wherever it appears!
 
Back
Top