# Clothing shop floor with rails, fitting rooms and a homeware corner (Clothing Rail and Wardrobe)

A small clothes shop laid out as one place on the pack own board floor: a run of three coupled straight rails down the middle hung with shirts, a blouse, a jacket, jumpers, a hoodie, two dresses, a covered suit and trousers, with two empty hangers at the end of the run. A...

- **URL:** https://3dassets.dev/assets/clothing-rail-and-wardrobe-clothing-rail-d260b08c-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/35480/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/clothing-rail-and-wardrobe-clothing-rail-d260b08c-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:** 46,332 triangles, 97,467 vertices, 158 meshes, 12 materials, 0 textures
- **Size (m):** 9 × 2.221 × 6
- **Animations:** none
- **File size:** 1.70 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A small clothes shop laid out as one place on the pack own board floor: a run of three coupled straight rails down the middle hung with shirts, a blouse, a jacket, jumpers, a hoodie, two dresses, a covered suit and trousers, with two empty hangers at the end of the run. A second run of two rails turned a quarter on down the left hand wall carries coats, a jacket and shirts. A round rail of coats and knitwear turns beside the middle run, a four way stand faces four ways in the middle of the floor, and two coupled stock bays across the back carry folded tees, jumpers, jeans, shorts, shirts, a hoodie, a towel, a scarf, socks and size cubes. Three fitting room cubicles stand coupled along the back left with a wall bracket of coats hung off the end of the run. The homeware corner down the right has the wardrobe, the chest of drawers with a stack of tees on top, and the full length mirror; the accessory table, shoe rack and mannequin forms stand across the front of the shop, and a laundry basket, the steamer and a ticket stand sit behind the rails with a second basket by the mirror. Every garment is static geometry in a settled pose, and the mannequin forms are plain and undressed, because there is no cloth simulation and no skinning in this library.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/35480/v1/model.glb" alt="Clothing shop floor with rails, fitting rooms and a homeware corner (Clothing Rail and Wardrobe)" 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/35480/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/35480/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/clothing-rail-and-wardrobe-clothing-rail-d260b08c-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.