bbmario Posted November 15, 2015 Share Posted November 15, 2015 Are there any examples of isometric features in the Phaser framework? I'm working on a small city builder prototype and i was curious about it. Right now, my city builder sucks and it's 2D, like classic simcity. Link to comment Share on other sites More sharing options...
jmp909 Posted November 15, 2015 Share Posted November 15, 2015 http://rotates.org/phaser/iso/ http://evilmousestudios.com/optimizing-javascript-games/ http://www.html5gamedevs.com/topic/18402-phaser-isometric-move-player-to-tile-onclick/?p=104383 Dread Knight 1 Link to comment Share on other sites More sharing options...
bbmario Posted November 16, 2015 Author Share Posted November 16, 2015 I've seen that plugin, but it seems like a bazooka to kill a fly. There's too many features and i was looking for some basic projection examples. Link to comment Share on other sites More sharing options...
jmp909 Posted November 16, 2015 Share Posted November 16, 2015 Most people are using rotates plugin. Otherwise Apply the logic from here for example maybe https://melkybee.wordpress.com/2013/02/28/creating-an-isometric-world-with-easeljs/ you can sort your group on .z Link to comment Share on other sites More sharing options...
WombatTurkey Posted November 16, 2015 Share Posted November 16, 2015 Arn't the isometric maps on D2, D3, and Path of Exile like 112312312x1231313 in size? If you really build them using Phaser (Canvas Essentially) and are using 32x32 pixel size tiles.... Wouldn't that be a pain in the ass to load those assets (for JS to render all the 0,0,0,0,0,0's)? For example, try creating a large 3000x3000 world in Tiled using 32x32 tiles.. Even the program hangs This is why I just do it with a large tilesprite sprite and have large sprites that can be up to 400x400 and just use a clickable floor map, with layers ontop to act as objects (Done with Phaser), and loads times are perfect and maps are just as big as D2's. Although, I lose real A-Star path-finding if you do that way, but meh. Just use p2 physics and have your player collide with the objects, Although, would look funny if your character trying to path find around a huge 400x400 tile LOL. Phaser is just too fun guys Link to comment Share on other sites More sharing options...
Recommended Posts