Transitions between tilesets.
-
- Posts: 168
- Joined: Thu Oct 30, 2014 1:56 am
Transitions between tilesets.
I have figured out how to do a pretty seamless transition between the dungeon and mine tilesets. The trick is to use a void tile to clear the area of excess walls and use wall, floor and ceiling entities to build the area.
http://cloud-4.steampowered.com/ugc/538 ... EC7A59494/
You can even do multi level transitions. Here is an example from a 2 tile high cave to a 1 tile high dungeon
http://cloud-4.steampowered.com/ugc/538 ... 2D587B4CB/
http://cloud-4.steampowered.com/ugc/538 ... EC7A59494/
You can even do multi level transitions. Here is an example from a 2 tile high cave to a 1 tile high dungeon
http://cloud-4.steampowered.com/ugc/538 ... 2D587B4CB/
Re: Transitions between tilesets.
Which things do you define in the editor and which things do you do via script?
-
- Posts: 168
- Joined: Thu Oct 30, 2014 1:56 am
Re: Transitions between tilesets.
I did what you see in the screenshots entirely in the editor without any scripting.
Re: Transitions between tilesets.
OK. I guess I am confused then. A square can only have one tile in it so first you lay a void tile in a square, then you lay another tile and this new tile behaves differently by the fact that you had placed a void tile there first?GoldenShadowGS wrote:I did what you see in the screenshots entirely in the editor without any scripting.
-
- Posts: 168
- Joined: Thu Oct 30, 2014 1:56 am
Re: Transitions between tilesets.
The void tile is just a empty blank pitch black floor. Then you add things like mine_floor_01 , mine_ceiling_01 for the floor and ceiling and the correct walls to match up with the other tiles around it.
Re: Transitions between tilesets.
This is awesome, thanks for sharing! Any chance you have figured out a good way to transition the Beach and Forest area's? One thing I noticed is that the forest wall and beach walls don't want to go together... Been trying to work around that myself at the moment.
Re: Transitions between tilesets.
This is the thread I've been looking for and didn't even know it. Thanks for sharing, will be using this technique.
Re: Transitions between tilesets.
Strangely, i tried with mine_wall_01_1 and i obtain a weird thing but with castle_wall_01_3 it works perfectly. Any idea ?
- QuintinStone
- Posts: 72
- Joined: Sat Nov 01, 2014 9:58 pm
Re: Transitions between tilesets.
Because mine_wall_01 is a weird thing. It doesn't act like other walls. If you put it on the east edge of a tile, it'll make a wall that extends from the center of the tile to the east to the center of its own tile.Faerghail wrote:Strangely, i tried with mine_wall_01_1 and i obtain a weird thing but with castle_wall_01_3 it works perfectly. Any idea ?
Crypt of Zulfar
Re: Transitions between tilesets.
What tile must i use to make mine wall like the example of the first post ?