|
Hey guys, just a small issue with a GUIContent array. It would seem that it doesn't like to be re-sized. Here is my code: So I'm resizing it to the value in a different array then adding the names of things in another array to the tool tips of the GUIContent array. When I run this however I'm give this error. That points to the line inside the for loop. If I remove the resizing of the array and re-size it manually it works no problem. I found adding a yield between the re-size and the loop helped but only about 30% of the time. Cheers.
(comments are locked)
|
|
Arrays can't be resized- what you are doing there is creating an entirely new array and replacing the old one! The problem is that by creating the array of GUIContents, all it does is create a number of 'GUIContent' shaped 'holes'- not actual GUIContent objects. Assuming that you are going to change everything about the GUIContents, you need to use the line instead. Remember to set the rest of the GUIContent at the same time, since all three of its members will be null. Thanks! When I said re-sized I was meaning re-creating, I knew that part. The funny thing is that I've done the above method for Transform arrays, etc with no issues what so ever. Cheers.
Jan 08 '12 at 10:56 AM
Tides
(comments are locked)
|
