blob: 62f201d13e36826ceddc37aabb465c378292f78a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using UnityEngine;
namespace DitzelGames.FastIK
{
public class SampleRotator : MonoBehaviour
{
void Update()
{
//just rotate the object
transform.Rotate(0, Time.deltaTime * 90, 0);
}
}
}
|