# Laboratory floor, open topped (Science Laboratory and Cleanroom)

A whole research laboratory and its cleanroom suite laid out on 2 m floor tiles and 2 m wall bays, deliberately left open topped so the camera and a walking player can see into every part of it. Along the back wall a seven module bench run turns a corner on its corner unit...

- **URL:** https://3dassets.dev/assets/science-laboratory-and-cleanroom-laborat-fe14c4c6-starter-scene
- **GLB (direct, CORS *, immutable):** https://cdn.3dassets.dev/assets/37185/v1/model.glb
- **Download (counted):** https://3dassets.dev/download/science-laboratory-and-cleanroom-laborat-fe14c4c6-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:** 97,496 triangles, 106,389 vertices, 433 meshes, 12 materials, 0 textures
- **Size (m):** 18.03 × 2.82 × 12.016
- **Animations:** none
- **File size:** 2.10 MB
- **Downloads:** 0
- **AI used (contributor-reported):** yes; model: Claude Opus 5

## About

A whole research laboratory and its cleanroom suite laid out on 2 m floor tiles and 2 m wall bays, deliberately left open topped so the camera and a walking player can see into every part of it. Along the back wall a seven module bench run turns a corner on its corner unit and returns down the left wall, carrying reagent shelves, a service spine of gas taps, the wash up sink, a balance in its draught shield, a pH meter, a hot plate stirrer, a vortex mixer and a bench of racks, beakers, flasks, cylinders and plates, with a spectrophotometer, a centrifuge and three microscopes on the return. A five module island runs down the middle with a rotary evaporator, a water bath, a gel tank and power pack, a fraction collector and an inverted microscope on it, and stools drawn up to both. Two fume cupboards, one with its sash raised, stand beside a biosafety cabinet at the back, with the minus eighty freezer, the laboratory fridge and the incubator against the cleanroom wall and the autoclave, drying oven and vacuum pump on a bench at the front. The left wall carries the whiteboard, the safety shower, the eyewash station, two chemical stores and the waste bins, with the writing up desk in the open. Behind a 1 m cleanroom panel run with two pass through hatches, two vision panels and an interlocked door pair sits the suite itself: gowning benches and lockers under three ceiling filter panels, a walk through air shower, a clean bench of plates, vials, tips and glassware, an instrument bench down the side wall and a particle counter on its stand.

## Use with three.js

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

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

## React Three Fiber

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

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

## <model-viewer>

```html
<model-viewer src="https://cdn.3dassets.dev/assets/37185/v1/model.glb" alt="Laboratory floor, open topped (Science Laboratory and Cleanroom)" 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/37185/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/37185/v1/model.glb")) await gltf.InstantiateMainSceneAsync(transform);
```

---
JSON: https://3dassets.dev/api/v1/assets/science-laboratory-and-cleanroom-laborat-fe14c4c6-starter-scene · Loads with a plain GLTFLoader: no Draco/KTX2 loaders needed.