Using one mesh for multiple objects?

BlitzMax Forums/MiniB3D Module/Using one mesh for multiple objects?

The r0nin(Posted 2008) [#1]
Is it possible to use a single Tmesh object for multiple displayed objects? Since I have several identical objects, I'd like to load just one mesh and texture, then position and rotate it several times to stand for each of the objects. Is this possible, or do I need a separate Tmesh object loaded for each object I'm displaying?


impixi(Posted 2008) [#2]

Is it possible to use a single Tmesh object for multiple displayed objects?



Yes, if your objects use the same texture. Example:




AddMesh is the notable command. See the Blitz3D docs for its limitations.


The r0nin(Posted 2008) [#3]
Thanks!