3DAssets.dev
Loading model…

About

A four seat low wing single with retractable tricycle gear, split flaps and a constant speed propeller. Each main leg and the nose leg is a node that lifts into its bay behind a hinged door. Dimensions 10.86 x 2.43 x 8.61 m (X x Y x Z). Origin at the footprint centre, resting on y = 0; metres, +Y up, nose toward +Z, wing span and wheel axles along X. Named pivots: aileron-right at (4.08, 1, -0.44); aileron-left at (-4.08, 1, -0.44); flap-right at (1.82, 0.85, -0.52); flap-left at (-1.82, 0.85, -0.52); rudder at (0, 1.78, -3.92); elevator at (0, 1.14, -3.68); prop at (0, 1.14, 4.02); cowl-top at (0, 1.66, 2.67); gear-main-right at (0.41, 0.71, 0.21); bay-right at (0.46, 0.71, 0.17); gear-main-left at (-0.41, 0.71, 0.21); bay-left at (-0.46, 0.71, 0.17); gear-nose at (0, 0.81, 2.22); bay-nose at (0, 0.73, 2.32); door-right at (0.55, 1.2, 1.52). Rigid node-transform clips door-open, door-close, prop-spin, aileron-roll, flap-tilt, elevator-tilt, rudder-steer, gear-open, gear-close, bay-open, bay-close, cowl-open, cowl-close drive named nodes on their own pivots. No skinning and no skeleton, so the retraction linkage, rotor flapping and lead-lag, propeller pitch change, the swashplate and wing flex are all deliberately static. Sixteen material palette of airframe white, deep blue, warm red, airfield yellow, bare aluminium, steel grey, charcoal, near black tarmac, light grey concrete, olive and tinted glazing, plus five emissive lighting materials for navigation, strobe, taxiway, threshold and interior lights. Flat colours, no texture maps. Original generic design with no manufacturer, type designation, livery, registration or operator marking. Free 3D model for Unity, Godot, Unreal, three.js and Blender. No collision or navigation data.

Use with an AI agent

Copy this prompt into your AI chat, then describe what you want to build with the asset.

Use the “Low Wing Retractable Single (Aircraft Fleet and Airfield)” asset in my project.

Model: https://cdn.3dassets.dev/assets/32568/v1/model.glb
Asset page: https://3dassets.dev/assets/aircraft-fleet-and-airfield-low-wing-single-10e05d5a
Description: A four seat low wing single with retractable tricycle gear, split flaps and a constant speed propeller. Premium CC0 aircraft and airfield game asset.

