Reputation: 39
All the last latest versions of threejs use es6 for most everything. I need the object loaders for obj, fbx, gftl in normal js code. Are they available or can someone convert them for me?
Jeff
Upvotes: 0
Views: 175
Reputation: 31086
Are they available or can someone convert them for me?
If you need a ES6 to ES5 conversion, you have to setup the transpiling workflow by yourself.
in normal js code
According to current JavaScript standards, ES6 features like class syntax or let
/const
is "normal" JavaScript code.
Upvotes: 1