All Projects ā†’ Kolyasisan ā†’ Core Update Manager

Kolyasisan / Core Update Manager

Licence: other
A Performant Update Manager for Unity

Projects that are alternatives of or similar to Core Update Manager

Port-Able-Suite
šŸŒ Manager for portable applications
Stars: āœ­ 35 (+40%)
Mutual labels:  manager, update
Unityandroidhotupdate
(Unity3Dēƒ­ę›“ꖰ) provide a way to hot update Unity app on Android, support code&resources, not need lua js or IL runtime etc..., will not disturb your project development; just loading the new version apk file to achieve.
Stars: āœ­ 85 (+240%)
Mutual labels:  update, unity
Eazy Sound Manager
Eazy Sound Manager is a simple Unity3D tool which aims to make sound and music management in games easier
Stars: āœ­ 135 (+440%)
Mutual labels:  unity, manager
BM
The Utility to Install Songs, Install Mods, Install/Update BMBF, Install HitSounds, download automatically made Playlists, get better support, switch between the modded and unmodded Version of Beat Saber, do full Backups and way more
Stars: āœ­ 33 (+32%)
Mutual labels:  manager, update
Code Notes
A simple code snippet & gist manager for developers built with Electron & Vue.js šŸš€
Stars: āœ­ 919 (+3576%)
Mutual labels:  manager
Number Wizard Ui Original
Introducing basic User Interface in the Complete Unity C# Developer 2D course (http://gdev.tv/cudgithub)
Stars: āœ­ 18 (-28%)
Mutual labels:  unity
Centrifuge
Cross-platform runtime mod loader and API for any Unity-based game. Supports Unity 5 and up!
Stars: āœ­ 18 (-28%)
Mutual labels:  unity
Entitypostprocessor2d
A unity package for applying post-processing effects to assembled 2D assets
Stars: āœ­ 17 (-32%)
Mutual labels:  unity
Unitycopylightingsettings
Unity editor extension to copy&paste lighting settings from one scene to another.
Stars: āœ­ 25 (+0%)
Mutual labels:  unity
Unity Powershell
PowerShell module for managing EMC Unity arrays
Stars: āœ­ 23 (-8%)
Mutual labels:  unity
Simpleunitytcp
šŸ–§ Simple Unity Project to show how TCP communication are builded in C# without multi-threading or Unity network (Unet) involved.
Stars: āœ­ 22 (-12%)
Mutual labels:  unity
Ffmpegoutbinaries
Separated binary package of FFmpegOut Unity plugin
Stars: āœ­ 19 (-24%)
Mutual labels:  unity
Unity Ml Environments
This repository features game simulations as machine learning environments to experiment with deep learning approaches such as deep reinforcement learning inside of Unity.
Stars: āœ­ 23 (-8%)
Mutual labels:  unity
Pluginmanager
Unity Plugin Manager
Stars: āœ­ 18 (-28%)
Mutual labels:  unity
Timelinetool
Provides an easy way to change Playable Director's Bindings and Clips at runtime.
Stars: āœ­ 24 (-4%)
Mutual labels:  unity
Buttons And Boxes
A Sokoban-esque puzzle game developed in unity 3D in 2016
Stars: āœ­ 17 (-32%)
Mutual labels:  unity
Unitydbgdraw
DbgDraw is an API that provides the ability to render various 2D and 3D shapes for visual debugging purposes.
Stars: āœ­ 20 (-20%)
Mutual labels:  unity
Quadwarp
QuadWarp sample code for Unity
Stars: āœ­ 23 (-8%)
Mutual labels:  unity
Tracerysharp
C#/Unity port of Tracery (heavily WIP)
Stars: āœ­ 19 (-24%)
Mutual labels:  unity
Il2cppinspector
Powerful automated tool for reverse engineering Unity IL2CPP binaries
Stars: āœ­ 901 (+3504%)
Mutual labels:  unity

Core Update Manager

IMPORTANT NOTE: This branch is currently not under active development and is not considered to be suitable for production as-is. A greatly refactored version is currently being developed and battle-tested with a newer iteration of Grand Dad Mania: Revived and Know By Heart projects.

Core Update Manager is an optimized, extensible, garbage-free Update Manager for Unity.

First used for Grand Dad Mania Revived. If you're asking "why" then read this: https://blogs.unity3d.com/2015/12/23/1k-update-calls/

TL;DR: having magic methods called from Unity has a noticeable overhead with big amount of MonoBehaviours. If you wish to gain performance in this aspect or get more freedom/features at the expense of being a little more careful and using a little bit more memory, you can write your own Update Manager which will be the only thing that receives the magic Update method and distributes it across all the other objects. In Grand Dad Mania Revived we managed to save 0.5ms on average on Xiaomi Mi5S Plus.

While Unity is doubling-down on their Entity Component System paradigm, the usual MonoBehaviour approach is not going away, so this project can very well be useful to you. Managed updates will be faster than Unity's marshalled calls in almost any project.

How to install

Simply copy-paste https://github.com/Kolyasisan/Core-Update-Manager.git into Unity's Package Manager git field or create a local package folder manually. You can also import it directly into the project.

Quickstart


//Inherit from CoreMonoBeh
public class MyMonobeh : CoreMonoBeh
{
    //Create loop settings for this MonoBehaviour's CoreUpdate method
    public override void CoreInitSetup()
    {
        UpdateLoopSettings_CoreUpdate = UpdateLoopSettings.Create(this);
    }
    
    //These ones replace MonoBehaviour methods
    public override void CoreAwake() { }   
    public override void CoreStart() { }
    public override void CoreOnEnable() { }
    public override void CoreOnDisable() { }
    public override void CoreOnDestroy() { }
    
    //This method will be called according to the settings created in CoreInitSetup()
    public override void CoreUpdate() { }
    
    //Will not be called because the settings for these methods have not been created in CoreInitSetup()
    public override void CoreFixedUpdate() { }
    public override void CoreLateUpdate() { }
}

Read the wiki for instructions.

License

This project is distributed under the Beerware License
Beer

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].