Three.js

Build 3D web experiences with proper resource management and performance patterns.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Three.js" with this command: npx skills add ivangdavila/threejs

Three.js Production Patterns

Resource Cleanup

  • Call .dispose() on geometries, materials, and textures before removing objects — Three.js never garbage collects GPU resources automatically
  • When removing a mesh: mesh.geometry.dispose(); mesh.material.dispose(); scene.remove(mesh) — missing any step causes memory leaks
  • Textures loaded via TextureLoader stay in GPU memory forever unless explicitly disposed — track and clean up on scene transitions

Render Loop

  • Always use renderer.setAnimationLoop(animate) instead of manual requestAnimationFrame — it handles VR, pauses when tab is hidden, and provides proper timing
  • For animations, use clock.getDelta() for frame-independent movement — raw frame counting breaks on different refresh rates

Responsive Canvas

  • On window resize, update both camera aspect AND renderer size: camera.aspect = width/height; camera.updateProjectionMatrix(); renderer.setSize(width, height)
  • Missing updateProjectionMatrix() after aspect change causes stretched/squished rendering
  • Use renderer.setPixelRatio(Math.min(window.devicePixelRatio, 2)) — values above 2 kill performance with minimal visual benefit

Imports and Setup

  • OrbitControls and other addons: import { OrbitControls } from 'three/addons/controls/OrbitControls.js' — the path varies by bundler, check your setup
  • Always set controls.enableDamping = true with OrbitControls and call controls.update() in render loop — without this, damping silently fails

Lighting

  • MeshBasicMaterial ignores all lights — use MeshStandardMaterial or MeshPhongMaterial for lit scenes
  • Add ambient light (new THREE.AmbientLight(0xffffff, 0.5)) as baseline — scenes with only directional lights have pitch-black shadows
  • HDR environment maps via PMREMGenerator give far better reflections than point lights on metallic materials

Loading Assets

  • GLTFLoader is the standard for 3D models — use Draco compression for large meshes (add DRACOLoader)
  • Texture loading is async — models may render black until textures load; use LoadingManager for loading screens
  • CORS blocks textures from other domains — host assets on same origin or configure proper CORS headers

Camera Issues

  • Default near/far planes (0.1 to 1000) cause z-fighting on large scenes — adjust to smallest range that fits your scene
  • Camera inside an object renders nothing — check position after loading external models (they may have unexpected transforms)
  • PerspectiveCamera FOV is vertical, not horizontal — 75 degrees is a common default

Performance

  • Merge static geometries with BufferGeometryUtils.mergeBufferGeometries() — each mesh is a draw call, fewer meshes = faster
  • Use InstancedMesh for many identical objects — hundreds of draw calls become one
  • Set object.frustumCulled = true (default) but verify large objects aren't disappearing at edges — bounding sphere may be wrong
  • Call renderer.info to debug draw calls, triangles, and textures in memory

Animation

  • AnimationMixer requires mixer.update(delta) every frame with actual delta time — passing 0 or skipping frames breaks animations
  • Skinned meshes (characters) need SkeletonHelper during development to debug bone issues

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Polymarket Politics Random Buyer

Randomly finds a live Polymarket politics market, checks trading context, and buys 1 USDC by default with explicit dry-run and live modes for AION Market.

Registry SourceRecently Updated
General

DB Schenker

德国铁路集团旗下物流巨头,专注欧洲最大陆运网络及多式联运,提供空运、海运及合同物流服务。

Registry SourceRecently Updated
General

Secretary Memory

OpenClaw 秘书式多分区记忆系统 v3.0。仿生现代秘书的笔记本分类法,支持:(1) 多分区并发搜索 + 每分区3条上下文召回,(2) 会话自动摘要,(3) 偏好自动提取 + 用户关系图谱,(4) 记忆冲突主动检测,(5) 定时 consolidation + 会话结束 hook,(6) 精细化恢复/回溯,...

Registry SourceRecently Updated
General

Hunt

Digital bounty hunter skill for finding, tracking, and managing online hackathon opportunities. Trigger when the user says "hunt", "find hackathons", "show m...

Registry SourceRecently Updated