How do I import 3d models into my scene? #255
Answered
by
jbaicoianu
jbaicoianu
asked this question in
FAQs
-
I have an existing 3d model, and I'd like to use it in my scene |
Beta Was this translation helpful? Give feedback.
Answered by
jbaicoianu
Apr 7, 2023
Replies: 1 comment
-
You can import a 3d object into your scene by defining it as an <janus-viewer>
<assets>
<assetobject id="my_house" src="https://example.com/models/myhouse.glb" />
</assets>
<room>
<object id="my_house" />
</room>
</janus-viewer> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jbaicoianu
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can import a 3d object into your scene by defining it as an
<AssetObject>
asset in the<assets>
section of your Janus markup. For example: