返回介绍

Network.time 时间

发布于 2019-12-18 15:38:08 字数 2254 浏览 940 评论 0 收藏 0

JavaScript => public static var time: double;
C# => public static double time;

Description 描述

Get the current network time (seconds).

获取带当前网络时间(秒)。

This can, for example, be used to compare with the time returned in NetworkMessageInfo. The example script needs to be attached to an object with a network view and have the network view observe the script. It measures the time it took to send a message which synchronizes the X postion value of the objects transform.

这个可以用来,例如,比较NetworkMessageInfo中返回的时间。这个脚本例子需要附加到一个带有网络视图的物体上,并使网络视图监视这个脚本。它计算时间,发送这个物体的同步X位置消息。

JavaScript:

var something : float;
	var transitTime: double;
	function OnSerializeNetworkView (stream : BitStream, 
		info : NetworkMessageInfo) {
		var horizontalInput : float = 0.0;
		if (stream.isWriting) {
			// Sending
			horizontalInput = transform.position.x;
			stream.Serialize (horizontalInput);
		} else {
			// Receiving
			transitTime = Network.time - info.timestamp;
			stream.Serialize (horizontalInput);
			something = horizontalInput;
		}
	}
 
	function OnGUI() {
		GUILayout.Label("Last transmission time: "+ transitTime);
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public float something;
    public double transitTime;
    void OnSerializeNetworkView(BitStream stream, NetworkMessageInfo info) {
        float horizontalInput = 0.0F;
        if (stream.isWriting) {
            horizontalInput = transform.position.x;
            stream.Serialize(ref horizontalInput);
        } else {
            transitTime = Network.time - info.timestamp;
            stream.Serialize(ref horizontalInput);
            something = horizontalInput;
        }
    }
    void OnGUI() {
        GUILayout.Label("Last transmission time: " + transitTime);
    }
}

network

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

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

发布评论

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