# Festival Main Stage (Live Music Venue and Festival Stage)

A festival main stage built from the pack's own kit, standing on its own field of 4 m ground tiles with a worn trackway from the stalls past the front of house position down to the barrier: an 8 by 5 m stage on twenty deck modules with steps up to it, a six metre ground...

- **URL:** https://3dassets.dev/assets/live-music-venue-and-festival-stage-fest-2a5a6ddb-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/33938/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/live-music-venue-and-festival-stage-fest-2a5a6ddb-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, Realistic, Kit / Set
- **Geometry:** 83,725 triangles, 181,654 vertices, 180 meshes, 12 materials, 0 textures
- **Size (m):** 24.78 × 6.991 × 24.007
- **Animations:** none
- **File size:** 3.31 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A festival main stage built from the pack's own kit, standing on its own field of 4 m ground tiles with a worn trackway from the stalls past the front of house position down to the barrier: an 8 by 5 m stage on twenty deck modules with steps up to it, a six metre ground support tower at each corner carrying a truss roof and three canopy bays, an eight by four LED wall across the back, line arrays hung either side over subwoofers and a ground stack, and the band loaded in behind a line of monitor wedges. In front, a run of crowd barrier with a gate in it, sponsor banner wings either side of the pit, and cable ramps out to the front of house desk under its own truss tent. Around the field: food and merch stalls, flag poles, bins, a security tower with a follow spot on it, a portable toilet block, a seating stand, the ticket gates and the site generator.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/33938/v1/model.glb" alt="Festival Main Stage (Live Music Venue and Festival Stage)" 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/33938/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/33938/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/live-music-venue-and-festival-stage-fest-2a5a6ddb-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.