074 Assetsなどスクリプトで取得できるパスについて

概要

Applicationクラスを通して各種パスを取得出来ます。

// Assets へのパス
Debug.Log( Application.dataPath );
 
//実行中に保存されるファイルへのパス
Debug.Log( Application.persistentDataPath );
 
//一時領域のパス
Debug.Log( Application.temporaryCachePath );
 
//ストリーミングアセットのパス
Debug.Log( Application.streamingAssetsPath );