↧
Answer by robertbu
Try this: using UnityEngine; using System.Collections; public class NoRotation : MonoBehaviour { private Quaternion q; void Start () { q = transform.rotation; } void Update () { transform.rotation = q;...
View ArticleAnswer by MutualTeats
If I got your question right you want to rotate the gameObject, but not the camera (it should be fixed like in Pokémon Colosseum or Diablo). That means that you'll need to use one script for the...
View Article