Quick question. (I could not find documentation about this anywhere)
When you do this:
Texture2D t1;
t1 = content.Load<Texture2D>("some texture");
Texture2D t2;
t2 = t1;
Does the link create a link or actually copy the texture?
I would like to know this, so I can take this into account when implementing related things.
source
share