Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Hi Groupustule, sorry for the late response.

To make stuff from 3D to 2D we caculate the where the plane and the 3D objects intersect, then draw a new object in 2D based on the intersection points using the GL.Draw and some related GL stuff in Unity

How did you calculate the intersection points where the cube and the plane met? I tried using contactPoints.point from collision but that is just inaccurate. Is there a better way to find 4 or 3 intersection points (depending on angle) accurately?

Thanks in advance if you reply :D

We use the triangles of the mesh of the objects. Then calculate the lines where triangles intersect with a plane. Then create new 2D meshes based on the points on the end of the lines.

Sorry for the late respond, and thanks for the love. :D

(1 edit)

Oh ok. Idk how one would check if the triangles of the mesh of objects intersect with planes (Maybe on collision check distance of each triangle from the plane? Idk). But that simply means I am yet to study and research more into things before I can try my hand at it and comprehend that haha. Thanks a lot. Ill treasure your comment till I learn things and try replicating your method (That is if you dont mind). Sounds interesting btw n love you for sharing the info.