Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/AnisimovArthur/UnityTools
Editor and Runtime tools for Unity.
https://github.com/AnisimovArthur/UnityTools
asset csharp package tool unity unity-asset unity-editor unity-scripts unity-tool unity2d unity3d unity3d-plugin
Last synced: 2 months ago
JSON representation
Editor and Runtime tools for Unity.
- Host: GitHub
- URL: https://github.com/AnisimovArthur/UnityTools
- Owner: AnisimovArthur
- License: mit
- Created: 2020-06-13T18:06:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T22:10:22.000Z (5 months ago)
- Last Synced: 2024-09-10T02:51:34.537Z (5 months ago)
- Topics: asset, csharp, package, tool, unity, unity-asset, unity-editor, unity-scripts, unity-tool, unity2d, unity3d, unity3d-plugin
- Language: C#
- Homepage:
- Size: 92.8 KB
- Stars: 11
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Summary
Unity package with Editor and Runtime tools.# Table of contents
### Getting started
* [Install (Package Manager)](#gs-install-pm)
* [Install (Manifest)](#gs-install-manifest)
* [Update](#gs-update)### Runtime Tools
* [Scheduler](#rt-scheduler)
* [Event Handler](#rt-eventhandler)
* [Object Pool](#rt-objectpool)
* [Extensions](#rt-extensions)
* [GizmosPro](#rt-extensions-gizmospro)
* [PlayerPrefs](#rt-extensions-playerprefs)
* UI Extensions
* Transform (RectTransform) Extensions
* [Utils](#rt-utils)
* [Patterns](#rt-utils-patterns)
* [Singleton](#rt-utils-patterns-singleton)### Editor Tools
* [Toolbar](#et-toolbar)
* [Toolbar Button](#et-toolbar-button)
* [Toolbar Popup](#et-toolbar-popup)
* [Toolbar Label](#et-toolbar-label)
* [Toolbar Scene Loader](#et-toolbarsceneloader)
* [Inspector Button](#et-inspectorbutton)
* [Extensions](#et-extensions)
* [EditorPrefs](#et-extensions-editorprefs)
# Getting Started**Note:** If you use [**Assembly Definitions**](https://docs.unity3d.com/Manual/ScriptCompilationAssemblyDefinitionFiles.html) you have to add references to your Assembly Definition.
Add ```Archie.UnityTools.Editor.asmdef``` in order to use Editor Tools.
Add ```Archie.UnityTools.Runtime.asmdef``` in order to use Runtime Tools.## Install package via Package Manager
You can add the package dependency via Unity's Package Manager .
1. Open Package Manager: Window -> Package Manager.
2. From the top left, click on the "+" button.
3. Input ```https://github.com/AnisimovArthur/UnityTools.git``` in the input field.
4. Click Add.## Install package via Manifest
The second option is to install via the manifest.To use the package you have to add the dependency to the project's Packages/manifest.json file.
```json
"com.archie.unitytools": "https://github.com/AnisimovArthur/UnityTools.git#1.0.5",
```## Update package
To update the package you have to update the dependency version in the project's Packages/manifest.json file.For example:
Old: ```#0.5.1-preview```
New: ```#1.0.5```# Runtime Tools
## Scheduler
Tool for delayed event execution.```csharp
using UnityEngine;
using UnityTools;public class SchedulerExample : MonoBehaviour
{
private void Awake()
{
// Debug.Log should happens in 2 seconds.
var scheduled = Scheduler.Schedule(2.0f, () => Debug.Log("Hello World!"));// First option to cancel Debug.Log("Hello World!") above
scheduled.Cancel();// Second option to cancel Debug.Log("Hello World!") above
// Scheduler.Cancel(scheduled);// As a result, you will see only "I'm a cat." in the console because "scheduled" was canceled above
Scheduler.Schedule(0.5f, delegate
{
Debug.Log("I'm a cat.");
});
}
}
```Generic Event System.
The Event System allows components to Subscribe, Unsubscribe, and Execute events.```csharp
using UnityEngine;
using UnityTools;public class ExampleComponent : MonoBehaviour
{
private void Awake()
{
EventHandler.Subscribe("FirstEvent", PrintMessage);
EventHandler.Subscribe("SecondEvent", PrintHello);EventHandler.Unsubscribe("SecondEvent", PrintHello);
EventHandler.Execute("FirstEvent", Time.time.ToString(), gameObject);
EventHandler.Execute("SecondEvent");EventHandler.Subscribe(gameObject, "LocalEvent", PrintName);
EventHandler.Execute(gameObject, "LocalEvent");
}private void PrintHello()
{
Debug.Log("Hello");
}
private void PrintName()
{
Debug.Log(name);
}private void PrintMessage(string message, GameObject obj)
{
Debug.Log(message + " " + obj.name);
}
}
```
As a result, you will see in the console1) 0 GameObject
You will not see "Hello" a second time because you are unsubscribing from this event in the code.
Then you will see the names of the components as much as you have GameObjects with that component because, we are using "LocalEvent" to use the local Event system on the local object.## Object Pool
Tool to use Pooled GameObjects.```csharp
using System.Collections.Generic;
using UnityEngine;
using UnityTools;public class Example : MonoBehaviour
{
[SerializeField] private GameObject prefab;void Start()
{
var pooledObjects = new List();
for (int i = 0; i < 100; i++)
pooledObjects.Add(ObjectPool.Get(prefab));for (int i = 0; i < 100; i++)
ObjectPool.Return(pooledObjects[i]);
}
}
```Extra gizmos for default UnityEngine.Gizmos.
```csharp
using UnityEngine;
using UnityTools;private void OnDrawGizmos()
{
GizmosPro.DrawWireCylinder(transform.position, transform.up, 2.5f, 5, Color.green);
GizmosPro.DrawWireCircle(transform.position, transform.up, 2.5f, Color.red);
}```
Using PlayerPrefsPro to save/get a value of custom types from PlayerPrefs.
Supported types:
```csharp
using UnityTools;// Boolean
PlayerPrefsPro.GetBool("BoolKey");
// System.DateTime
PlayerPrefsPro.SetDateTime("DateTimeKey", System.DateTime.Now);
```## Utils
### Patterns
#### SingletonEasy-to-use Singleton implementation.
```csharp
using UnityTools;public class Example : Singleton
{
}
```The minimum code to add a custom tool to the toolbar:
```csharp
using UnityEditor;using UnityTools.Editor;
[InitializeOnLoad]
public class ToolbarExample
{
static ToolbarExample()
{
ToolbarTools.AddTool(new ToolbarButton(), ToolbarSide.Right);
}
}
```
```csharp
static ToolbarExample()
{
ToolbarTools.AddTool(new ToolbarButton("Button", PrintMessage), ToolbarSide.Left);
}private static void PrintMessage()
{
UnityEngine.Debug.Log("Editor button clicked.");
}
```
### Toolbar Popup
```csharp
static ToolbarExample()
{
var genericMenu = new GenericMenu();
genericMenu.AddItem(new UnityEngine.GUIContent("Load scene Game"), false, () => LoadSceneByName("Game"));ToolbarTools.AddTool(new ToolbaPopup(genericMenu, "My Popup"), ToolbarSide.Right);
}private static void LoadSceneByName(string name)
{
UnityEditor.SceneManagement.EditorSceneManager.LoadScene(name);
}
```
### Toolbar Label
```csharp
static ToolbarExample()
{
ToolbarTools.AddTool(new ToolbarLabel("My Label"), ToolbarSide.Left);
}
```#### Icon for toolbar items
You can provide a tool icon as shown below.```csharp
static ToolbarExample()
{
var icon = Resources.Load($"YOUR_PATH_TO_ICON");
ToolbarTools.AddTool(new ToolbarButton("Button", icon), ToolbarSide.Left);
}
```This tool is developed by [Toolbar](#et-toolbar) functionality. You can easily add quick access to your scenes.
```csharp
using UnityEditor;using UnityTools.Editor;
[InitializeOnLoad]
public static class ToolbarLoaderToolExample
{
static ToolbarLoaderToolExample()
{
ToolbarSceneLoader.AddScene("Scene 1", "Content/Scenes/1.unity");
ToolbarSceneLoader.AddSeparator("Other Scenes");
ToolbarSceneLoader.AddScene("Test Scenes/Test Scene 1", "Content/Scenes/Test/Test 1");
}
}
``````csharp
using UnityEngine;#if UNITY_EDITOR
using UnityTools.Editor;
#endifpublic class Example : MonoBehaviour
{
private const string ExampleString = "Example string";#if UNITY_EDITOR
[Button("Do Log ExampleString")]
private void DoSomething()
{
Debug.Log(ExampleString);
}
#endif
}
```**Note:** you have to use [**Platform dependent compilation**](https://docs.unity3d.com/Manual/PlatformDependentCompilation.html) in order to have an Inspector Button in Runtime code.
Using EditorPrefsPro to save/get a value of custom types from EditorPrefs.
Supported types:
```csharp
using UnityTools.Editor;// Bool
EditorPrefsPro.SetBool("BoolKey", true);
// System.DateTime
EditorPrefsPro.SetDateTime("DateTimeKey", System.DateTime.Now);
```# License
This package licensed under the [MIT license](https://github.com/AnisimovArthur/UnityTools/blob/master/LICENSE).