{"id":14960653,"url":"https://github.com/lunaristudios/tsukisuite","last_synced_at":"2025-08-03T03:38:43.175Z","repository":{"id":45388623,"uuid":"164923503","full_name":"LunariStudios/TsukiSuite","owner":"LunariStudios","description":"A toolsuite created to make Unity development easier","archived":false,"fork":false,"pushed_at":"2023-07-28T21:00:20.000Z","size":5795,"stargazers_count":27,"open_issues_count":2,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-01T15:44:36.642Z","etag":null,"topics":["csharp","nuget-package","unity","unity-3d","unity-asset","unity-editor","unity-plugin","unity2d","unity3d","unity3d-plugin"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LunariStudios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-01-09T19:19:39.000Z","updated_at":"2024-04-21T15:47:33.000Z","dependencies_parsed_at":"2023-01-22T07:30:22.891Z","dependency_job_id":null,"html_url":"https://github.com/LunariStudios/TsukiSuite","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LunariStudios%2FTsukiSuite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LunariStudios%2FTsukiSuite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LunariStudios%2FTsukiSuite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LunariStudios%2FTsukiSuite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LunariStudios","download_url":"https://codeload.github.com/LunariStudios/TsukiSuite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219868059,"owners_count":16555878,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csharp","nuget-package","unity","unity-3d","unity-asset","unity-editor","unity-plugin","unity2d","unity3d","unity3d-plugin"],"created_at":"2024-09-24T13:22:41.030Z","updated_at":"2024-10-10T10:20:42.107Z","avatar_url":"https://github.com/LunariStudios.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Tsuki Logo](Assets/Content/128w/TsukiLogo_Black_128px.png)\n\n# TsukiSuite\n\n\u003cp\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/LunariStudios/TsukiSuite.svg\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/last-commit/LunariStudios/TsukiSuite.svg\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Unity%20Version-2020.3+-57b9d3.svg?style=flat\u0026logo=unity\"/\u003e\n\u003c/p\u003e\n\n\n\nTsukiSuite is an open source, free for commercial use suite of libraries created for making Unity development more\npleasant.\n\nEach library can be compared as a version of Google's [Guava](https://github.com/google/guava), but created for Unity\n\nCurrently, four of those exists, but more will be added as the need for them surface\n\n* Tsuki Runtime _(Core libraries \u0026 algorithms)_\n* Tsuki Entities _(Gameplay Architecture)_\n* Tsuki Editor _(Editor specific libraries)_\n* Tsuki Graphs _([Graph Theory](https://en.wikipedia.org/wiki/Graph_theory) libraries)_\n\n## Installation\n\n1. Install **Unity 2020.3** or older\n2. Open Unity Package Manager.  \n   ![](Static/Installation_1.png)\n3. Click on the the '+' icon, add package from git URL, as paste the following url: `https://github.com/LunariStudios/TsukiSuite.git#upm`.  \n   ![](Static/Installation_2.png)\n4. Wait for the download and you are done! You can now freely use Tsuki\n## Features and examples\n\n* Collections\n   ```csharp\n   List\u003cint\u003e list = new List\u003cint\u003e();\n   if (list.IsEmpty()) {\n       Debug.Log(\"Is empty!\");\n   }\n   ```\n   ```csharp\n   public struct Data {\n       public string Name;\n       public int Priority;\n   }\n   \n   List\u003cData\u003e data = PopulateListWithRandomData();\n   Data withHighestPriority = data.MaxBy(d =\u003e d.Priority)\n   ```\n* Colors\n    ```csharp\n    Color color = Colors.RandomColor();\n    Color newColor = color.SetHue(Mathf.Sin(Time.time));\n    ```\n    ```csharp\n    Color a = new Color(1, 0, 1, 1);\n    ColorHSV b = a;\n    ColorHSV colorHSV = new ColorHSV(0, 1, 1, 1);\n    Color c = colorHSV;\n    ```\n* Editor\n    ```csharp\n    // Bonus: A list of hidden UnityEditor GUIStyles!\n    var style = GUIStyles.Get(GUIStyles.box);\n    var labelRect = position.GetLine(2); \n    EditorGUI.LabelField(labelRect, \"I am on the third with the console info style!\", style);\n    ```\n* UI\n    ```csharp\n    // No need to declare a copy of Graphic.color\n    Text.SetAlpha(Mathf.Sin(Time.time));\n    Text.SetHue(Mathf.Cos(Time.time));\n    ```\n* And many more\n\n## Planned features\n\n* Code Generation tool using T4 templates.\n* Best practices knowledge base and bad practice detection.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flunaristudios%2Ftsukisuite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flunaristudios%2Ftsukisuite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flunaristudios%2Ftsukisuite/lists"}