A downloadable asset pack

Download NowName your own price

IsoSlice Basic Dungeon Assets contains 70+ sprite sheet assets (.png) ready to use specifically with the "sprite stacking" technique.

Included in this pack:

 20 Wall Tiles
 24 Floor Tiles (Floors, Bridge Parts, Stairs)
 15 Miscellaneous Props (Doors, Crate/Barrel, Lantern, Torch, etc)

These assets have been formatted for easy import into GameMaker , but any environment you work in will also be compatible.

Drag the assets into the IDE and GameMaker will auto-cut the sprite sheets.

A simple sprite stacking effect can be achieved using the technique shown in code below.

CODE:
///@func draw_stack(_sprite, _x, _y, _z, _rot)

function draw_stack(_sprite, _x, _y, _z, _rot) {
    var _frame_num = sprite_get_number(_sprite);
    var _ang_dcos  = dcos(YOUR_CAMERA_ANGLE);
    var _ang_dsin  = -dsin(YOUR_CAMERA_ANGLE);

    for (var _frame = 0; _frame < _frame_num; _frame += 1) {
     var _dist = _frame + _z;
     var _lx = _dist * _ang_dcos;
     var _ly = _dist * _ang_dsin;
     draw_sprite_ext(_sprite, _frame, _x - _lx, _y - _ly, 1, 1, _rot, c_white, 1);
     }
}


Usage:

The assets contained within this pack are free to use in either non-commercial or commercial projects. No credit is required but very welcomed.

Any questions regarding the assets, let me know below!

StatusReleased
CategoryAssets
Rating
Rated 5.0 out of 5 stars
(18 total ratings)
AuthorAquanoctis
Tags2D, assets, dungeon, Dungeon Crawler, GameMaker, Isometric, Pixel Art, Roguelike, Sprites, stack

Download

Download NowName your own price

Click download now to get access to the following files:

Aquanoctis_IsoSliceBasicDungeonAssets.zip 103 kB

Comments

Log in with itch.io to leave a comment.

I only bought this because One Day Better made me cry

I am very tempted to get it as well and I will probably use it for something.

wow

Hey man, I used your assets in my game. Credited you on the Title Screen:

https://nahspinit.itch.io/killer-of-vampire-frogs

Great assets! 

(+1)

The animated chest look like a 3D model ! oO

Great assets !

I can imagine those being used for automatic generated dungeons šŸ‘

Wow very cool 

(+2)

Hi! I love this concept, I never see this before. 
I'm make somethuing with CSS and js
https://codepen.io/dwuster2/pen/WNRedMd

what software u use to made this assets?

(+1)

Hi! Not sure if you figured this out yet, but just in case anyone else is wondering I'll help answer. You could use MagicaVoxel to create the 3D sprite and then type "o slice" in the console to turn it into a layered sprite sheet. Hope this helps :3

Yes!! I made this tool

can somebody tell me how to use it in unity?

Check out this thread. Not sure if they were using Unity but itā€™s in c# so might be of some use. https://itch.io/post/1334054

(+1)

this is awesome! wow!

Woah these are absolutely stunning, cant wait to play around with them!

(+1)

These are just great! One question though, how did you get that perspective you show in the first and third image? It's definitely more than just stacking the flat subimages (not asking for a script, just the general idea). Thanks!

(+1)

Cheers :D Itā€™s a sorta cheat-y and probably not-altogether-sensible method. Sprites are stacked as normal as described above. The camera view height is scaled by a factor, and the distance between each subimage is scaled by the inverse of that factor. Hope that helps!

(1 edit)

Ah so it's essentially "squishing" the viewport. Clever, I like it! Thanks, and keep up the good work!

(1 edit)

Would you be able to go into some more detail on how you "cheated" the perspective? Currently I'm stick with a very top-down look:


And are you also rendering the same frame multiple times to avoid gaps at a more "floor-on" perspective?

(+1)

Looks like youā€™ve got it working as intended. All you need to do now is to make sure your camera is rotating around at the same angle as the chair to complete the illusion. (ā€œYOUR_CAMERA_ANGLEā€ in the code snippet above) And yeah thatā€™s right. The ā€˜lowerā€™ the camera angle, the more times each frame gets drawn to fill in the gaps. This can be quite costly to performance so thatā€™s something to bear in mind.

(1 edit)

For reference, here's my code. It's in C# but it's pretty similar. In this case my z value is zero as is the rot. When I change the rot the sprites just rotate around their center points. I'm struggling on how to make the camera rotate around the same "angle" as the chair.


(2 edits) (+1)

Whatever value you have stored in ā€œangleā€ in your code should also be the z-rotation of the camera. In terms of camera setup Iā€™ve used an orthograhic camera view, where the camera is looking directly down the z-axis (assuming z is your vertical axis) at the ground plane.

In the first gif I have disabled my camera rotation, instead only changing the value of ā€œangleā€ (in your code example) which results in the problem you described. In the second gif, I am rotating the camera around the z-axis, setting itā€™s value equal to ā€œangleā€. ā€œRotā€ is only used to rotate the object around itā€™s own origin, regardless of whatever value ā€œangleā€ might be.

Does this help at all?

Deleted 2 years ago

Hey, is there anyway i could use these in Unreal Engine?

Hi! Iā€™m not as familiar with Unreal Engine but there should be no reason why not. Youā€™d have to implement it differently to Game Maker Studio but the core idea should remain the same. If youā€™re using a fully fledged 3D engine though, you might as well draw each subimage as its own textured polygon, so youā€™d have a 3d model which consisted of a stack of faces so to speak. Hope that makes sense!

Hey, could you by any chance send me the original 3d models (if you have them)? It would make it alot easier :D

These were sprited by hand, so no models unfortunately! However, I found Magicavoxel had a slice export function so any other asset packs I do will include that file as well in the future. Cheers

Epic!