- Dimensions (X × Y × Z): 10.861 × 2.431 × 8.609 metres
- Triangles: 20.1k
- Animations: door-open, door-close, prop-spin, aileron-roll, flap-tilt, elevator-tilt, rudder-steer, gear-open, gear-close, bay-open, bay-close, cowl-open, cowl-close
- Licence: CC0 1.0 Universal (https://creativecommons.org/publicdomain/zero/1.0/)
- Loading: Three.js GLTFLoader; no additional decoders required.

Also available as JSON, Markdown, or via the MCP server.

Import manually

Choose your framework, then copy the code into your project to load the asset.

import { GLTFLoader } from 'three/addons/loaders/GLTFLoader.js'
import { AnimationMixer } from 'three'

let mixer

const loader = new GLTFLoader()
loader.load('https://cdn.3dassets.dev/assets/32568/v1/model.glb', (gltf) => {
  scene.add(gltf.scene)
  mixer = new AnimationMixer(gltf.scene)
  mixer.clipAction(gltf.animations[0]).play()
})

// Call from your render loop; deltaSeconds is time since the previous frame.
function updateAssetAnimation(deltaSeconds) {
  mixer?.update(deltaSeconds)
}

Common questions

How do I use this model with my AI development tools?
Press "Copy for AI agent" above and paste the prompt into Claude Code, Cursor, Codex, GitHub Copilot, ChatGPT or any other coding assistant. The prompt carries the direct CDN URL, the real-world size, the licence and the loading notes, so the assistant can fetch the model and place it in your project without you writing the loader yourself. For a permanent connection, add the 3DAssets.dev MCP server to your tool with one command (for Claude Code: claude mcp add --transport http 3dassets https://3dassets.dev/mcp) and the assistant can then search the whole catalogue, fetch files and read the usage snippets on its own.

MCP server setupGuide for AI agents

How do I get started?
Three ways, from quickest to most automatic. Download the .glb with the button and drop it into your engine's asset folder, where it imports like any glTF file. Or skip the download: copy the three.js, React Three Fiber or model-viewer snippet under "Import manually", which loads the model straight from the CDN. Or connect your AI agent to the MCP server and ask for it by name, and it will find, fetch and place the model for you.

MCP server setupAPI reference

Which game engines and tools can I use this model with?
Anything that reads glTF, which today means all of the major ones: three.js and React Three Fiber on the web, Godot 4, Unity, Unreal Engine 5, Blender and the model-viewer web component. The model is a self-contained binary glTF (.glb) with textures embedded, so there is one file to import and no plugin, converter or decoder to install first.
How do I import this model into Unity, Godot, Unreal or Blender?
Unity: install the glTFast package (com.unity.cloud.gltfast) from the Package Manager, drop the .glb into Assets and drag the prefab in, or load it at runtime from the CDN URL. Godot 4: copy the file into the project folder and the editor imports it as a scene you can instantiate. Unreal Engine 5: File > Import with the built-in glTF importer, which converts the axes for you. Blender: File > Import > glTF 2.0. Units are metres with +Y up in the file, and every importer above handles the conversion to its own axes automatically.
Can I use this model in a commercial game, and do I need to credit anyone?
Yes to commercial use and no to credit. Every model on 3DAssets.dev is released under CC0 1.0 Universal, which places it in the public domain: use it in a paid game, an app, a film or a client project, modify it, redistribute it, and put nothing in the credits. A link back is welcome but it is entirely your choice.

CC0 licence text

Can I load it from the CDN instead of downloading it?
Yes. The .glb file has a permanent URL on cdn.3dassets.dev that is CORS-enabled and never changes content, so you can pass it straight to GLTFLoader, glTFast or model-viewer in production and cache it as hard as you like. Downloading is only needed for engines that import from disk.
Do I need Draco, Meshopt or KTX2 to load it?
No. The geometry is quantized with KHR_mesh_quantization and the textures are re-encoded to WebP, both of which three.js, Godot, Unity and Blender read natively, so a plain GLTFLoader is enough. There is nothing extra to configure and no decoder to ship with your bundle.

Low Wing Retractable Single (Aircraft Fleet and Airfield)

A four seat low wing single with retractable tricycle gear, split flaps and a constant speed propeller. Premium CC0 aircraft and airfield game asset.

Download asset · 782.6 KB

More in Vehicles

Forklift (Car Factory Production Line)Animated

Forklift (Car Factory Production Line)

Free 3D model of a counterbalance forklift truck with rolling wheels and a lifting mast, a factory logistics vehicle for a car factory game asset kit.

@3dassets2.7k tris · 9 ↓
AGV Mover (Car Factory Production Line)Animated

AGV Mover (Car Factory Production Line)

Free 3D model of a low profile automated guided vehicle with an emissive light bar, a driverless factory transporter for a car factory game asset kit.

@3dassets1.5k tris · 8 ↓
Tugger Train Tractor (Car Factory Production Line)Animated

Tugger Train Tractor (Car Factory Production Line)

Free 3D model of a tugger train tractor pulling two loaded trolleys, an internal logistics train for a car factory game asset kit.

@3dassets3.3k tris · 8 ↓
Ground Power Unit Cart (Aircraft Fleet and Airfield)Animated

Ground Power Unit Cart (Aircraft Fleet and Airfield)

A towable ground power unit: a yellow cabinet on four wheels with louvred vents, a lit control panel, an output cable coiled on its hook and a tow handle. Premium CC0 aircraft and airfield game asset.

@3dassets3.9k tris · 2 ↓
Aircraft Tug With Tow Bar (Aircraft Fleet and Airfield)Animated

Aircraft Tug With Tow Bar (Aircraft Fleet and Airfield)

A four wheel aircraft tug with a low cab, a roll over frame, a beacon and a stowed tow bar on the front hitch. Premium CC0 aircraft and airfield game asset.

@3dassets3.9k tris · 2 ↓
Aviation Fuel Bowser (Aircraft Fleet and Airfield)Animated

Aviation Fuel Bowser (Aircraft Fleet and Airfield)

A six wheel aviation fuel bowser: a barrel tank on a chassis, a day cab, a hose reel, a filter vessel and a lit control panel. Premium CC0 aircraft and airfield game asset.

@3dassets5.7k tris · 2 ↓
Hot Air Balloon And Basket (Aircraft Fleet and Airfield)

Hot Air Balloon And Basket (Aircraft Fleet and Airfield)

A hot air balloon with a 9.2 metre envelope in three colours, a load ring on eight cables, a twin burner on its frame and a wicker basket with two fuel cylinders inside.. Premium CC0 aircraft and airfield game asset.

@3dassets6.4k tris · 2 ↓
Tiltrotor Transport Aircraft (Aircraft Fleet and Airfield)Animated

Tiltrotor Transport Aircraft (Aircraft Fleet and Airfield)

A tiltrotor transport: a straight high wing with a nacelle on each tip that swings from hover to cruise on its trunnion, three blade proprotors, an H tail and a rear loading ramp.. Premium CC0 aircraft and airfield game asset.

@3dassets29.6k tris · 2 ↓
Heavy Lift Quadcopter Drone (Aircraft Fleet and Airfield)Animated

Heavy Lift Quadcopter Drone (Aircraft Fleet and Airfield)

A heavy lift quadcopter: a moulded body over a battery pack, four arms with their own motors and folding two blade rotors, a gimbal camera under the nose and landing legs with position lights.. Premium CC0 aircraft and airfield game asset.

@3dassets10.7k tris · 2 ↓
Fixed Wing Surveillance Drone (Aircraft Fleet and Airfield)Animated

Fixed Wing Surveillance Drone (Aircraft Fleet and Airfield)

A fixed wing surveillance drone with a 16.8 metre high aspect ratio wing, a satellite dome over the nose, a ventral sensor turret, a V tail and a pusher propeller.. Premium CC0 aircraft and airfield game asset.

@3dassets15.7k tris · 2 ↓
Medium Twin Turbine Helicopter (Aircraft Fleet and Airfield)Animated

Medium Twin Turbine Helicopter (Aircraft Fleet and Airfield)

A twelve seat twin turbine helicopter with a wheeled undercarriage, forward hinged crew doors, sliding cabin doors on both sides and a four blade main rotor over a modelled head.. Premium CC0 aircraft and airfield game asset.

@3dassets34.9k tris · 2 ↓
Air Ambulance Twin Helicopter (Aircraft Fleet and Airfield)Animated

Air Ambulance Twin Helicopter (Aircraft Fleet and Airfield)

The medium twin turbine helicopter in an air ambulance fitout: a red belly band, a lit cabin behind the sliding doors and a steerable search light under the nose. Premium CC0 aircraft and airfield game asset.

@3dassets35.2k tris · 2 ↓

Similar assets

Low Wing Single, Gear Retracted (Aircraft Fleet and Airfield)Animated

Low Wing Single, Gear Retracted (Aircraft Fleet and Airfield)

The retractable low wing single in its cruise configuration: gear up, bay doors closed and flaps retracted, for use in the air rather than on a stand.. Premium CC0 aircraft and airfield game asset.

@3dassets14.9k tris
Four Seat Low Wing Tourer (Aircraft Fleet and Airfield)Animated

Four Seat Low Wing Tourer (Aircraft Fleet and Airfield)

A four seat low wing touring aeroplane with fixed spatted gear, a swept fin and a large single door onto the wing walk.. Premium CC0 aircraft and airfield game asset.

@3dassets20.2k tris
High Wing Single Light Aircraft (Aircraft Fleet and Airfield)Animated

High Wing Single Light Aircraft (Aircraft Fleet and Airfield)

A four seat high wing single engine light aircraft with a strut braced wing, wheel spats and a two blade fixed pitch propeller. Premium CC0 aircraft and airfield game asset.

@3dassets20.5k tris
Single Seat Sailplane (Aircraft Fleet and Airfield)Animated

Single Seat Sailplane (Aircraft Fleet and Airfield)

An unpowered single seat sailplane with an 18 metre high aspect ratio wing, a slender tapered fuselage, a T tail and a single retractable main wheel with a nose skid. Premium CC0 aircraft and airfield game asset.

@3dassets12.8k tris
High Wing Single, Cowl Open (Aircraft Fleet and Airfield)Animated

High Wing Single, Cowl Open (Aircraft Fleet and Airfield)

The four seat high wing single as it stands in a maintenance hangar: the cowling top flap is already lifted and both cabin doors are open, so the model can be parked mid service without an animation running.. Premium CC0 aircraft and airfield game asset.

@3dassets20.5k tris · 2 ↓
Two Seat High Wing Trainer (Aircraft Fleet and Airfield)Animated

Two Seat High Wing Trainer (Aircraft Fleet and Airfield)

A two seat strut braced training aeroplane, the smallest high wing single in the pack, with a fixed tricycle undercarriage and a wide glazed cabin for instruction.. Premium CC0 aircraft and airfield game asset.

@3dassets19.8k tris
High Wing Single On Floats (Aircraft Fleet and Airfield)Animated

High Wing Single On Floats (Aircraft Fleet and Airfield)

The four seat high wing single with its wheels swapped for a pair of stepped floats on a strut cabane, which is how the type is flown off water.. Premium CC0 aircraft and airfield game asset.

@3dassets18.7k tris · 2 ↓
High-wing propeller plane (Air, Land and Sea Vehicles)

High-wing propeller plane (Air, Land and Sea Vehicles)

Strut-braced wings, tail surfaces, landing gear and a separate propeller.

@3dassets4.9k tris
Pressurised Single Turboprop (Aircraft Fleet and Airfield)Animated

Pressurised Single Turboprop (Aircraft Fleet and Airfield)

A pressurised six seat single engine turboprop with a low wing, a swept fin, a four blade propeller and a large airstair cabin door.. Premium CC0 aircraft and airfield game asset.

@3dassets29.9k tris
Four-seat convertible top down (Road Car Showroom Lineup)Animated

Four-seat convertible top down (Road Car Showroom Lineup)

Four-seat convertible top down, an original generic design in a cohesive showroom palette.

@3dassets8.9k tris
Fixed table with four swing seats (Fast Food Counter and Drive-Thru)Animated

Fixed table with four swing seats (Fast Food Counter and Drive-Thru)

A fixed dining unit: a 920 mm laminate top on a heavy pedestal, with four moulded swing seats on tubular arms that each pivot about the column.

@3dassets1.8k tris
Front counter flap module, flap raised (Fast Food Counter and Drive-Thru)Animated

Front counter flap module, flap raised (Fast Food Counter and Drive-Thru)

The counter flap module with the worktop flap swung up on its rear hinge, showing the crew crossing open.

@3dassets1.0k tris