Lordmau5

Results 134 comments of Lordmau5

I do have it wrapped in a `v-flex` container (later on it'll be a `div`) ![image](https://user-images.githubusercontent.com/1345036/45587928-436b8c00-b93f-11e8-9849-c9fec6a5d2a8.png) So it seems it doesn't properly take the bounding box of the parent component...

It's a really hacky solution, but it ended up working: So basically, I still have the 3 separate `file-upload`s, but they run a custom `@input-file` method. ```html ... ... ......

All my upload filter does is the following: ```js inputFilter (newFile, oldFile, prevent) { if (!newFile) return; if (!/\.(png)$/i.test(newFile.name)) { prevent(); return; } newFile.blob = URL.createObjectURL(newFile.file); }, ``` As for...

I've added a variation of this effect in-dev already. Maybe I'll come back to this specific idea later on but for now, a SUPERHOT style effect would probably be good...

I will be looking into reworking how sounds are being played for effects in the 3.0 rewrite. I *thought* I've already made it so users could put their own sound...

v3.0.1 brought in a better way to override audio clips for every effect. Upon first launch of the GUI it'll create a subfolder called `ChaosModAudio` with a readme. Please refer...

I've tried this before but couldn't get it working properly - could you link me the CLEO mod so I could have a look at how it's doing this? :)