drag to orbit · scroll to zoom
Hotlink or download it. The snippet below just works.
Every asset and kit, current and future · lifetime updates
// free asset: hotlink it. GLB works in three.js, Unity, Godot, Blender:
new GLTFLoader().load(
'https://threejs-3d-assets.com/cdn/watermelon-slice-bd255f.glb',
(gltf) => scene.add(gltf.scene)
);
// or the drop-in ES module (three.js, zero loaders):
import { createAsset } from 'https://threejs-3d-assets.com/cdn/watermelon-slice-bd255f.mjs';
scene.add(createAsset());