↧
Answer by Fattie
Consider ... if I understand what you are trying to do, get 2DToolkit and, I believe, your job is instantly finished. You can go home to dinner!!
View ArticleAnswer by heaversm
You can install this script which will add a menu command to create a quad. Save it as CreatePlane.cs and put it in an Assets > Editor folder. using UnityEngine; using UnityEditor; using...
View ArticleAnswer by alucardj
This is an example for swapping the UV's of the mesh vertices. #pragma strict public var scrollSpeed : float = 0.1; function Update() { SwapUVs(); } function SwapUVs() { var mesh : Mesh =...
View Article