# Gondola Cabin (Ski Resort and Snow Park)

Eight-passenger gondola cabin with red lower panels, wrap-around glazing, snow-capped roof, hanger arm and grip; two sliding doors on the +X side have named pivots.

- **URL:** https://3dassets.dev/assets/ski-resort-and-snow-park-gondola-cabin-21ad408a
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/25953/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/ski-resort-and-snow-park-gondola-cabin-21ad408a
- **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:** Seasonal & Holiday, Low Poly, Exterior, Kit / Set
- **Geometry:** 248 triangles, 744 vertices, 11 meshes, 5 materials, 0 textures
- **Size (m):** 2.349 × 4.38 × 2.5
- **Animations:** none
- **File size:** 0.01 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Fable 5.1

## About

Eight-passenger gondola cabin with red lower panels, wrap-around glazing, snow-capped roof, hanger arm and grip; two sliding doors on the +X side have named pivots. Dimensions 2.35 x 4.38 x 2.50 m (X x Y x Z). Metre units, +Y up, +Z front; grounded origin at the footprint centre. Named pivot nodes: door-rear at (1.14, 0.24, -0.58) m; door-front at (1.14, 0.24, 0.58) m. The grip sits 4.3 m above the skid pan: hang at cable height minus 4.3 m, so y = 3.7 on the 8 m datum. Door pivots are at the outer track ends; slide each door along Z away from the centre to open. Piste low-poly palette: snow white, ice blue, dark spruce, timber, safety orange, red, steel and charcoal. Static geometry; no rig, collision or navigation data.

## Use with three.js

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

const loader = new GLTFLoader()
loader.load('https://cdn.3dassets.dev/assets/25953/v1/model.glb', (gltf) => {
  scene.add(gltf.scene)
})
```

## React Three Fiber

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

export function GondolaCabinSkiResortAndSnowPark(props) {
  const { scene } = useGLTF('https://cdn.3dassets.dev/assets/25953/v1/model.glb')
  return <primitive object={scene} {...props} />
}
useGLTF.preload('https://cdn.3dassets.dev/assets/25953/v1/model.glb')
```

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/25953/v1/model.glb" alt="Gondola Cabin (Ski Resort and Snow Park)" camera-controls auto-rotate></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/25953/v1/model.glb
# Metres and +Y up are converted to Blender's Z-up scene automatically.
```

## 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)
```

## 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/25953/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/ski-resort-and-snow-park-gondola-cabin-21ad408a · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.