Manual     Reference     Scripting  
  
Scripting > Runtime Classes > TextAsset Switch to Component   
  • Menu
  • Overview
  • Runtime Classes
  • Attributes
  • Enumerations
  • Editor Classes
  • Enumerations
  • History
  • Index
  • TextAsset
  • All Members
  • Variables
  • bytes
  • text
  • Inherited Variables
  • hideFlags
  • name
  • Inherited Functions
  • GetInstanceID
  • Inherited Class Functions
  • Destroy
  • DestroyImmediate
  • DontDestroyOnLoad
  • FindObjectOfType
  • FindObjectsOfType
  • Instantiate
  • operator !=
  • operator ==
  • operator bool

TextAsset.text  

var text : string

Description

The text contents of the .txt file as a string. (Read Only)

var asset : TextAsset;
function Start () {
print(asset.text);
}