aframe-react
aframe-react copied to clipboard
ObjLoader
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 ?
Components expect a string to parse, does:
<Entity obj-model='obj: src/h06_low.obj' />
work for for you?
Yes many times... , without success... Only plain HTML attributes
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
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?
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' />