1. Preface
- What is a hot update
Instead of re-downloading the client and installing it when a game or software is updated, resource or code updates are made internally while the application is launched. - Unity's current hot update solution
HybridCLR, Xlua, ILRuntime, etc. - Unity's current common resource management solutions
AssetBundles, Addressable, YooAsset, etc.
Here we use HybridCLR + YooAsset solution for hot update
(Addressable program resource management is not recommended, I personally feel that the pit is more than a billion points)
2.Create development environment
Using VS2022 here, Unity editor version 2022.3.20f1cf1
3. Install HybridCLR
- First you need to install Windows Build Support (IL2CPP) for the editor in Unity Hub
- In the main menu, click Window/Package Manager/+/Add packages from git URLs.
(of a form etc) fill in/focus-creative-games/hybridclr_unity.git
- Create three folders "Scenes", "Scripts" and "YooAssset" in the Assets directory.
- Create a Main screen in the Scenes folder (right click/create/scene) and double click to open it
- Create an empty object in the scene
- Then create the file in the Scripts folder
(Used to output logs)
using ;
using UnityEngine;
public class ConsoleToScreen : MonoBehaviour
{
const int maxLines = 50;
const int maxLineLength = 120;
private string _logStr = "";
private readonly List<string> _lines = new();
public int fontSize = 15;
void OnEnable() { += Log; }
void OnDisable() { -= Log; }
public void Log(string logString, string stackTrace, LogType type)
{
foreach (var line in ('\n'))
{
if ( <= maxLineLength)
{
_lines.Add(line);
continue;
}
var lineCount = / maxLineLength + 1;
for (int i = 0; i < lineCount; i++)
{
if ((i + 1) * maxLineLength <= )
{
_lines.Add((i * maxLineLength, maxLineLength));
}
else
{
_lines.Add((i * maxLineLength, - i * maxLineLength));
}
}
}
if (_lines.Count > maxLines)
{
_lines.RemoveRange(0, _lines.Count - maxLines);
}
_logStr = ("\n", _lines);
}
void OnGUI()
{
= (, ,
new Vector3( / 1200.0f, / 800.0f, 1.0f));
(new Rect(10, 10, 800, 370), _logStr, new GUIStyle { fontSize = 10 });
}
}
- will be mounted on the newly created empty object
- In the Scripts folder create
HotUpdate
file (paper) - Right-click in the HotUpdate folder to create the assembly
HotUpdate
- Open the menu HybridCLR/Installer, and then click Install to install, after the installation is complete, it will show the installed version of the
- Open HybridCLR/Settings and configure it as follows
- Then click
player (of computer games)
The following configurations are made
4. Configure YooAsset
- strike (on the keyboard)
Edit/Project Settings/Package Manager
Add the following information
Name: yooasset
URL:
Scope(s):
2. Click Window/Package Manager in the main menu to switch to theMy Registry
Install YooAsset