12 lines
159 B
C#
12 lines
159 B
C#
using UnityEngine;
|
|
|
|
public class RotatingLogo : MonoBehaviour
|
|
{
|
|
public Vector3 speed;
|
|
|
|
void Update()
|
|
{
|
|
transform.Rotate(speed);
|
|
}
|
|
}
|