Spline Package in Unity:
- Janice
- Apr 20, 2024
- 1 min read
The spline can be used in camera movement/ AI or game object movement path/ trace of VFX/ mesh generate
Mesh generates in unity:
Generating mesh in unity just using scripts is about drawing out several planes and putting them together instead generate as a cube object.Â
This requires:Â
Vertex position = Red DotsÂ
Triangle Indices = Vertex numbers’ order to form triangles in a square (which will be (0, 3, 1) and (1, 3, 2)Â
Normal Vector = Vector direction to stretch the planeÂ
UV Coordinate = Texture render vectorÂ


