Skip to content

Commit

Permalink
make Bootstrap error message more suggestive
Browse files Browse the repository at this point in the history
  • Loading branch information
homuler committed Sep 1, 2023
1 parent 710cd6d commit 285569e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Assets/MediaPipeUnity/Samples/Common/Scripts/Bootstrap.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ private IEnumerator Init()
AssetLoader.Provide(new LocalResourceManager());
break;
#else
Debug.LogError("LocalResourceManager is only supported on UnityEditor");
Debug.LogError("LocalResourceManager is only supported on UnityEditor." +
"To avoid this error, consider switching to the StreamingAssetsResourceManager and copying the required resources under StreamingAssets, for example.");
yield break;
#endif
}
Expand Down

0 comments on commit 285569e

Please sign in to comment.