概要
using System.IO; using UnityEditor; using UnityEngine; public static class Example { [MenuItem( "Tools/Hoge" )] private static void Hoge() { Debug.Log( Path.GetFullPath( "Packages/com.cysharp.unitask/Runtime/UniTask.asmdef" ) ); } }
Path.GetFullPath を使用することでアセットの絶対パスを取得できます