当前位置:   article > 正文

Unity 提取编辑器Assets下文件夹或文件绝对路径_unity 相对路径转换绝对路径

unity 相对路径转换绝对路径

在这里插入图片描述
在这里插入图片描述
复制的路径会保存到操作系统的剪贴板中,使用Ctrl + V 即可粘贴。

using UnityEditor;
using UnityEngine;

namespace ZYF
{
    public class ProjectCopyPath : MonoBehaviour {
        [MenuItem("Assets/复制绝对路径", priority = 19)]
        static void CopyTransPath()
        {
            string path = "";
            if (Selection.assetGUIDs != null && Selection.assetGUIDs.Length == 1)
            {
                path = AssetDatabase.GUIDToAssetPath(Selection.assetGUIDs[0]);
            }
            //去除开头
            string pAssets = Application.streamingAssetsPath.Replace("StreamingAssets", "");
            pAssets = pAssets.Replace("/Assets","");
            string fPath = pAssets + path;
            GUIUtility.systemCopyBuffer = fPath;
            Debug.Log("<color=#ff00ff><size=25>已复制绝对路径:</size></color>"+fPath);
        }
	
    } 

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/89628
推荐阅读
相关标签
  

闽ICP备14008679号