static function Repeat (t : float, length : float) : float
Description
Loops the value t, so that it is never larger than length and never smaller than 0.
This is similar to the modulo operator but it works with floating point numbers.
using UnityEngine;
using System.Collections;
public class example :
MonoBehaviour {
void Update() {
transform.position =
new Vector3(
Mathf.Repeat(
Time.time, 3), transform.position.y, transform.position.z);
}
}