entity - name of entity that will have yaw angle returned
global (optional) - true if the yaw angle returned should be relative to 0 rather than a parent entity's yaw angle. False by default. |
Returns the yaw angle of an entity.
The yaw angle is also the y angle of an entity. |
; EntityYaw Example
; ----------------- Graphics3D 640,480 SetBuffer BackBuffer() camera=CreateCamera() light=CreateLight() cone=CreateCone( 32 ) PositionEntity cone,0,0,5 While Not KeyDown( 1 ) pitch#=0 yaw#=0 roll#=0 If KeyDown( 208 )=True Then pitch#=-1 If KeyDown( 200 )=True Then pitch#=1 If KeyDown( 203 )=True Then yaw#=-1 If KeyDown( 205 )=True Then yaw#=1 If KeyDown( 45 )=True Then roll#=-1 If KeyDown( 44 )=True Then roll#=1 TurnEntity cone,pitch#,yaw#,roll# RenderWorld Text 0,0,"Use cursor/Z/X keys to turn cone" ; Return entity yaw angle of cone Text 0,20,"Yaw: "+EntityYaw#( cone ) Flip Wend End |