# High-wing trainer (Transport Collection HD)

Strut-braced single-engine aircraft with shaped cowling, cockpit framing, tricycle gear and propeller pivot.

- **URL:** https://3dassets.dev/assets/transport-collection-hd-high-wing-trainer-43dcd31f
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/8016/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/transport-collection-hd-high-wing-trainer-43dcd31f
- **Licence:** CC0 1.0 Universal: https://creativecommons.org/publicdomain/zero/1.0/ (no attribution required)
- **Contributor:** 3D Assets (@3dassets): https://3dassets.dev/u/3dassets
- **Category:** Vehicles
- **Tags:** Modern, Realistic, Exterior
- **Geometry:** 7,208 triangles, 21,624 vertices, 15 meshes, 7 materials, 0 textures
- **Size (m):** 9.4 × 2.95 × 6.57
- **Animations:** wheel-roll, rotor-spin
- **File size:** 0.34 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: GPT-6 via Codex; Claude Fable 5.1 brief and frozen geometry kit; Claude Opus 5 animation pass

## About

Strut-braced single-engine aircraft with shaped cowling, cockpit framing, tricycle gear and propeller pivot. Dimensions 9.40 x 2.95 x 6.57 m (width, height, length). Metres, +Y up, nose toward +Z, footprint centred, lowest geometry at y=0. Mechanical pivot nodes: propeller-0/rubber, propeller-0/metal, landing-main--1/rubber, landing-main--1/metal, landing-main-1/rubber, landing-main-1/metal, landing-nose/rubber, landing-nose/metal. Static geometry; no animation clips, skeletal rig, collision, navigation or simulation data. Interiors are limited to exposed seats and deck equipment. Other doors and control surfaces are fixed. Boats use keel/skirt baseline, not a waterline. Original generic design.

## Use with three.js

```js
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/8016/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)
}
```

## React Three Fiber

```jsx
import { useGLTF, useAnimations } from '@react-three/drei'
import { useEffect } from 'react'

export function HighWingTrainerTransportCollectionHD(props) {
  const { scene, animations } = useGLTF('https://cdn.3dassets.dev/assets/8016/v1/model.glb')
  const { actions, names } = useAnimations(animations, scene)
  useEffect(() => {
    const action = actions[names[0]]
    action?.reset().play()
    return () => { action?.stop() }
  }, [actions, names])
  return <primitive object={scene} {...props} />
}
useGLTF.preload('https://cdn.3dassets.dev/assets/8016/v1/model.glb')
```

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/8016/v1/model.glb" alt="High-wing trainer (Transport Collection HD)" camera-controls auto-rotate autoplay></model-viewer>
```

## Blender

```python
# Blender 4.x: File > Import > glTF 2.0, or from the Python console after downloading the file.
import bpy
bpy.ops.import_scene.gltf(filepath='model.glb')  # from https://cdn.3dassets.dev/assets/8016/v1/model.glb
# Metres and +Y up are converted to Blender's Z-up scene automatically.
# Clips arrive as actions; play them from the Dope Sheet > Action Editor.
```

## Godot

```gdscript
# Godot 4: copy model.glb into res://models/ and the editor imports it as a scene.
var packed := load("res://models/model.glb") as PackedScene
var model := packed.instantiate()
add_child(model)
var player := model.find_child("AnimationPlayer", true, false) as AnimationPlayer
player.play(player.get_animation_list()[0])
```

## Unity

```csharp
// Unity: import model.glb with glTFast (Package Manager: com.unity.cloud.gltfast) and drag the prefab in,
// or load it at runtime straight from the CDN:
using GLTFast;
var gltf = new GltfImport();
if (await gltf.Load("https://cdn.3dassets.dev/assets/8016/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
// Clips import as legacy AnimationClips on the root; GetComponent<Animation>().Play() starts the first.
```

---
JSON: https://3dassets.dev/api/v1/assets/transport-collection-hd-high-wing-trainer-43dcd31f · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.