# unity-architecture-toolkit **Repository Path**: itjiuping/unity-architecture-toolkit ## Basic Information - **Project Name**: unity-architecture-toolkit - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: dev - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-10-19 - **Last Updated**: 2024-10-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Architecture Toolkit [![](https://img.shields.io/badge/github-repo-blue?logo=github)](https://github.com/zigurous/unity-architecture-toolkit) [![](https://img.shields.io/github/package-json/v/zigurous/unity-architecture-toolkit)](https://github.com/zigurous/unity-architecture-toolkit/releases) [![](https://img.shields.io/badge/docs-link-success)](https://docs.zigurous.com/com.zigurous.architecture) [![](https://img.shields.io/github/license/zigurous/unity-architecture-toolkit)](https://github.com/zigurous/unity-architecture-toolkit/blob/main/LICENSE.md) The **Architecture Toolkit** contains data structures, design patterns, extensions, and utilities to help solve common architectural problems in Unity projects or simply make common programming tasks easier to manage. ## Reference - [Attributes](https://docs.zigurous.com/com.zigurous.architecture/manual/attributes) - [Behaviors](https://docs.zigurous.com/com.zigurous.architecture/manual/behaviors) - [Data Structures](https://docs.zigurous.com/com.zigurous.architecture/manual/data-structures) - [Events](https://docs.zigurous.com/com.zigurous.architecture/manual/events) - [Extensions](https://docs.zigurous.com/com.zigurous.architecture/manual/extensions) - [Scriptable Variables](https://docs.zigurous.com/com.zigurous.architecture/manual/scriptable-variables) - [Utilities](https://docs.zigurous.com/com.zigurous.architecture/manual/utilities) ## Installation Use the Unity [Package Manager](https://docs.unity3d.com/Manual/upm-ui.html) to install the **Architecture Toolkit** package. 1. Open the Package Manager in `Window > Package Manager` 2. Click the add (`+`) button in the status bar 3. Select `Add package from git URL` from the add menu 4. Enter the following Git URL in the text box and click Add: ``` https://github.com/zigurous/unity-architecture-toolkit.git ``` ## Namespace Import the package namespace in each script or file you want to use it. You may need to regenerate project files/assemblies first. ```csharp using Zigurous.Architecture; ```