# Bazaar Street and Shrine at Trading Hours (Indian Bazaar Street and Temple)

A 32 m bazaar street laid in one continuous surface: a tarmac carriageway down the middle, kerbed footways either side and a paved yard along the east frontage. Five shop bays run down the west side with their roll shutters up, counters and back shelves in view, jali screened...

- **URL:** https://3dassets.dev/assets/indian-bazaar-street-and-temple-bazaar-s-ed705cc2-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/36582/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/indian-bazaar-street-and-temple-bazaar-s-ed705cc2-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:** 44,194 triangles, 105,974 vertices, 301 meshes, 12 materials, 3 textures
- **Size (m):** 28.85 × 9.887 × 32
- **Animations:** none
- **File size:** 2.07 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A 32 m bazaar street laid in one continuous surface: a tarmac carriageway down the middle, kerbed footways either side and a paved yard along the east frontage. Five shop bays run down the west side with their roll shutters up, counters and back shelves in view, jali screened balconies over them and water tanks and a satellite dish on the roofs, with a gated compound, an external staircase and a chamfered corner block beyond them. The east side holds a walled temple compound at the far end, a shrine with a five tier tower behind an open pillared porch, with a bell frame, a lamp column, a flagpole, an offering tray, clay lamps and an abstract carved stone around it, and a three bay arcade with a stepped tank behind it at the near end. Produce, spice, tea, sweet, cloth and garland pitches trade off the west footway under a chained run of awnings, with crates, sacks, trunks, a barrow, a beam scale and a basket rack on the east one. An auto rickshaw, a handcart, a scooter, a motorcycle and a bicycle stand in the road, charpoys, stools, pots and a public tap fill the yards, and the wiring runs down the street on chained poles with a transformer on one of them.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/36582/v1/model.glb" alt="Bazaar Street and Shrine at Trading Hours (Indian Bazaar Street and Temple)" 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/36582/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/36582/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/indian-bazaar-street-and-temple-bazaar-s-ed705cc2-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.