SteamVR_Settings.GetResourcePath C# (CSharp) Method

GetResourcePath() private method

private GetResourcePath ( ) : string
return string
    string GetResourcePath()
    {
        var ms = MonoScript.FromScriptableObject(this);
        var path = AssetDatabase.GetAssetPath(ms);
        path = Path.GetDirectoryName(path);
        return path.Substring(0, path.Length - "Editor".Length) + "Textures/";
    }