I have a dictionary on a C# Unity file, of type Dictionary<string,IEnumerator> dic. I'd like to select a random string, match it to an enumerator, and run the coroutine.
The tricky part is my dictionary is located in a different script, so I'm not really sure how to do that.
I did try passing in the Enumerator's string but that didn't work + I have to pass parameters.
I also tried accessing the enumerators by directly accessing the property keys as such:
StartCoroutine(File2.enumerator1()), where File2 is my other file and enumerator1 is 1 of the random enumerators I'm trying to call, but that won't be too effective because Idk which enumerator is selected, and thus can't specify the property..
Any ideas?
thx
I assume you have access to, and the ability to modify the code relating to the Dictionary? If so, you could try another approach. This is what your second file could like like (edited to demonstrate my reason for using a
Func
):You'd then call that in your first file like this:
As suggested below, a simplified version could look like this:
And be called the same way, but with no argument being passed.