ユーザ用ツール

サイト用ツール

wiki:unity:tips:074

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

概要

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

// Assets へのパス
Debug.Log( Application.dataPath );
 
//実行中に保存されるファイルへのパス
Debug.Log( Application.persistentDataPath );
 
//一時領域のパス
Debug.Log( Application.temporaryCachePath );
 
//ストリーミングアセットのパス
Debug.Log( Application.streamingAssetsPath );
Permalink wiki/unity/tips/074.txt · 最終更新: 2014/11/13 09:12 (外部編集)

oeffentlich