pmndrs / gltfjsx

🎮 Turns GLTFs into JSX components
https://gltf.pmnd.rs
MIT License
4.73k stars 312 forks source link

Cannot set --compress value to false #17

Closed jonybekov closed 4 years ago

jonybekov commented 4 years ago

I'm trying to convert this gltf model to jsx component.

I tried to set --compress=false, but it doesn't help. Whatever I do, it removes names from meshes.

image

Is there problem with model itself or Have I ran the npx command wrong?

drcmda commented 4 years ago

seems like a small bug, i'll take a look

drcmda commented 4 years ago

as a quick workaround you can do compress=0, looks like it turns "false" to a string.

drcmda commented 4 years ago

never mind its fixed

jonybekov commented 4 years ago

Thanks dear!