Hey everyone! I’ve been working on spacesvr for 3 years now and realized I never made a post here lol.
github: GitHub - musehq/spacesvr: A standardized reality for the future of the 3D Web.
spacesvr was made to provide structure for the end visitor experience of 3D worlds. By pushing one common control scheme, adoption will come just as it has with 2D websites. It’s made to fully remove the stress of accessibility, letting you focus on the storytelling.
Out of the box, you get
- Loading screen + Pause menu, the only HTML-based ux
- A physics based Player
- Built on react-three-fiber
- Mobile / desktop / vr support
- Tool system, comes with a Camera
- Multiplayer w/ voice chat
- Ready to use UX components for quick UX iteration: Text Input, Button, Switch
Below is the bare minimum code to get up and running. You can start adding all your r3f components under the StandardReality.
import { StandardReality, LostWorld } from "spacesvr";
function World() {
return (
<StandardReality>
<LostWorld /> // an example world with a floor, skybox, and fog
</StandardReality>
);
}
Here’s a world from the spacesvr examples that just has a lot of random items thrown into it: https://spacesvr.io/workshop
I’m currently working on a visual editor called Muse that is built fully on spacesvr. It’s Webflow for 3D worlds. Next month we will let you code custom components realtime in the first person editor, making for a fully immersed IDE. Here are some sites that came from our tools:
- https://3d.driphead.world
- https://muse.place/sidona
- https://muse.place/potcoin
- https://muse.place/mariokart
- https://muse.place/brielle
Would love to hear your thoughts on the framework or on Muse, and feel free to join our discord if you want to meet other builders!