↧
Answer by hema
You must install the JDK and set the JAVA_HOME environment variable to C:\Program Files\Java\jdk1.7.0_45 You must also add the jdk bin folder to your PATH: C:\Program Files\Java\jdk1.7.0_45\bin You...
View ArticleAnswer by hema
Have found a way using Quaternion.Euler. Below is the code: m_Rotation += 1.0f; transform.rotation = Quaternion.Euler(new Vector3(0,0,-m_Rotation * m_Speed)); if(m_Rotation == 360) { m_Rotation = 0; }...
View Article