Jean Moreno
Jean Moreno
I've just looked a bit into it but GitHub package support sounds very new and early; would love some help on how to properly set up the json file. For...
Thanks for this! I haven't looked into it in depth yet, but I'd like this repository to keep being the exact copy of the legacy image effect from Unity. Not...
Sorry I don't have much time to take care of this (nor a VR device to test on). Best bet would be to look into Unity's post processing source code...
We're getting that issue also... I tried to debug it but couldn't solve it. It looks like when using GUIClip code, it will mess with something else internally:  Here...
Update: I added **Handles.BeginGUI** and **Handles.EndGUI** to fix the problem: ``` static void OnSceneGUI(SceneView sceneView) { Status s = GetOrAddStatus(sceneView); if(s != null) { Handles.BeginGUI(); s.OnSceneGUI(sceneView); Handles.EndGUI(); } } ```...
Hello, I've started a branch with work on the Party Mode. You can read an overview of the current design/flow in this commit: https://github.com/UltraStar-Deluxe/Play/commit/458404afb0325c640800d4755e30e5f1c67db87d Additional notes: Game Modifier design: a...