The award-winning spatial computing platform for artists, makers, and developers. Sketch in 3D, build physics worlds, and code spatial apps — all in your real space.
A creative playground where your imagination fills the room.
Draw in mid-air with Tilt Brush-powered tools. Audio-reactive brushes dance to your music.
Build Rube Goldberg machines, gravitational fields, and physics sandboxes on your table.
Redesign your room, plan a renovation, or prototype spatial layouts in your actual space.
Create interactive 3D lessons. Visualize molecules, explore solar systems, annotate in space.
Fill your room with lights, animated GIFs, YouTube videos, and thousands of 3D models.
const text = figmin.createObject(
figmin.ObjectType.TEXT3D, {
position: { x: 0, y: 1, z: 0 },
text: "Figmin XR"
});
text.onUpdate((dt) => {
let r = text.transform.rotation;
r.y += 45 * dt;
text.transform.rotation = r;
});
Build full spatial applications with JavaScript. Explore the API →
People on different headsets in the same physical room, sharing the same spatial experience. Meta Quest, Apple Vision Pro, and more — together.
“Figmin XR is absolutely the best mixed reality/creation tool I have ever used on any XR platform especially Vision Pro. Download this thing now and thank me later.”
Apple Vision Pro Review“I went looking for an app that could help me decorate my bedroom and this delivered way above my expectations. So much room for creativity here.”
Meta Quest Review“Figmin XR’s creative sandbox with text, physics, objects and images is mixed reality’s largest sandbox.”
UploadVR“The hidden features truly shine. There’s an abundance of VR objects, options, and activities that exceed your imagination.”
Quest Store Review“It’s fun. You can download thousands of things of all kinds. You can do roomsize paintings, with many different effects. Your only limit is your imagination.”
@Bizkit1961 — Meta Quest Store“Our son is loving testing out @FigminXR. One of the first things I showed him was an amazing painting and he’s hooked!”
@edgreig — Twitter“I was just standing under a 50ft dandelion and it felt like the first time I entered Morrowind, complete immersion.”
@Aidan_Wolf — Twitter“This app is always showing me new and amazing things.”
@jdunrrp — Twitter“One of the most incredible XR apps showcased at @ARealityEvent. Their booth stayed packed and I cannot wait for the multiplayer to launch.”
@jdunrrp — Twitter“@FigminXR is incredible. Apple this app needs to be on the platform day one.”
Twitter Review“Making art with my hands outdoors on @MetaQuestVR @FigminXR”
@eceertrey — Twitter“You can’t discuss the awesomeness of Mixed Reality without including @FigminXR! Had a blast creating scenes at the Airport.”
@gapascarella — Twitter“Maybe not a ‘big thing’ in terms of peoples’ awareness, but our family is loving Mixed Reality with @FigminXR.”
@AdrianaVecc — Twitter“This version of gardening is so meditative once you hit your flow. @FigminXR is very relaxing.”
@OG_VR_Gamer — Twitter“Mixed Reality is going to be huge for science education. Here is an example of a Mixed Reality Dinosaur learning experience made in @FigminXR.”
@OG_VR_Gamer — Twitter“With @FigminXR, it’s almost TOO EASY to turn silly ideas into reality in minutes! Tools such as this will revolutionize video production.”
@OG_VR_Gamer — Twitter“Made a full physics-based mixed reality pool game in about 15 minutes using only @FigminXR. The possibilities are endless!”
@OG_VR_Gamer — Twitter“Cookout was so much fun thanks to @FigminXR new multiplayer mode allowing us to build a mixed reality scene together. The FUTURE IS NOW!”
@jdunrrp — TwitterVideo tutorials covering everything from your first steps to advanced physics, 3D sketching, multiplayer, and the built-in web browser. Organized by category so you can jump right to what you need.
▶
Sketch Editor
Physics Editor
Multiplayer
Web Browser
Figmin XR includes a full Scripting API. Create interactive spatial applications, multiplayer experiences, and AI-powered tools — right inside mixed reality.
function init() {
// Load a 3D model and place it in front of the user
const model = figmin.createObject(figmin.ObjectType.MODEL3D, {
url: "https://example.com/spaceship.glb",
targetSize: 0.5
});
model.onStart((obj) => {
// Position it 1.5m in front of the camera
const cam = figmin.getCamera();
const p = cam.transform.position;
const fwd = cam.transform.forward;
const DIST = 1.5;
obj.transform.position = {
x: p.x + DIST * fwd.x,
y: p.y + DIST * fwd.y,
z: p.z + DIST * fwd.z,
};
obj.transform.rotation = cam.transform.rotation;
});
}
document.addEventListener("FigminReady", init);
Thousands of creators sharing ideas, getting help, and pushing the boundaries of mixed reality.
Available on all major XR platforms. One app, every platform.