TankTheFrank

Results 7 comments of TankTheFrank

I forgot to add the fix proposal for the hardcoded path - add "/assets" as "basePath" in webpacker manifest plugin for the default template and remove it as a hardcoded...

I could be wrong but doesn't -e also adds the packed assets in the binary beside creating the archive? This increases the binary size significantly (esoecially with image assets) and...

For the prefix this should do it: generators/assets/webpack/templates/webpack.config.js.tmpl ``` new ManifestPlugin({ + publicPath: '/assets/', fileName: "manifest.json" }) ``` render/template_helpers.go b/render/template_helpers.go ``` - return filepath.ToSlash(filepath.Join("/assets", filePath)) + return filepath.ToSlash(filePath) ``` Basically...

Also considering that this "hack" in the engine relies on __jsc_getTypedArrayData being registered by jsb_prepare.js an assert or at least an error message when that function is not registered is...

AlignOnce doesn't exist in this plugin. How can it be supported if it's missing? Whatever you mean by "AlignOnce" is not what it is in Cocos Creator. Here is the...

> Encryption is not expensive any more, at least not if you have AES-NI (hardware accelerated encryption), which is quite common nowadays (at least in laptops and servers) Unless your...