boats

Blitz3D Forums/Blitz3D Beginners Area/boats

patisawesome(Posted 2003) [#1]
I need a path for a boat (in other words, I need it to move)
Thanks
-me


CS_TBL(Posted 2003) [#2]
if it's a simple linear path, then you can define a delta in your boat-definition.. like BOATdeltaX=1


..and then in your mainloop, add this delta value to your boat coordinate, once in each cycle..

if it's a non-linear path, then fill a bank with coordinates (or deltas) and fill your boat coordinates with these values as you move though your bank.