-
-
Notifications
You must be signed in to change notification settings - Fork 90
Examples
PhaxeNor edited this page Apr 9, 2020
·
15 revisions
using UnityEngine;
using UdonSharp;
public class RotatingCubeBehaviour : UdonSharpBehaviour
{
private void Update()
{
transform.Rotate(Vector3.up, 90f * Time.deltaTime);
}
}