├── .gitignore ├── DataRefs.html.webloc ├── DataRefs.txt ├── Makefile ├── ReadMe-XPlane2Blender.html ├── XPlane3DCockpits.html ├── XPlaneAG.py ├── XPlaneAnimObject.py ├── XPlaneAnnotate.py ├── XPlaneExport.py ├── XPlaneExport7.py ├── XPlaneExport8.py ├── XPlaneExport8_ManipOptionsInterpreter.py ├── XPlaneExport8_util.py ├── XPlaneExportCSL.html ├── XPlaneExportCSL.py ├── XPlaneFacade.py ├── XPlaneHelp.py ├── XPlaneImport.py ├── XPlaneImportDSF.py ├── XPlaneImportMDL.py ├── XPlaneImportPlane.html ├── XPlaneImportPlane.py ├── XPlaneImport_util.py ├── XPlaneLib.py ├── XPlaneMacros.py ├── XPlaneMat2Tex.py ├── XPlaneMultiObj.py ├── XPlanePanelRegions.py ├── XPlaneRoads.py ├── XPlaneRoadsIn.py ├── XPlaneUtils.py ├── blender_props.txt ├── debug.py ├── delscripts.command ├── install.cmd ├── install.command ├── test ├── .gitignore ├── CoveRamp.blend ├── CoveRamp.obj ├── FS2X-palette.png ├── Frigate.blend ├── Frigate.obj ├── KSBD_example.blend ├── KSBD_example.obj ├── KSBD_example.png ├── KSBD_exampleLIT.bmp ├── KSBD_example_orig.obj ├── KSBD_example_orig_v8.obj ├── Nimitz.blend ├── Nimitz.obj ├── XEL_cockpit.blend ├── XEL_cockpit.obj ├── animalpha.blend ├── animalpha.obj ├── animcompound.blend ├── animcompound.obj ├── animerrs.blend ├── animkey.blend ├── animkey.obj ├── animmulti.blend ├── animmulti.obj ├── animoverride.blend ├── animoverride.obj ├── animreuse.blend ├── animreuse.obj ├── animskip.blend ├── animskip.obj ├── connected.blend ├── gmaxTest │ ├── EnvMap09.png │ ├── FS2X-palette.png │ ├── Panel.png │ ├── beach_envmap.png │ ├── blank.png │ ├── gmaxTest.MDL │ ├── gmaxTest.blend │ ├── gmaxTest.gmax │ ├── gmaxTest.x │ └── palette.png ├── hardtest.blend ├── hardtest.obj ├── hidetest.blend ├── hidetest.obj ├── horizon_vac80.blend ├── horizon_vac80.nogrp.obj ├── horizon_vac80.obj ├── jetway.obj ├── lights.blend ├── lights.obj ├── lights_custom.blend ├── lights_custom.obj ├── mattest.blend ├── mattest.obj ├── mirror.blend ├── mirror.obj ├── modifiers.blend ├── modifiers.obj ├── propsman_horizon_vac.png ├── propsman_horizon_vac80.obj ├── propsman_horizon_vac80.obj.orig ├── propsman_horizon_vac_LIT.png ├── simple.blend ├── simple.obj ├── simple_manual.obj ├── stick.blend ├── stick.obj ├── test.blend ├── test.obj ├── test2.blend ├── test2.obj ├── test3.blend ├── test3.obj ├── test3_manual.obj ├── test4.blend ├── test4.obj ├── throttle.blend ├── throttle.obj ├── throttle_int.blend ├── throttle_int.obj ├── transtest.blend ├── transtest.obj ├── wingflex.blend ├── wingflex.obj ├── yoke.blend └── yoke.obj ├── uvFixupACF.py └── uvResize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/.gitignore -------------------------------------------------------------------------------- /DataRefs.html.webloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/DataRefs.html.webloc -------------------------------------------------------------------------------- /DataRefs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/DataRefs.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/Makefile -------------------------------------------------------------------------------- /ReadMe-XPlane2Blender.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/ReadMe-XPlane2Blender.html -------------------------------------------------------------------------------- /XPlane3DCockpits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlane3DCockpits.html -------------------------------------------------------------------------------- /XPlaneAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneAG.py -------------------------------------------------------------------------------- /XPlaneAnimObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneAnimObject.py -------------------------------------------------------------------------------- /XPlaneAnnotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneAnnotate.py -------------------------------------------------------------------------------- /XPlaneExport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExport.py -------------------------------------------------------------------------------- /XPlaneExport7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExport7.py -------------------------------------------------------------------------------- /XPlaneExport8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExport8.py -------------------------------------------------------------------------------- /XPlaneExport8_ManipOptionsInterpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExport8_ManipOptionsInterpreter.py -------------------------------------------------------------------------------- /XPlaneExport8_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExport8_util.py -------------------------------------------------------------------------------- /XPlaneExportCSL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExportCSL.html -------------------------------------------------------------------------------- /XPlaneExportCSL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneExportCSL.py -------------------------------------------------------------------------------- /XPlaneFacade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneFacade.py -------------------------------------------------------------------------------- /XPlaneHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneHelp.py -------------------------------------------------------------------------------- /XPlaneImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneImport.py -------------------------------------------------------------------------------- /XPlaneImportDSF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneImportDSF.py -------------------------------------------------------------------------------- /XPlaneImportMDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneImportMDL.py -------------------------------------------------------------------------------- /XPlaneImportPlane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneImportPlane.html -------------------------------------------------------------------------------- /XPlaneImportPlane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneImportPlane.py -------------------------------------------------------------------------------- /XPlaneImport_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneImport_util.py -------------------------------------------------------------------------------- /XPlaneLib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneLib.py -------------------------------------------------------------------------------- /XPlaneMacros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneMacros.py -------------------------------------------------------------------------------- /XPlaneMat2Tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneMat2Tex.py -------------------------------------------------------------------------------- /XPlaneMultiObj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneMultiObj.py -------------------------------------------------------------------------------- /XPlanePanelRegions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlanePanelRegions.py -------------------------------------------------------------------------------- /XPlaneRoads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneRoads.py -------------------------------------------------------------------------------- /XPlaneRoadsIn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneRoadsIn.py -------------------------------------------------------------------------------- /XPlaneUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/XPlaneUtils.py -------------------------------------------------------------------------------- /blender_props.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/blender_props.txt -------------------------------------------------------------------------------- /debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/debug.py -------------------------------------------------------------------------------- /delscripts.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/delscripts.command -------------------------------------------------------------------------------- /install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/install.cmd -------------------------------------------------------------------------------- /install.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/install.command -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/CoveRamp.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/CoveRamp.blend -------------------------------------------------------------------------------- /test/CoveRamp.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/CoveRamp.obj -------------------------------------------------------------------------------- /test/FS2X-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/FS2X-palette.png -------------------------------------------------------------------------------- /test/Frigate.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/Frigate.blend -------------------------------------------------------------------------------- /test/Frigate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/Frigate.obj -------------------------------------------------------------------------------- /test/KSBD_example.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/KSBD_example.blend -------------------------------------------------------------------------------- /test/KSBD_example.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/KSBD_example.obj -------------------------------------------------------------------------------- /test/KSBD_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/KSBD_example.png -------------------------------------------------------------------------------- /test/KSBD_exampleLIT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/KSBD_exampleLIT.bmp -------------------------------------------------------------------------------- /test/KSBD_example_orig.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/KSBD_example_orig.obj -------------------------------------------------------------------------------- /test/KSBD_example_orig_v8.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/KSBD_example_orig_v8.obj -------------------------------------------------------------------------------- /test/Nimitz.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/Nimitz.blend -------------------------------------------------------------------------------- /test/Nimitz.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/Nimitz.obj -------------------------------------------------------------------------------- /test/XEL_cockpit.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/XEL_cockpit.blend -------------------------------------------------------------------------------- /test/XEL_cockpit.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/XEL_cockpit.obj -------------------------------------------------------------------------------- /test/animalpha.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animalpha.blend -------------------------------------------------------------------------------- /test/animalpha.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animalpha.obj -------------------------------------------------------------------------------- /test/animcompound.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animcompound.blend -------------------------------------------------------------------------------- /test/animcompound.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animcompound.obj -------------------------------------------------------------------------------- /test/animerrs.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animerrs.blend -------------------------------------------------------------------------------- /test/animkey.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animkey.blend -------------------------------------------------------------------------------- /test/animkey.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animkey.obj -------------------------------------------------------------------------------- /test/animmulti.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animmulti.blend -------------------------------------------------------------------------------- /test/animmulti.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animmulti.obj -------------------------------------------------------------------------------- /test/animoverride.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animoverride.blend -------------------------------------------------------------------------------- /test/animoverride.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animoverride.obj -------------------------------------------------------------------------------- /test/animreuse.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animreuse.blend -------------------------------------------------------------------------------- /test/animreuse.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animreuse.obj -------------------------------------------------------------------------------- /test/animskip.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animskip.blend -------------------------------------------------------------------------------- /test/animskip.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/animskip.obj -------------------------------------------------------------------------------- /test/connected.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/connected.blend -------------------------------------------------------------------------------- /test/gmaxTest/EnvMap09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/EnvMap09.png -------------------------------------------------------------------------------- /test/gmaxTest/FS2X-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/FS2X-palette.png -------------------------------------------------------------------------------- /test/gmaxTest/Panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/Panel.png -------------------------------------------------------------------------------- /test/gmaxTest/beach_envmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/beach_envmap.png -------------------------------------------------------------------------------- /test/gmaxTest/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/blank.png -------------------------------------------------------------------------------- /test/gmaxTest/gmaxTest.MDL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/gmaxTest.MDL -------------------------------------------------------------------------------- /test/gmaxTest/gmaxTest.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/gmaxTest.blend -------------------------------------------------------------------------------- /test/gmaxTest/gmaxTest.gmax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/gmaxTest.gmax -------------------------------------------------------------------------------- /test/gmaxTest/gmaxTest.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/gmaxTest.x -------------------------------------------------------------------------------- /test/gmaxTest/palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/gmaxTest/palette.png -------------------------------------------------------------------------------- /test/hardtest.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/hardtest.blend -------------------------------------------------------------------------------- /test/hardtest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/hardtest.obj -------------------------------------------------------------------------------- /test/hidetest.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/hidetest.blend -------------------------------------------------------------------------------- /test/hidetest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/hidetest.obj -------------------------------------------------------------------------------- /test/horizon_vac80.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/horizon_vac80.blend -------------------------------------------------------------------------------- /test/horizon_vac80.nogrp.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/horizon_vac80.nogrp.obj -------------------------------------------------------------------------------- /test/horizon_vac80.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/horizon_vac80.obj -------------------------------------------------------------------------------- /test/jetway.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/jetway.obj -------------------------------------------------------------------------------- /test/lights.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/lights.blend -------------------------------------------------------------------------------- /test/lights.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/lights.obj -------------------------------------------------------------------------------- /test/lights_custom.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/lights_custom.blend -------------------------------------------------------------------------------- /test/lights_custom.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/lights_custom.obj -------------------------------------------------------------------------------- /test/mattest.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/mattest.blend -------------------------------------------------------------------------------- /test/mattest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/mattest.obj -------------------------------------------------------------------------------- /test/mirror.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/mirror.blend -------------------------------------------------------------------------------- /test/mirror.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/mirror.obj -------------------------------------------------------------------------------- /test/modifiers.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/modifiers.blend -------------------------------------------------------------------------------- /test/modifiers.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/modifiers.obj -------------------------------------------------------------------------------- /test/propsman_horizon_vac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/propsman_horizon_vac.png -------------------------------------------------------------------------------- /test/propsman_horizon_vac80.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/propsman_horizon_vac80.obj -------------------------------------------------------------------------------- /test/propsman_horizon_vac80.obj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/propsman_horizon_vac80.obj.orig -------------------------------------------------------------------------------- /test/propsman_horizon_vac_LIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/propsman_horizon_vac_LIT.png -------------------------------------------------------------------------------- /test/simple.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/simple.blend -------------------------------------------------------------------------------- /test/simple.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/simple.obj -------------------------------------------------------------------------------- /test/simple_manual.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/simple_manual.obj -------------------------------------------------------------------------------- /test/stick.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/stick.blend -------------------------------------------------------------------------------- /test/stick.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/stick.obj -------------------------------------------------------------------------------- /test/test.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test.blend -------------------------------------------------------------------------------- /test/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test.obj -------------------------------------------------------------------------------- /test/test2.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test2.blend -------------------------------------------------------------------------------- /test/test2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test2.obj -------------------------------------------------------------------------------- /test/test3.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test3.blend -------------------------------------------------------------------------------- /test/test3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test3.obj -------------------------------------------------------------------------------- /test/test3_manual.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test3_manual.obj -------------------------------------------------------------------------------- /test/test4.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test4.blend -------------------------------------------------------------------------------- /test/test4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/test4.obj -------------------------------------------------------------------------------- /test/throttle.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/throttle.blend -------------------------------------------------------------------------------- /test/throttle.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/throttle.obj -------------------------------------------------------------------------------- /test/throttle_int.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/throttle_int.blend -------------------------------------------------------------------------------- /test/throttle_int.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/throttle_int.obj -------------------------------------------------------------------------------- /test/transtest.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/transtest.blend -------------------------------------------------------------------------------- /test/transtest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/transtest.obj -------------------------------------------------------------------------------- /test/wingflex.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/wingflex.blend -------------------------------------------------------------------------------- /test/wingflex.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/wingflex.obj -------------------------------------------------------------------------------- /test/yoke.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/yoke.blend -------------------------------------------------------------------------------- /test/yoke.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/test/yoke.obj -------------------------------------------------------------------------------- /uvFixupACF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/uvFixupACF.py -------------------------------------------------------------------------------- /uvResize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Marginal/XPlane2Blender/HEAD/uvResize.py --------------------------------------------------------------------------------