Let’s say I have a BitmapTexture made from a 512x512 BitmapData.
I want to perform tweening effects on the individual .alpha property of 50 Meshes’ TextureMaterials which use the aforementioned BitmapTexture. How I assume I should do this is put the BitmapTexture in the AssetLibrary and then use it to create the TextureMaterials for those 50 Meshes. Is there any better way to do it than this?
(I ask because I’m about to make the change from all 50 Meshes sharing the same TextureMaterial in order to tween them individually and I want to do this right…)