Search found 2 matches

by Alexandr Archer
Wed Aug 14, 2019 9:29 am
Forum: General Discussion
Topic: Loading bar async
Replies: 1
Views: 1202

Loading bar async

I have this coroutine. Can I add ES3 loading progress to this? Or muliple progresses to all of my loading Lists? private IEnumerator LoadWithBar (AsyncOperation loading) { loadBar.gameObject.SetActive(true); while (!loading.isDone) { loadBar.LoadVisualise(loading.progress); yield return null; } load...
by Alexandr Archer
Wed Aug 14, 2019 9:03 am
Forum: General Discussion
Topic: List or List.ToArray
Replies: 1
Views: 1139

List or List.ToArray

Which is faster to save - List<> or List<> as Array with ToArray method?
I have a lot of lists to save and need to optimize process.