Legacy Documentation: Version 4.6(go to latest)
Language: English
  • C#
  • JS
  • Boo

Script language

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

Application.streamedBytes

public static var streamedBytes: 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(); }