sandsalamand
sandsalamand
Here is an example to demonstrate: ``` private void Start() { ModHelper.Events.Subscribe(Events.BeforeAwake); ModHelper.Events.Subscribe(Events.BeforeStart); ModHelper.Events.Subscribe(Events.BeforeEnable); ModHelper.Events.Subscribe(Events.AfterAwake); ModHelper.Events.Subscribe(Events.AfterStart); ModHelper.Events.Subscribe(Events.AfterEnable); ModHelper.Events.Event += OnEvent; } private void OnEvent(MonoBehaviour behaviour, Events ev) { switch (behaviour)...
Since this is something that should be done early to avoid having to rewrite a lot of code, I think it would be good to at least put a little...
I have no idea what the "Assets" section of the README is saying. What does this mean: "Code Assets are used to generate dependency free C# code"?
```C# static Vector4 SampleRepeat(Vector4[] source, int w, int h, int x, int y) { x = x % w; y = y & h; return source[y * w + x];...
Hello, I'm guessing that you don't have the time to work on this right now, but I'm wondering how difficult you think it would be to add. I love creating...
This pull request adds an extension class which generates an AnimatorController graph from a given StateMachine. For example, it converts code like this: Into this: The ChasingMacro StateMachine expands into...
I skimmed through the code and couldn't see any loop recursing through the root scene objects, but I just want to make sure. Is there a high-level explanation of how...
Fixes #66. While integrating #53, it seems that these lines were lost: ``` animator.entryTransitions = new AnimatorTransition[0]; animator.anyStateTransitions = new AnimatorStateTransition[0]; ``` As a result, the transitions were not being...
Samsung Reminders, Secure Folder, and Samsung Pass fail to open through Pie Launcher. Upon selecting one of those apps through the radial menu or through typing its name, there is...