Cobertos

Results 83 comments of Cobertos

> I think Webpack and Browserify already shim the streams module Webpack recently dropped support for that in 5+, but the general recommendation is that you're supposed to polyfill it...

Was looking for the same thing as well, I ended up doing ```javascript config.module.rules.push({ test: /webm-writer[\\/]/, loader: 'string-replace-loader', options: { search: 'require(\'fs\')', replace: 'null' } }); ``` would love to...

An even hacky-er solution that I've started to do is just putting the KV props right in the entity name. This way they traverse the whole import pipeline but I...

Wow thanks! I will try this and report back

![image](https://github.com/lasa01/Plumber/assets/6759176/1ba6da37-decd-4fd2-85c5-818d6a60b86d) I was able to get it built and working, the additional code in `unknown_entities.py` was very simple. I will push up a commit to a fork. The instructions you...

Pushed up a commit to https://github.com/Cobertos/Plumber/tree/feature/unknown-entity-properties , I can make a PR if desired? Only open questions I thought of while working on this: * Should entity class be added...

Ah, I realized this does not work for brush entities, ~~but it looks like BuiltBrushEntity inherits from BaseEntity so it should be possible to do the same thing for those.~~...

**PR** - Okay, I will get the PR in later today. **Test with Blender 2.90** - Sure, I can test 2.90, it will take me a bit longer to get...

After experimenting it looks like I can in fact just use `file-loader` to load the tests like this module does, but with better integration into Webpack. I also had to...

No worries, thank you for the wonderful library! On Tue, Jun 30, 2020, 7:21 PM Preet wrote: > Argh I must have forgotten to update the docs. Thanks for reporting....