Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to render gltf model #137

Open
nirajupadhyay11 opened this issue Jan 30, 2020 · 3 comments
Open

Unable to render gltf model #137

nirajupadhyay11 opened this issue Jan 30, 2020 · 3 comments

Comments

@nirajupadhyay11
Copy link

nirajupadhyay11 commented Jan 30, 2020

Hi,

I am using following versions of aframe and aframe-react

"aframe": "^1.0.3",
"aframe-react": "^4.4.0",

I am trying to render a gltf model -

    <main>
      <Container className={classes.cardGrid} maxWidth="lg">          

        <Scene embedded>
          <a-assets>
            <a-asset-item id="earth" src="https://cdn.glitch.com/36cb8393-65c6-408d-a538-055ada20431b/Astronaut.glb?1542147958948"></a-asset-item>       
          </a-assets>
         
          <a-box color="red" depth="2" height="4" width="0.5" position="0 0 -2"></a-box>

          <Entity gltf-model={{src:'#earth'}}></Entity>
       
        </Scene>
      </Container>
    </main>

but while the box is rendered, the gltf model does not get rendered. Could you please help?

@nirajupadhyay11
Copy link
Author

Here is a sandbox to recreate this issue -

https://codesandbox.io/s/aframe-react-porh5

@nries1
Copy link

nries1 commented Feb 24, 2020

I am having the same issue.

@paolis92
Copy link

Hi, the issue is that you are using gltf-model like this:
gltf-model={{src:'#earth'}}
when it should be:
gltf-model={"#earth"}

The same goes for your example
gltf-model={{src:'#model'}}
becomes
gltf-model={"#model"}

image

(I moved a bit the sphere because the astronaut was inside of it)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants