• 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.
  • Congratulations to all of the game jam participants! 🥳 The winners have all been decided and announced.
    If you haven't yet, check out the entries for Eevee Expo's Game Jam here!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!

Ghosting Images V21.1

InTheLight

Master Of Games
Member
Joined
Apr 23, 2023
Posts
16
Hey so I have had some issues with ghosting images or images that will cling to the screen if I get into a battle (for some reason the bug contest battles don't seem to do it...) well anyway for me it clears its-self up in about 10 seconds but for Joi Play players it travels with them until they reset the game which makes the game well unplayable for them.

I did add a temp fix that looks like this

Ruby:
Expand Collapse Copy
class Scene_Map
  alias __ghosting_key_menu_update update
  def update
    __ghosting_key_menu_update

    if Input.triggerex?(82)   # R key
        @spriteset&.dispose
        instance_variable_set(:@spriteset, nil)

        RPG::Cache.clear  # Just in case
        GC.start   

        instance_variable_set(:@spriteset, Spriteset_Map.new)
        $game_map.need_refresh = true

        pbMessage(_INTL("Full reset and GC triggered."))
      end
    end

but that just resets the sprites and seems to still relock them keeping them (or new ones) ghosting to the screen
If someone has an Idea for a fix let me know (I am using Essentials CSG v21.1 so a lot of my UI is different but its essentially pretty close to v21.1)
 
Back
Top