projection test for gallery space w/ chair using squeezed & gnomic projection.
 
 
 
 

12 lines
263 B

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Playables;
public class RotationScript : MonoBehaviour
{
private void FixedUpdate()
{
this.transform.Rotate(0, Time.fixedDeltaTime * 50, 0);
}
}