# Marina and yacht club on a race morning (Marina and Yacht Club)

A leisure marina working a club race day. A run of five floating pontoon modules is laced end to end across the basin with eight finger berths hung off the seaward side, and four sloops and two motor cruisers lie bow to the walkway between them, with masts, booms and furled...

- **URL:** https://3dassets.dev/assets/marina-and-yacht-club-marina-and-yacht-c-e349a92e-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/38336/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/marina-and-yacht-club-marina-and-yacht-c-e349a92e-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:** 24,144 triangles, 54,826 vertices, 384 meshes, 12 materials, 1 textures
- **Size (m):** 48.12 × 16.01 × 36
- **Animations:** none
- **File size:** 1.18 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A leisure marina working a club race day. A run of five floating pontoon modules is laced end to end across the basin with eight finger berths hung off the seaward side, and four sloops and two motor cruisers lie bow to the walkway between them, with masts, booms and furled sails made up. The walkway is dressed the way a real one is: service pedestals at every berth, cleats and mooring rings, dock boxes, berth number posts, jetty lamps, boarding ladders, lifebuoy stands and a fire point, with the fuel berth and pump out station at the western corner and the club RIB alongside the tender pontoon. A hinged gangway drops from the quay to the pontoon tee through a keypad gate, and mooring piles with their guide collars hold the whole run on station. Ashore the yard is working: the travel hoist straddles the slipway head, the mast crane stands on the quay, one boat is stripped on a cradle beside its cockpit section and another is shrouded under a winter cover, with the dinghy park, trailer, rigging bench and sail bags behind them. The clubhouse, chandlery and race office face the water across the hardstanding, with the start line gun platform and the flag mast on the quay edge and the marks laid out in the fairway.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/38336/v1/model.glb" alt="Marina and yacht club on a race morning (Marina and Yacht Club)" 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/38336/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/38336/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/marina-and-yacht-club-marina-and-yacht-c-e349a92e-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.