コード例 #1
0
 /// <summary>
 /// Performs <see cref="IScriptManager.UnloadAllScripts"/> followed by <see cref="IScriptManager.LoadAllScriptsAsync"/>.
 /// </summary>
 public static async UniTask ReloadAllScriptsAsync(this IScriptManager manager)
 {
     manager.UnloadAllScripts();
     await manager.LoadAllScriptsAsync();
 }