# Saturday At The Park (Theme Park Rides and Coasters)

A whole amusement park on an open Saturday. The entrance gate stands at the front between its ticket booths, turnstiles and map board, with a fenced boundary running out either side and a paved avenue leading in past lamp posts strung with festoon bulbs to a plaza with the...

- **URL:** https://3dassets.dev/assets/theme-park-rides-and-coasters-theme-park-12693136-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/28720/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/theme-park-rides-and-coasters-theme-park-12693136-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:** Cute, Stylized, Kit / Set
- **Geometry:** 139,468 triangles, 314,183 vertices, 510 meshes, 12 materials, 3 textures
- **Size (m):** 116.65 × 27.431 × 102.247
- **Animations:** none
- **File size:** 5.59 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Fable 5.1

## About

A whole amusement park on an open Saturday. The entrance gate stands at the front between its ticket booths, turnstiles and map board, with a fenced boundary running out either side and a paved avenue leading in past lamp posts strung with festoon bulbs to a plaza with the fountain and the mascot statue. A cross midway carries the food carts, the burger shack, the gift shop and the games row with their prize walls and picnic tables. Down the middle stand the carousel, spinning teacups, pirate ship, chair swing, bumper cars, kiddie train, log flume, observation tower, ferris wheel and drop tower, each behind its own entrance arch, canopied queue line and operator booth. A complete steel coaster circuit closes on itself at the back left, running out of its station up a chain lift, over the crest, through a descending helix, a vertical loop, a camelback and a brake run on tubular columns and A frames; a wooden coaster circuit closes on its lattice trestles at the back right, its train waiting in the station. Every track joint and every path joint is a declared connection.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/28720/v1/model.glb" alt="Saturday At The Park (Theme Park Rides and Coasters)" 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/28720/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/28720/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/theme-park-rides-and-coasters-theme-park-12693136-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.