Hi! I’ve tried to figure this out on my own using the documentation, but I am still pretty confused and I would like some clarification. I’m trying to figure out what the difference is between:
A. someObj.mainTexture = (Texture)Resources.Load("fooble");
B. someObj.mainTexture = Resources.Load("fooble") as Texture;
and
C. someObj.mainTexture = (Texture)Resources.Load("fooble") as Texture;
All three of the above seem to work the same. Thanks so much, sorry if this is a total n3wb question, but, I am a total n3wb, so, guilty as charged I guess