- Joined
- Jul 28, 2013
- Messages
- 107
- Reaction score
- 26
- First Language
- Turkish
- Primarily Uses
- RMVXA
Well, I'm using a very old and simple code for showing my pictures with [FIXED] tag. But whenever I reach the loop point on my map (X and Y directions) the picture I'm using for adding clouds is disappearing. How can I make the picture fully connected with X and Y directions?
The issue with graphics:
When I go one square up the clouds disappears.
The issue with graphics:
When I go one square up the clouds disappears.
And this is the code I'm using. (I believe so.)class Sprite_Picture < Sprite
def update
update_bitmap
update_origin
if @picture.name.include?("[FIXED]")
self.x = 0 - $game_map.display_x * 32
self.y = 0 - $game_map.display_y * 32
else
update_position
end
update_zoom
update_other
end
end

