メインの Web ストリームから今までダウンロードしたバイト数を返します(読み取り専用)
WebPlayer ではこれまでにダウンロードされた圧縮したバイト数を返します。
スタンドアロンまたはエディターではこれは常に 0 を返します。
関連項目: GetStreamProgressForLevel 関数 .
// Prints to a GUIText how many bytes we have streamed.
function Update() { GetComponent.<GUIText>().text = "Streamed Bytes: " + Application.streamedBytes.ToString(); }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Update() { GetComponent<GUIText>().text = "Streamed Bytes: " + Application.streamedBytes.ToString(); } }