# Finishing Straight and Enclosures (Racecourse and Parade Ring)

The last furlong of a turf course and everything a spectator stands in behind it. Five track modules and a home turn run between white plastic running rail, striped with mown chevrons and carrying an open ditch, a steeplechase fence, a flight of hurdles and a water jump, each...

- **URL:** https://3dassets.dev/assets/racecourse-and-parade-ring-finishing-str-22b826b2-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/38657/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/racecourse-and-parade-ring-finishing-str-22b826b2-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:** 39,336 triangles, 86,979 vertices, 293 meshes, 12 materials, 0 textures
- **Size (m):** 97.43 × 9.024 × 67.306
- **Animations:** none
- **File size:** 1.48 MB
- **Downloads:** 2
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

The last furlong of a turf course and everything a spectator stands in behind it. Five track modules and a home turn run between white plastic running rail, striped with mown chevrons and carrying an open ditch, a steeplechase fence, a flight of hurdles and a water jump, each three panels wide with marker wings in front. The winning post stands on the inside rail with the photo finish mirror box square opposite, furlong markers and distance poles down the far side, and both starting stalls units coupled across the track at the top of the straight. Behind the rail the horse walk comes up through a gap closed by a tape barrier, the betting line of blank faced bookmakers boards, stools and umbrellas runs in front of a results board, a tote hut and two catering kiosks, and the grandstand rises in two banks of terracing under a cantilevered canopy with six private boxes along the top. The parade ring is a ten sided white rail on striped show lawn with its gate onto a gravel walkway, the weighing room and two runs of saddling boxes behind it, and the winner’s enclosure with its presentation dais beside them. A lorry park, a car park, the ground staff yard with its tractor, harrow, bowser and rail trolley, hedge boundaries and parkland trees close the plot. No horses, no people and no readable name anywhere on it.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/38657/v1/model.glb" alt="Finishing Straight and Enclosures (Racecourse and Parade Ring)" 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/38657/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/38657/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/racecourse-and-parade-ring-finishing-str-22b826b2-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.