I have massive with massive of sprites. but I am’t seeing this massive in inspector from unity.
I want drop there my sprite before start game and one massive not suitable for me.
When you say “massive” do you mean “array”?
Unity does not support arrays-of-arrays (jagged arrays) in the inspector.
2 Likes
okey, thank you
If really necessary you can probably workaround the lack of jagged array support by wrapping one of the array levels in a struct. That is array of structs where struct has array as only field.