Hello
i have problem with show array of list in inspector
Hey,
Show some code and we might help you ![]()
public List[ ] helps=new List[10];
Unity can only serialise simple collections, ergo a regular list or array. Beyond that - Jagged arrays, multi-dimensional arrays, etc - Unity can’t serialise.
You’ll either need to use the ISerializationCallBackReciever interface methods + your own property drawer to serialise data in a way Unity can handle, oooor use a plugin like Odin Inspector which can let you serialise a lot more than Unity normally can.
1 Like