# Club Courts and Terrace (Tennis Club and Courts)

A working tennis club built from the kit: a full doubles court of blue surface tiles inside a green surround, with the painted line set over them, the net up between its posts and singles sticks in place. Court fencing rings it, windbreak screens along the back run and a gate...

- **URL:** https://3dassets.dev/assets/tennis-club-and-courts-club-courts-and-t-578520e8-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/33649/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/tennis-club-and-courts-club-courts-and-t-578520e8-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, Stylized, Kit / Set
- **Geometry:** 16,764 triangles, 38,677 vertices, 145 meshes, 8 materials, 0 textures
- **Size (m):** 36.7 × 8.193 × 36.9
- **Animations:** none
- **File size:** 0.77 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A working tennis club built from the kit: a full doubles court of blue surface tiles inside a green surround, with the painted line set over them, the net up between its posts and singles sticks in place. Court fencing rings it, windbreak screens along the back run and a gate on the clubhouse side, with the umpire chair, two benches, a pair of players chairs under their parasols, the scoreboard, the speed board and the bags, rackets, towels and bottles of a session down the east tramline. A ball machine feeds the far half beside its hopper and basket, and the roller, the line trolley and the net winder are parked by the gate. West of the court the clubhouse stands assembled from window, door and wall bays between two gable ends under a full pitched roof, with a terrace of tables, parasols, chairs and planters in front of it, and a clay mini court, its net, a coaching whiteboard and the practice wall fill the far corner. Floodlight masts stand at the four corners and bleachers face the court from outside the fence.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/33649/v1/model.glb" alt="Club Courts and Terrace (Tennis Club and Courts)" 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/33649/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/33649/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/tennis-club-and-courts-club-courts-and-t-578520e8-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.