Display coordinates???

Blitz3D Forums/Blitz3D Beginners Area/Display coordinates???

NerdyBrendan(Posted 2010) [#1]
Hi... I want to position stuff in my game to places on the xyz axis but o don't know to display what position I am at on the x y and z axis

If anyone could help, that would be great! Thanks


_PJ_(Posted 2010) [#2]
Use this to get the X coordinate:

EntityX(Entity, Global)

and similarly EntityY and EntityZ


stanrol(Posted 2010) [#3]
yeah, entityx,y,z


CodeOrc(Posted 2010) [#4]
my 2 cents...

text 10,10, "My X, Y, Z:" +EntityX(player_model) +"  ~" EntityY(player_model) +"  ~" +EntityZ(player_model)


hope that helps ^^