Mathf
- Abs
- Acos
- Approximately
- Asin
- Atan2
- Atan
- CeilToInt
- Ceil
- Clamp01
- Clamp
- ClosestPowerOfTwo
- Cos
- Deg2Rad
- DeltaAngle
- Epsilon
- Exp
- FloorToInt
- Floor
- Infinity
- InverseLerp
- IsPowerOfTwo
- LerpAngle
- Lerp
- Log10
- Log
- Max
- Min
- MoveTowardsAngle
- MoveTowards
- NegativeInfinity
- NextPowerOfTwo
- PingPong
- PI
- Pow
- Rad2Deg
- Repeat
- RoundToInt
- Round
- Sign
- Sin
- SmoothDampAngle
- SmoothDamp
- SmoothStep
- Sqrt
- Tan
Mathf.Repeat 重复
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.
循环数值t,0到length之间。t值永远不会大于length的值,也永远不会小于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);
}
}
最后修改:2011年2月23日 Wednesday 22:10