Unity加载AB资源

时间:2023-03-09 14:38:26
Unity加载AB资源
using System.Collections;
using System.Collections.Generic;
using UnityEngine; public class AssetBundleLoad : MonoBehaviour { void Start () { AssetBundle ab = AssetBundle.LoadFromFile(Application.dataPath + "/StreamingAssets/player1.ab"); GameObject player = ab.LoadAsset<GameObject>("Necromancer"); GameObject.Instantiate<GameObject>(player, Vector3.zero, Quaternion.identity);
}
}