assetPath | Pathname of the target asset. |
type | Type filter for objects returned. |
Returns a resource at an asset path (Editor Only).
var prefab : GameObject; function Start () {
prefab = Resources.LoadAssetAtPath("AssetsArtwork
mymodel.fbx", GameObject);
}
using UnityEngine;
using System.Collections;
public class Example : MonoBehaviour {
public GameObject prefab;
void Start() {
prefab = Resources.LoadAssetAtPath("AssetsArtwork
mymodel.fbx", typeof(GameObject));
}
}
import UnityEngine
import System.Collections
public class Example(MonoBehaviour):
public prefab as GameObject
def Start() as void:
prefab = Resources.LoadAssetAtPath('AssetsArtwork
mymodel.fbx', typeof(GameObject))
assetPath | Pathname of the target asset. |
Returns a resource at an asset path (Editor Only).
var prefab : GameObject; function Start () {
prefab = Resources.LoadAssetAtPath.<GameObject>("AssetsArtwork
mymodel.fbx");
}
using UnityEngine;
using System.Collections;
public class Example : MonoBehaviour {
public GameObject prefab;
void Start() {
prefab = Resources.LoadAssetAtPath<GameObject>("AssetsArtwork
mymodel.fbx");
}
}
import UnityEngine
import System.Collections
public class Example(MonoBehaviour):
public prefab as GameObject
def Start() as void:
prefab = Resources.LoadAssetAtPath[of GameObject]('AssetsArtwork
mymodel.fbx')