返回介绍

Mathf.Repeat 重复

发布于 2019-12-18 15:38:00 字数 1524 浏览 1132 评论 0 收藏 0

JavaScript => static function Repeat(t: float, length: float): float;
C# => static float Repeat(float t, float length);

Description 描述

Loops the value t, so that it is never larger than length and never smaller than 0.

循环t值,从来不会比length大,并且从不会小于0,取值在0~length之间。

This is similar to the modulo operator but it works with floating point numbers. For example, using 3.0 for t and 2.5 for length, the result would be 0.5. With t = 5 and length = 2.5, the result would be 0.0. Note, however, that the behaviour is not defined for negative numbers as it is for the modulo operator.

这是类似于模运算符,但可以使用浮点数。例如,t=3.0,length=2.5,结果是0.5;t=5,length=2.5,结果是0.0。注意,不过,对于负数是未定义的行为,作为模运算。

JavaScript:

function Update () {
	// Set the x position to loop between 0 and 3
	transform.position = Vector3(
		Mathf.Repeat(Time.time, 3), transform.position.y, transform.position.z);
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Update() {
        transform.position = new Vector3(Mathf.Repeat(Time.time, 3), transform.position.y, transform.position.z);
    }
}

Mathf

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文