Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Application.streamedBytes

static var streamedBytes: int;
static int streamedBytes;
static streamedBytes as int

Description

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

In the webplayer this returns the number of compressed bytes downloaded so far. In standalone player or the editor this always returns zero.

See Also: GetStreamProgressForLevel function.

	// Prints to a GUIText how many bytes we have streamed.

function Update() { guiText.text = "Streamed Bytes: " + Application.streamedBytes.ToString(); }

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Update() {
        guiText.text = "Streamed Bytes: " + Application.streamedBytes.ToString();
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Update() as void:
		guiText.text = ('Streamed Bytes: ' + Application.streamedBytes.ToString())