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.

EditorUtility.FormatBytes

public static function FormatBytes(bytes: int): string;

Description

Returns a text for a number of bytes.

	// prints "100 bytes"
	print (EditorUtility.FormatBytes(100));

// prints "2.0 KB" print (EditorUtility.FormatBytes(2048));