# Island shore on wipe day (Wipe Day Survival Island)

The first morning of a wipe on a coastal survival island. A 15.6 m lighthouse stands on the rocky headland at the back, built from a base stage, two mid stages, the gallery and the glowing lantern room, with a spiral stair climbing inside it, four scaffold sections and two...

- **URL:** https://3dassets.dev/assets/wipe-day-survival-island-island-shore-wi-9b4099db-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/27509/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/wipe-day-survival-island-island-shore-wi-9b4099db-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:** Post-apocalyptic, Low Poly, Kit / Set
- **Geometry:** 29,502 triangles, 71,348 vertices, 256 meshes, 8 materials, 0 textures
- **Size (m):** 33.451 × 15.57 × 37.014
- **Animations:** none
- **File size:** 1.36 MB
- **Downloads:** 1
- **AI used (contributor-reported):** yes; model: Claude Fable 5.1

## About

The first morning of a wipe on a coastal survival island. A 15.6 m lighthouse stands on the rocky headland at the back, built from a base stage, two mid stages, the gallery and the glowing lantern room, with a spiral stair climbing inside it, four scaffold sections and two ladders up one flank, and the loot room outbuilding, barrels, scrap and a recycler round its foot. Stone, metal and sulfur nodes sit among boulders on the slope below with a jackhammer left against one. The dirt road runs out of the headland to a signed junction and branches east, littered with road barrels, a crate cluster and an airdrop crate landed on the tarmac. A pine and birch stand fills the far side with stumps, a fallen log, mushrooms and berry bushes. At the front a fully closed twig hut sits on two foundations under a twig and stone roof, with the tool cupboard, sleeping bag, bedroll and storage boxes inside and the campfire, furnaces, three workbenches, repair bench, research table, water catcher and planter outside. Driftwood, shoreline rocks and dune banks run along the near shore. Static layout: 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/27509/v1/model.glb', (gltf) => {
  scene.add(gltf.scene)
})
```

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/27509/v1/model.glb" alt="Island shore on wipe day (Wipe Day Survival Island)" 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/27509/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/27509/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/wipe-day-survival-island-island-shore-wi-9b4099db-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.