• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Our weekly protagonist poll is now up! Vote for your favorite Conquest protagonist in the poll by clicking here.
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

[Other Question] Removing default reflections

_pheebee

Gosh! What's poppin'?
  • 528
    Posts
    6
    Years
    [PokeCommunity.com] Removing default reflections


    The blue you see is a Panorama the bottom layer is seethrough, and it causes this reflection but I don't want it.
    How would I get rid of it?
     
    Is there a place in the code to adjust the Y coordinate of the reflection? To just make it appear offscreen where no one can see it? Would that be easier than disabling it entirely?
     
    Actually! I've just found that using the BridgeOn script gets rid of reflections. I have the follow Pokémon code from Mej71 though, so I'm not sure if that's a part of it, but it might be worth a try!
     
    in the Sprite_Reflection section of the script, at the end just before :

    @sprite.src_rect = @rsprite.src_rect
    end
    end
    end


    you can add :

    if $game_map.map_id == 42
    @sprite.visible = false
    end


    replace 42 by the id of the map you use your panorama on.
     
    Back
    Top