I’m planning on making a 2D UV drawing tool that quickly updates the texture on a 3D model next to it.
Other than re-uploading the texture on the GPU like this, is there a more efficient way?
bitmapTexture.invalidateContent();
(material as TextureMaterial).texture = bitmapTexture;
Any other attempts simply did not update the texture.
Thanks!