/// <summary>
 /// Load Asset
 /// </summary>
 public static T Load <T>(this IBundledAssetPath path) where T : Object
 {
     return(BundleManager.Load <T>(path.GetBundleName(), path.GetAssetName()));
 }
 /// <summary>
 /// Load Asset
 /// </summary>
 public T Load <T>() where T : Object
 {
     return(BundleManager.Load <T>(BundleName, AssetName));
 }