Version: 5.4 beta (switch to 5.3)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Removed in version 5.4.0
Use AssetDatabase.LoadAssetAtPath instead (UnityUpgradable) -> * [UnityEditor] UnityEditor.AssetDatabase.LoadAssetAtPath(*)

Resources.LoadAssetAtPath

public static Object LoadAssetAtPath(string assetPath, Type type);

Parameters

assetPath Pathname of the target asset.
type Type filter for objects returned.

Description

Returns a resource at an asset path (Editor Only).

This function always return null in the standalone player or web player. This is useful for quickly accessing an asset for use in the editor only.

Note:
All asset names and paths in Unity use forward slashes, paths using backslashes will not work.
This returns only asset object that is visible in the Project view.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GameObject prefab; void Start() { prefab = (GameObject) Resources.LoadAssetAtPath("Assets/Artwork/mymodel.fbx", typeof(GameObject)); } }

Note that web player is not supported from 5.4.0 onwards.


public static T LoadAssetAtPath(string assetPath);

Parameters

assetPath Pathname of the target asset.

Description

Returns a resource at an asset path (Editor Only).

This function always return null in the standalone player or web player. This is useful for quickly accessing an asset for use in the editor only.

Note:
All asset names and paths in Unity use forward slashes, paths using backslashes will not work.
This returns only asset object that is visible in the Project view.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public GameObject prefab; void Start() { prefab = Resources.LoadAssetAtPath<GameObject>("Assets/Artwork/mymodel.fbx"); } }

Note that web player is not supported from 5.4.0 onwards.