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);
now my error looks like this

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
now my error looks like this
