├── .gitignore ├── ATR 72-500 ├── .gitignore ├── ATR 72-500.acf ├── COPYING ├── README-release.txt ├── airfoils │ └── atr72sm-il.afl └── plugins │ └── xlua │ └── scripts │ └── atr │ └── atr.lua ├── COPYING ├── Makefile ├── README-release.txt ├── README.md ├── atr72-500.blend └── svg ├── cockpit.svg ├── efis.svg ├── exterior1.svg ├── exterior2.svg ├── flightdeck1.svg ├── flightdeck2.svg ├── flightdeck3.svg ├── flightdeck4.svg ├── gear.svg ├── ohpanel.svg ├── panel.svg ├── panel_gen_trim_elev.svg ├── pilots.svg ├── png ├── ATR-gears.png ├── ATR-wings.png ├── ATR72-pax.png ├── afcs-adu.png ├── carpet.png ├── ccas.png ├── efis.png ├── fabric.png ├── fd_1.png ├── fd_2.png ├── fd_3.png ├── fd_4.png ├── fd_5.png ├── fuel-tat.png ├── gear.png ├── glare.png ├── leather.png ├── ohp-base.png ├── ohp-lts.png ├── ohp-sw.png ├── ohp-xtra.png ├── pan_lt.png ├── panel-sw.png ├── panels.png ├── pedal.png ├── pilots.png ├── seat_1.png ├── seat_2.png ├── thr-lt.png ├── tiller.png ├── warning.png └── yoke.png ├── seats.svg ├── switches.svg └── yoke.svg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/.gitignore -------------------------------------------------------------------------------- /ATR 72-500/.gitignore: -------------------------------------------------------------------------------- 1 | *.acf~ 2 | /cockpit_3d/ 3 | /objects/ 4 | *_prefs.txt 5 | /*icon11*.png 6 | -------------------------------------------------------------------------------- /ATR 72-500/ATR 72-500.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/ATR 72-500/ATR 72-500.acf -------------------------------------------------------------------------------- /ATR 72-500/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/ATR 72-500/COPYING -------------------------------------------------------------------------------- /ATR 72-500/README-release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/ATR 72-500/README-release.txt -------------------------------------------------------------------------------- /ATR 72-500/airfoils/atr72sm-il.afl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/ATR 72-500/airfoils/atr72sm-il.afl -------------------------------------------------------------------------------- /ATR 72-500/plugins/xlua/scripts/atr/atr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/ATR 72-500/plugins/xlua/scripts/atr/atr.lua -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/Makefile -------------------------------------------------------------------------------- /README-release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/README-release.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/README.md -------------------------------------------------------------------------------- /atr72-500.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/atr72-500.blend -------------------------------------------------------------------------------- /svg/cockpit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/cockpit.svg -------------------------------------------------------------------------------- /svg/efis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/efis.svg -------------------------------------------------------------------------------- /svg/exterior1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/exterior1.svg -------------------------------------------------------------------------------- /svg/exterior2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/exterior2.svg -------------------------------------------------------------------------------- /svg/flightdeck1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/flightdeck1.svg -------------------------------------------------------------------------------- /svg/flightdeck2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/flightdeck2.svg -------------------------------------------------------------------------------- /svg/flightdeck3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/flightdeck3.svg -------------------------------------------------------------------------------- /svg/flightdeck4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/flightdeck4.svg -------------------------------------------------------------------------------- /svg/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/gear.svg -------------------------------------------------------------------------------- /svg/ohpanel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/ohpanel.svg -------------------------------------------------------------------------------- /svg/panel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/panel.svg -------------------------------------------------------------------------------- /svg/panel_gen_trim_elev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/panel_gen_trim_elev.svg -------------------------------------------------------------------------------- /svg/pilots.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/pilots.svg -------------------------------------------------------------------------------- /svg/png/ATR-gears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ATR-gears.png -------------------------------------------------------------------------------- /svg/png/ATR-wings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ATR-wings.png -------------------------------------------------------------------------------- /svg/png/ATR72-pax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ATR72-pax.png -------------------------------------------------------------------------------- /svg/png/afcs-adu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/afcs-adu.png -------------------------------------------------------------------------------- /svg/png/carpet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/carpet.png -------------------------------------------------------------------------------- /svg/png/ccas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ccas.png -------------------------------------------------------------------------------- /svg/png/efis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/efis.png -------------------------------------------------------------------------------- /svg/png/fabric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fabric.png -------------------------------------------------------------------------------- /svg/png/fd_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fd_1.png -------------------------------------------------------------------------------- /svg/png/fd_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fd_2.png -------------------------------------------------------------------------------- /svg/png/fd_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fd_3.png -------------------------------------------------------------------------------- /svg/png/fd_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fd_4.png -------------------------------------------------------------------------------- /svg/png/fd_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fd_5.png -------------------------------------------------------------------------------- /svg/png/fuel-tat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/fuel-tat.png -------------------------------------------------------------------------------- /svg/png/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/gear.png -------------------------------------------------------------------------------- /svg/png/glare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/glare.png -------------------------------------------------------------------------------- /svg/png/leather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/leather.png -------------------------------------------------------------------------------- /svg/png/ohp-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ohp-base.png -------------------------------------------------------------------------------- /svg/png/ohp-lts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ohp-lts.png -------------------------------------------------------------------------------- /svg/png/ohp-sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ohp-sw.png -------------------------------------------------------------------------------- /svg/png/ohp-xtra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/ohp-xtra.png -------------------------------------------------------------------------------- /svg/png/pan_lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/pan_lt.png -------------------------------------------------------------------------------- /svg/png/panel-sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/panel-sw.png -------------------------------------------------------------------------------- /svg/png/panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/panels.png -------------------------------------------------------------------------------- /svg/png/pedal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/pedal.png -------------------------------------------------------------------------------- /svg/png/pilots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/pilots.png -------------------------------------------------------------------------------- /svg/png/seat_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/seat_1.png -------------------------------------------------------------------------------- /svg/png/seat_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/seat_2.png -------------------------------------------------------------------------------- /svg/png/thr-lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/thr-lt.png -------------------------------------------------------------------------------- /svg/png/tiller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/tiller.png -------------------------------------------------------------------------------- /svg/png/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/warning.png -------------------------------------------------------------------------------- /svg/png/yoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/png/yoke.png -------------------------------------------------------------------------------- /svg/seats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/seats.svg -------------------------------------------------------------------------------- /svg/switches.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/switches.svg -------------------------------------------------------------------------------- /svg/yoke.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhille/atr-xplane/HEAD/svg/yoke.svg --------------------------------------------------------------------------------