Sin descripción
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class Rotate : MonoBehaviour
  5. {
  6. void Update()
  7. {
  8. transform.Rotate(new Vector3(0f, 10f, 0f) * Time.deltaTime);
  9. }
  10. }