-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
was having issues opening in unity 2020.3.33f1


Following this in order to reduce bugs: https://answers.unity.com/questions/1880826/how-to-replace-texture2dreinitialize-with-construc.html
In Unity 2020.3, the Reinitialize() method got replaced with Resize()
change
tex.Reinitialize(newWidth, newHeight);
to like this
tex.Resize(newWidth, newHeight);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

