Hey guys, so I’m trying to learn the basics and this youtube video had me use this code to create a spinning coin. I copied it and now the coin rotates but I feel like it is rotating much faster than on the video and more importantly, faster than I want. Can someone please explain how to make it slower than 1?
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CoinRotation: MonoBehaviour
{
public int rotateSpeed = 1;
void Update()
{
transform.Rotate(0, rotateSpeed, 0, Space.World);
}
}