diff options
Diffstat (limited to 'JamHelper/Assets/JamUtils/FastIK/Scripts/Sample/SampleSinMover.cs')
-rw-r--r-- | JamHelper/Assets/JamUtils/FastIK/Scripts/Sample/SampleSinMover.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/JamHelper/Assets/JamUtils/FastIK/Scripts/Sample/SampleSinMover.cs b/JamHelper/Assets/JamUtils/FastIK/Scripts/Sample/SampleSinMover.cs deleted file mode 100644 index 0607082..0000000 --- a/JamHelper/Assets/JamUtils/FastIK/Scripts/Sample/SampleSinMover.cs +++ /dev/null @@ -1,21 +0,0 @@ -using UnityEngine; - -namespace DitzelGames.FastIK -{ - public class SampleSinMover : MonoBehaviour - { - public Vector3 Dir; - public Vector3 Start; - - private void Awake() - { - Start = transform.position; - } - - void Update() - { - //just move the object from a to b and back - transform.position = Start + Dir * Mathf.Sin(Time.timeSinceLevelLoad); - } - } -} |