Skip to content

Instantly share code, notes, and snippets.

@atlass-dev
Created April 11, 2021 12:04
Show Gist options
  • Save atlass-dev/28e14d4661d9eeede25aeb1ced7d12f9 to your computer and use it in GitHub Desktop.
Save atlass-dev/28e14d4661d9eeede25aeb1ced7d12f9 to your computer and use it in GitHub Desktop.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Coin : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.Rotate(0, 40 * Time.deltaTime, 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment