Is there s function to return the vector of an entity's direction? I can't find one and best I can gather one has to manually record an entity's direction, creating a custom vector and rotating that to match changes to an entity.
Obtaining a vector for direction of an entity
Blitz3D Forums/Blitz3D Programming/Obtaining a vector for direction of an entity ;Transform a forward vector from entity space to world space
TformVector 0,0,1,entity,0
;Get the entitys vector in world space
vx# = TformedX()
vy# = TformedY()
vz# = TformedZ()
TformVector 0,0,1,entity,0
;Get the entitys vector in world space
vx# = TformedX()
vy# = TformedY()
vz# = TformedZ()
Clever! Thanks.