2
« on: 2008-01-28, 01:41:23 PM »
Well, unfortunately I have chosen the most complicated place to use this. I have an idea of how to make this simpler, but it involves modifying the source code (and I am not very good at programming). Anyway, first I will explain my problem then I will give my idea.
In my game there are tiles which change solidity whenever the player presses a certain key. The level I want to wrap around vertically will be composed entirely of those tiles (Basically at any point in the game, the player can send himself and all the other sprites into freefall by making the ground unsolid). By making the map wrap-around vertically, the player can stop himself at any time by making the ground solid again. So, eliminating the sprites isn't an option, and there is a very wide area to cover.
I played around with the view layout code just a little bit and found that I could change the size of the views. I assume that I could also change what the view was of. Couldn't a function be created to display a view from one plan within the rectangle of another plan (did I explain that well enough)? Then a plan could be placed under the bottom of the map to display the top of the map and vice versa.
Of course, such a function could also be used for several other interesting effects.