Is it possible to use the OrthographicTrackballControls
of three.js
with Angular 4? I tried with:
npm install --save three-orthographic-trackball-controls
And in my component:
import { OrthographicTrackballControls } from 'three-orthographic-trackball-controls';
I had no success and no idea on how to do this. I found solutions for OrbitControls
, but using another npm
package and RequireJS
. Any ideas to solve this issue will be helpful. Thanks in advance.
See working example of using Angular + Three.js including OrbitControls and ColladaLoader: https://github.com/makimenko/angular-three-examples
Currently, Three.js examples are not included into a module and use them in Angular typescript code could be a little bit tricky. One of solution/workaround could be:
Firstly, include dependencies:
Secondly, import in component:
Replace OrbitControls to OrthographicTrackballControls in scene.component.ts. Most probably Camera characteristics should be adjusted as well.
Hope this could help you to start. Also it shows an alternative solution (directly accessing original examples from three.js module without installation of additional NPM packages).