# Trampoline Park (Trampoline Park and Soft Play)

A working trampoline park laid out from the pack's own kit on its own floor: a 14 by 14 m hall of 2 m tiles, blue lined under the court and lime lined everywhere else, closed along the back and the left with hall wall modules and two wall trampolines. The court is six bed...

- **URL:** https://3dassets.dev/assets/trampoline-park-and-soft-play-trampoline-c2be0116-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/34646/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/trampoline-park-and-soft-play-trampoline-c2be0116-starter-scene
- **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:** Environments & Scenes
- **Tags:** Modern, Stylized, Kit / Set
- **Geometry:** 39,152 triangles, 84,774 vertices, 184 meshes, 8 materials, 0 textures
- **Size (m):** 14.41 × 3.987 × 14.449
- **Animations:** none
- **File size:** 1.51 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A working trampoline park laid out from the pack's own kit on its own floor: a 14 by 14 m hall of 2 m tiles, blue lined under the court and lime lined everywhere else, closed along the back and the left with hall wall modules and two wall trampolines. The court is six bed modules on a 2.3 m grid tied together by seven safety pad strips, with a dodgeball net run along the centre line at pad height, dunk hoops standing over the two back beds and a two bay edge platform along the front of it. Beyond the court the air work: a tumble track running back into a 3 m foam pit of cubes, a balance beam across the pit mouth, an angled bed in the corner and a performance trampoline over an airbag landing block. Beside the court is the soft play, behind its net wall and a run of rope dividers: the frame tower with its slide and ladder, the ball pit, the roller slide, the spinner seat, the step blocks, two crawl tunnels and the toddler mats. Along the front is the rest of the building: reception with its terminal, the grip sock display, the queue line, two locker banks, the bench and cubby run, the briefing screen, the first aid point and safety signs, the marshal stand watching the court, the party room tables, the cafe counter, the vending machine, the bins and the cleaning trolley, under two runs of lit ceiling truss.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/34646/v1/model.glb" alt="Trampoline Park (Trampoline Park and Soft Play)" 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/34646/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/34646/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/trampoline-park-and-soft-play-trampoline-c2be0116-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.