From: <sv...@ww...> - 2005-04-28 06:36:42
|
Author: mkrose Date: 2005-04-27 23:36:35 -0700 (Wed, 27 Apr 2005) New Revision: 1526 Modified: trunk/CSP/CSPSim/Bin/TestObjects.py trunk/CSP/CSPSim/CHANGES.current Log: Add both an F16 and an M2k at startup. Minor adjustments to the initial elevation so they don't fall and bounce. Use <spacebar> to toggle between them. Browse at: https://www.zerobar.net/viewcvs/viewcvs.cgi?view=rev&rev=1526 Modified: trunk/CSP/CSPSim/Bin/TestObjects.py =================================================================== --- trunk/CSP/CSPSim/Bin/TestObjects.py 2005-04-28 06:33:39 UTC (rev 1525) +++ trunk/CSP/CSPSim/Bin/TestObjects.py 2005-04-28 06:36:35 UTC (rev 1526) @@ -38,7 +38,8 @@ v = SimData.Vector3 m = SimData.LLA() vehicle = app.createVehicle - vehicle("sim:vehicles.aircraft.m2k", v(-29495, -10530, 88.5), v(0, 0, 0), v(0.0, 0.0, 180.0)) + vehicle("sim:vehicles.aircraft.F16DJ", v(-29495, -10530, 87.8), v(0, 0, 0), v(0.0, 0.0, 180.0)) + vehicle("sim:vehicles.aircraft.m2k", v(-29510, -10530, 87.8), v(0, 0, 0), v(0.0, 0.0, 180.0)) #vehicle("sim:vehicles.aircraft.m2k", v(-29413, -10980, 98.75), v(0, 100.0, 0), v(5.0, 0.0, 180.0)) #vehicle("sim:vehicles.aircraft.m2k", v(-29413, -10980, 108.75), v(0, 100.0, 0), v(5.0, 0.0, 180.0)) #vehicle("sim:vehicles.aircraft.m2k", v(-29413, -10980, 118.75), v(0, 100.0, 0), v(5.0, 0.0, 180.0)) Modified: trunk/CSP/CSPSim/CHANGES.current =================================================================== --- trunk/CSP/CSPSim/CHANGES.current 2005-04-28 06:33:39 UTC (rev 1525) +++ trunk/CSP/CSPSim/CHANGES.current 2005-04-28 06:36:35 UTC (rev 1526) @@ -41,6 +41,10 @@ * Fix potential problem with the .ini path test at startup. + * Add both an F16 and an M2k at startup. Minor adjustments to the initial + elevation so they don't fall and bounce. Use <spacebar> to toggle between + them. + 2005-04-25: delta * Need to include a few headers to avoid a syntax error (g++ and vc++ don't manage forward class declaration equivalently). |