Hello Guest

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Takeo Kurita

Pages: [1]
1
Support / Re: Equipped Character Items & Z-Depth
« on: October 11, 2013, 08:05:40 am »
You can just put the different characters on different z-depths, too. Like 0, 1, 2, 3. That way, the mainhand items would be at 0.1, 1.1, 2.1, 3.1, for example.

2
Support / Re: Static Sprite Batching with multiple texture atlases
« on: July 16, 2013, 10:35:09 am »
A cutout shader should work. I will try that and post feedback. Thank you for the fast support.

3
Support / Re: Static Sprite Batching with multiple texture atlases
« on: July 16, 2013, 09:58:23 am »
Does solid mean the complete texture has an alpha value of 255 or no alpha channel at all? As this is an isometric tilemap, the sprites have to use the alpha channel, but the ground sprites only use 0 or 255 as alpha values, so no real alpha blending has to be done. But they are going to overlap, so the ordering has to be right.

4
Support / Static Sprite Batching with multiple texture atlases
« on: July 12, 2013, 09:40:16 am »
Hey,

I want to create an isometric tilemap with 2D Toolkit. As the tile sizes are quite big (to support zooming in), the sprites don't fit into a single texture atlas (of size 2048 x 2048). If I understand correctly, it is possible to have all these sprites in one sprite collection and multiple atlases are built of it. Is it then also possible to use the static sprite batcher for a collection of sprites of different atlases and will it draw them in correct order? (For example using z buffer, as these map sprites overlay, but dont use alpha blending)

Pages: [1]