aframe-react icon indicating copy to clipboard operation
aframe-react copied to clipboard

ObjLoader

Open glmcz opened this issue 8 years ago • 5 comments

Hi all, I was traying to load obj model throught aframe-react component <Entity> 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 ?

glmcz avatar Aug 25 '17 17:08 glmcz

Components expect a string to parse, does:

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

work for for you?

cwervo avatar Sep 18 '17 09:09 cwervo

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

no-obj-model

glmcz avatar Sep 18 '17 20:09 glmcz

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 avatar Sep 19 '17 16:09 cwervo

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?

cwervo avatar Sep 19 '17 16:09 cwervo

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 ... <Entity obj-model='obj: has.obj' /> <Entity obj-model='obj: ./public/cup.obj' />

glmcz avatar Sep 19 '17 22:09 glmcz