if animal.texture == SKTexture(imageNamed: "cowTexture") {
//do stuff
}
Apparently, the second half of my if statement above is creating a new texture which means the condition is never true. I did come across an answer to this problem using an enum and a property observer, but surely there's a more efficient way?!? Thanks!
userDatais for - Knight0fDragon