supermedium / aframe-react

:atom: Build virtual reality experiences with A-Frame and React.
https://ngokevin.github.io/aframe-react-boilerplate/
MIT License
1.42k stars 152 forks source link

ObjLoader #102

Open glmcz opened 7 years ago

glmcz commented 7 years ago

Hi all, I was traying to load obj model throught aframe-react component whit code below, but without any success. Did I have to define geometry and material props ? If yes how could I get them from obj-loader ? <Entity obj-model={{src: './src/h06_low.obj'}}>

PS: <Entity obj-model={{obj: './src/h06_low.obj' }}/> too without success ...

Can someone please provide any tips or example how to load obj model ?

cwervo commented 7 years ago

Components expect a string to parse, does:

<Entity obj-model='obj: src/h06_low.obj' />

work for for you?

glmcz commented 7 years ago

Yes many times... , without success... Only plain HTML attributes

no-obj-model

cwervo commented 6 years ago

Have you tried putting the model in the public directory instead of the src directory? I'm not sure how serving things in the src directory works, but you could try putting h06_low.obj in public and then do something like:

<Entity obj-model='obj: h06_low.obj' />

That structure works for me

cwervo commented 6 years ago

I got the public serving by working off of the A-Frame React boilerplate, try cloning that and putting your model in public and using obj-model as I suggested above?

glmcz commented 6 years ago

Yes Im using A-Frame React boilerplate, what you posted without any modification,for the sake I cloned it again, but still none of this paths work for me. I cant see object even if I use different obj model .... using Windows 7 and model was moved to public dir ...