2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Unityでファイルをdrag&dropしてファイルパスを取得する

Posted at

gitでダウンロードする。
https://github.com/Bunny83/UnityWindowsFileDrag-Drop

filepath_zip.png

それを解凍して、その中にあるファイルをAssetにDrag&Drop
filepath_asset.png

FileDragAndDrops.csを以下のようにアタッチする(ctrl + s で上書きしちゃって良い)。

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI; //追加
using System.Linq;
using B83.Win32;


public class FileDragAndDrop : MonoBehaviour
{
    public Text display; //インスペクタで出力するUI-Textを登録

    List<string> log = new List<string>();
    void OnEnable ()
    {
        // must be installed on the main thread to get the right thread id.
        UnityDragAndDropHook.InstallHook();
        UnityDragAndDropHook.OnDroppedFiles += OnFiles;
    }
    void OnDisable()
    {
        UnityDragAndDropHook.UninstallHook();
    }

    void OnFiles(List<string> aFiles, POINT aPos)
    {
        // do something with the dropped file names. aPos will contain the 
        // mouse position within the window where the files has been dropped.
        string str = "Dropped " + aFiles.Count + " files at: " + aPos + "\n\t" +
            aFiles.Aggregate((a, b) => a + "\n\t" + b);
        // pathはaFiles[0]の中に格納されてる
        // なぜかDebug出力されない?
        Debug.Log(str);
        // log.Add()で画面の左上に出力される
        log.Add(str);

        //UI-Text に出力
        if (display != null)
        {
            display.text = ("Dropped " + aFiles.Count + " files at: " + aPos + "\n" +
                aFiles.Aggregate((a, b) => a + "\n" + b));
        }
    }
    // 実行中はデバッグログ出ないからpathを表示する用
    private void OnGUI()
    {
        if (GUILayout.Button("clear log"))
            log.Clear();
        foreach (var s in log)
            GUILayout.Label(s);
    }
}

HierarchyでCreate Emptyする(GameObjectという名前で出来上がる)。
filepath_empty.png

GameObjectに、アセットしたスクリプトファイルをAdd Componentする。
filepath_addcomponent.png

UnityでFile → Build SettingsでStandaloneに設定してBuild And Runを押す。
filepath_file.png


filepath_buildandrun.png

これで全画面でアプリが動くから、そこにファイルDorag&Dropすればパスが表示される。
filepath_result.png

ファイルのパスはaFiles[0],ドロップしたときの座標はaPosに格納されています。
また,アプリを実行しないとファイルのドロップ判定がされないようなので,更新するごとにCtrl+Bで実行してください.

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?