Table of Contents

Getting Started

Ceres requires Unity 2022.3 LTS or later.

1. Install R3 with NuGetForUnity

Add NuGetForUnity through Window > Package Manager > + > Add package from git URL:

https://github.com/GlitchEnzo/NuGetForUnity.git?path=/src/NuGetForUnity

Open NuGet > Manage NuGet Packages, search for R3, and install version 1.3.0.

2. Add UniTask

Add UniTask through Package Manager using its Git URL:

https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask#2.5.3

3. Add Ceres

Add Ceres through Package Manager using:

https://github.com/AkiKurisu/Ceres.git?path=Packages/com.kurisu.ceres

Alternatively, add UniTask and Ceres to Packages/manifest.json:

"dependencies": {
    "com.kurisu.ceres": "https://github.com/AkiKurisu/Ceres.git?path=Packages/com.kurisu.ceres",
    "com.cysharp.unitask": "https://github.com/Cysharp/UniTask.git?path=src/UniTask/Assets/Plugins/UniTask#2.5.3"
}

Continue with Ceres Architecture and Concepts or Flow Quick Startup.