Hi.
I got a project from my teacher to make flight sim.
And I am already make model f-22 raptor aircraft.
Can somebody teach me how to make flight sim from takeoff until it landing (include rotate and etc)?
I’m searching from google and I can’t find reference to make it until now.
Please help me
I would use rigid bodies and forces for most of it, and then use python to control the angles of the flaps/rudder and the throttle is easy enough in logic, lift can be done by adjusting a force the faster the craft goes, from 0 lift at 0 to 9.8* weight of the craft above stall speed, with python
Thank you sir, btw can you help me more for controlling using joystick?
my teacher order me using joystick handle
I got joystick Logitech extreme 3D pro in my home
Re: Help abit more about flight simStart with your “thrust” logic
Jet properties_________________
Thrust integer
Lift
Altitude
Speed
Keyboard Pullup ----------------------------------------------------------------------and-----------------motion y axis AngleV .5 (local)
Keyboard Dive ----------------------------------------------------------------------and--------------------motion y axis AngleV -.5(local)
Keyboard Right ----------------------------------------------------------------------and-------------------motion Z axis AngleV .5 world
Keyboard Left ----------------------------------------------------------------------and-------------------motion Z axis AngleV -.5 world Keyboard Throttle_UP-------------------------------------------------------------and-----------------------property Add 1 to thrust
(property interval) thrust Min=0 (Max =(1 less then max thrust)-/
Keyboard Thrust_Dwn-----------------------------------------------------------and---------------------property Add -1 to thrust
(property interval) thrust Min=1 Max = max thrust--------------------/
It’s work sir!
But, something happen when my handle on free position (not move or original position) after i use this script
Joystick | Axis | Up Axis (keyboard dive) ----------------------------------------------------------------------and--------------------motion y axis AngleV -.5(local)
It’s keep move diving, not on position moving straight
what is the problem?