Hello, I have been looking for a way to use Lists with udonSharp for several days now.
In the official documentation I don’t see anything mentioning Lists, all I see are Static Arrays.
There are people asking the same questions as me but no answers.
Here is an example that is supposed to work without UdonSharp.
Import dependances : using System.Collections.Generic;
Example : public List<GameObject> ListOfPlayerGameObject = new List<GameObject>();
But in the console I instantly get this error.
System.ArgumentException: Cannot resolve generic arguments on non-method expression
So I was just wondering that maybe it’s not possible to use Lists.
Which means that the dynamic arrays on Udon Sharp don’t work and I find that a real shame.