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); } }