Get Free 3D Models in MS Paint 3D then Add it to BabylonJS Project
Cassie Breviu
Posted on May 17, 2020
- Open Paint 3D
- Click 3D Library
- Search for the model you want
- Select the model to add it to the canvas
-
Menu
->Save As
->3D Model
- BOOM you have a free GLB 3D model to use in your game!
Add it to BabylonJS
- Copy GLB model file to the assets file in your project
- Import the model into the scene:
SceneLoader.ImportMesh("", "/assets/", "grapes.babylon", scene, function (
grapes
) {
// Set the target of the camera to the first imported mesh
camera.target = grapes[0];
});
Happy game building!
💖 💪 🙅 🚩
Cassie Breviu
Posted on May 17, 2020
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.