Version: 2023.2
언어: 한국어
Method group is Obsolete

Application.streamedBytes

매뉴얼로 전환
Obsolete public static int streamedBytes ;

설명

How many bytes have we downloaded from the main unity web stream (Read Only).

In the Web Player (obsolete now), this property returns the number of compressed bytes downloaded so far. It always returns zero.

Additional resources: GetStreamProgressForLevel function.

using UnityEngine;
using UnityEngine.UI;

class Example : MonoBehaviour { Text byteDisplay; void Start() { byteDisplay = GetComponent<Text>(); }

// Prints to a Text UI how many bytes we have streamed. void Update() { byteDisplay.text = "Streamed Bytes: " + Application.streamedBytes.ToString(); } }

From Unity version 5.4.0 onwards, webplayer support was discontinued.