Skip to main content
Version: v3

Collection Example

Important Attention Reminder

Coding Style wiki


Create Hotfix Package

Create an independent Package to collect related DLLs.

Attention The image example here is an independent Package. If you want to use a single Package for development and collection, it depends on the team's development needs.

Collect Hotfix Main Scene

A dedicated main driver scene for the hot-update project.

Reminder Process Overview: Build and run AOT Main Scene -> After hotfixing in AOT -> Load Hotfix Main Scene (driving subsequent stages of the entire project's hot-update process) -> Complete hot-update.

Basically, more than 80 ~ 90% of the project is hot-updated, and even the code implementing AOT business logic may be less than 5 ~ 10% of the project.

Collect AOT DLL

Drag the AOTDlls from the HotfixCollector folder into the YooAsset collector, as shown in the figure.

Reminder You can collect them in your own way. This is just an example.

Collect Hotfix DLL

Drag the HotfixDlls from the HotfixCollector folder into the YooAsset collector, as shown in the figure.

Reminder You can collect them in your own way. This is just an example.

Additionally, you can refer to the thinking in Master Project and Hotfix Project Process Architecture Description for process construction.