Will a 3D Dancing Line Game work?
-
I have been thinking of making a Music Game like Dancing Line ever since I got into coding and since I have chosen here this app would be the best place to do it, (for most of you who don’t know dancing line is a music game that was made by Cheetah Mobile in 2016) most dancing line games was made using unity so will it work here? I have seen Frost’s take on doing a 3-D dancing line called World Line so it is possible, I just gotta know how to make a game similar to that is why I’m here to ask.
-
@Ethan-D Yes, you could make a dancing line game, but it won't actually be 3D. hyperPad is only a 2D game engine, but you can fake 3D by using isometric graphics.
You'll have to take account of the z order of objects - objects with a higher z order will render over objects with a lower z order. For example, the floor could have 0 as the z order whereas the cube could have 1 as the z order; the cube will be on top of the ground. You can treat the z order as the vertical position in 3D space and it should do the trick.