Lordmau5
Lordmau5
I do have it wrapped in a `v-flex` container (later on it'll be a `div`)  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...
Added in v3.0.1
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...
Added in v3.0.1
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...
Added in v3.0.1
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? :)