Skip to content
Snippets Groups Projects
Commit a202e99b authored by Jason Kemmerling's avatar Jason Kemmerling
Browse files

Added wind tunnel EasyStar model.

parent e9dfdd1b
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0"?>
<PropertyList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../XMLSchemas/PropertyList.xsd">
<sim>
<author>James Goppert</author>
<description>Multiplex Easy Star (DATCOM)</description>
<aircraft-version>0.0.0</aircraft-version>
<status>early-production</status>
<startup>
<splash-title>Multiplex Easy Star</splash-title>
</startup>
<model>
<path>Aircraft/EasyStar/Models/EasyStar-model.xml</path>
</model>
<sound>
<path>Aircraft/EasyStar/EasyStar-sound.xml</path>
</sound>
<flight-model>jsb</flight-model>
<aero>EasyStar-datcom</aero>
</sim>
</PropertyList>
This diff is collapsed.
<?xml version="1.0"?>
<PropertyList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../XMLSchemas/PropertyList.xsd">
<sim>
<author>James Goppert</author>
<description>Multiplex Easy Star (wind tunnel)</description>
<aircraft-version>0.0.0</aircraft-version>
<status>early-production</status>
<startup>
<splash-title>Multiplex Easy Star</splash-title>
</startup>
<model>
<path>Aircraft/EasyStar/Models/EasyStar-model.xml</path>
</model>
<sound>
<path>Aircraft/EasyStar/EasyStar-sound.xml</path>
</sound>
<flight-model>jsb</flight-model>
<aero>EasyStar-windtunnel</aero>
</sim>
</PropertyList>
This diff is collapsed.
#!/bin/bash
#--native-ctrls=socket,out,119,,5501,udp \
#--native-ctrls=socket,in,120,,5502,udp \
#--disable-textures \
if [ $# != 1 ]
then
echo usage: $0 aircraft
exit
fi
aircraft=$1
fgfs \
--fdm=external \
--aircraft=c172p \
--aircraft=$aircraft \
--geometry=400x300 \
--native-fdm=socket,in,120,,5500,udp \
--vc=30 \
--altitude=1000 \
--heading=90 \
......@@ -17,7 +20,6 @@ fgfs \
--shading-flat \
--notrim \
--fog-disable \
--disable-textures \
--disable-specular-highlight \
--disable-skyblend \
--disable-random-objects \
......
#!/bin/bash
#--native-ctrls=socket,out,119,,5501,udp \
#--native-ctrls=socket,in,120,,5502,udp \
#--disable-textures \
if [ $# != 1 ]
then
echo usage: $0 aircraft
exit
fi
aircraft=$1
fgfs \
--fdm=external \
--aircraft=$aircraft \
--geometry=400x300 \
--native-fdm=socket,in,120,,5500,udp \
--vc=30 \
--altitude=1000 \
--heading=90 \
--roll=0 \
--pitch=0 \
--wind=0@0 \
--turbulence=0.0 \
--timeofday=noon \
--shading-flat \
--notrim \
--fog-disable \
--disable-specular-highlight \
--disable-skyblend \
--disable-random-objects \
--disable-panel \
--disable-horizon-effect \
--disable-clouds \
--disable-anti-alias-hud
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment