What is the difference?

Blitz3D Forums/Blitz3D Programming/What is the difference?

Yue(Posted 2015) [#1]
PositionEntity
PositionMesh


??


Floyd(Posted 2015) [#2]
A mesh is a collection of numbers which represent co-ordinates of vertices.

"PositionMesh mesh, x,y,z" changes these numbers by adding x,y,z to all co-ordinates.
The name is misleading. ModifyMesh would be more descriptive.

PositionEntity does not change a mesh at all. It just tells the 3D engine where to place something in the 3D world.


Yue(Posted 2015) [#3]
Thanks You :)


Matty(Posted 2015) [#4]
A simple use for positionmesh is often combining it with addmesh in order to build a larger mesh from components.