# Dragon lair clearing (Dragons and Wyverns)

A thirty metre rocky clearing outside a dragon lair, laid on twenty five six metre floor tiles, with the animals set out on rings round the hoard rather than gathered in the middle so each of them has clear ground round its outline. A cave mouth built up into a rock face...

- **URL:** https://3dassets.dev/assets/dragons-and-wyverns-dragon-lair-clearing-fe031da0-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/36755/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/dragons-and-wyverns-dragon-lair-clearing-fe031da0-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:** Fantasy, Stylized, Kit / Set
- **Geometry:** 118,423 triangles, 300,727 vertices, 193 meshes, 12 materials, 0 textures
- **Size (m):** 30.151 × 12.111 × 30.077
- **Animations:** none
- **File size:** 5.09 MB
- **Downloads:** 2
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A thirty metre rocky clearing outside a dragon lair, laid on twenty five six metre floor tiles, with the animals set out on rings round the hoard rather than gathered in the middle so each of them has clear ground round its outline. A cave mouth built up into a rock face closes the back and a perimeter of ledges and perch rocks runs round the plot, two of the rocks carrying a perched dragon and a perched wyvern. The hoard is the centre: an elder settled over the gold with open floor round it, two chests, a display plinth and drifts of coin and shed scale. A nest scrape in the south west corner clusters two nests, a clutch on a rock, a dozen eggs whole, cracked and hatching, three hatchlings and the young standing over them, because small things crowding together is what a nest looks like. A cage with a hatchling in it and two chain and shackle runs make a captor corner. Burnt ground, raked claw marks, bone piles, skulls, spilled coin and shed scale dress the floor out to all four corners. Two animals fly a low pass over the rock, and only two. Every animal in the scene is static geometry in a baked pose.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/36755/v1/model.glb" alt="Dragon lair clearing (Dragons and Wyverns)" 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/36755/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/36755/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/dragons-and-wyverns-dragon-lair-clearing-fe031da0-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.