public void Start(ProvideHandle provideHandle, VirtualAssetBundle bundle)
 {
     m_PI = provideHandle;
     provideHandle.SetWaitForCompletionCallback(WaitForCompletionHandler);
     m_RequestOperation            = bundle.LoadAssetAsync(m_PI, m_PI.Location);
     m_RequestOperation.Completed += RequestOperation_Completed;
 }
 public void Start(ProvideHandle provideHandle, VirtualAssetBundle bundle)
 {
     m_PI = provideHandle;
     m_RequestOperation            = bundle.LoadAssetAsync(m_PI.Type, m_PI.Location);
     m_RequestOperation.Completed += RequestOperation_Completed;
 }