tong / three.hx

Haxe→Three.js type definitions
28 stars 5 forks source link

@:jsRequire support #11

Closed kevinresol closed 3 years ago

kevinresol commented 4 years ago

Currently I add var THREE = require('three'); at the top of the generated output to make it work on my bundled setup.

or in webpack:

plugins: [
    new webpack.ProvidePlugin({
        THREE: 'three'
    })
],