Fixes, new readme

This commit is contained in:
Alexander Filippov 2021-06-27 21:08:30 +02:00
parent 8d06a104d0
commit 6037dc90f1
4 changed files with 14 additions and 2 deletions

View File

@ -1,2 +1,14 @@
# Utils # Utils
Unity package with utility useful for almost any project. Unity package with utility useful for almost any project.
## Features
* Hide the script field.
* Event Manager
* Event based.
* Call Update, FixedUpdate and LateUpdate from anywhere.
* Better performance than Unity methods.
* Automatic volume based reflection probe placer.
* Check if time has passed with the TimeSince struct.
* Camera Blender controls in the scene view.
* Package Manager Git updater.
* Append to an array.

View File

@ -2,7 +2,7 @@ using System;
namespace Agoxandr.Utils namespace Agoxandr.Utils
{ {
public static class Array public static class ArrayExtensions
{ {
public static T[] Append<T>(this T[] array, T item) public static T[] Append<T>(this T[] array, T item)
{ {

View File

@ -1,6 +1,6 @@
{ {
"name": "de.agoxandr.utils", "name": "de.agoxandr.utils",
"version": "2.6.1", "version": "2.7.0",
"displayName": "Utils", "displayName": "Utils",
"description": "Utility useful for almost any project.", "description": "Utility useful for almost any project.",
"licensesUrl": "https://github.com/Agoxandr/Utils/blob/master/LICENSE.md", "licensesUrl": "https://github.com/Agoxandr/Utils/blob/master/LICENSE.md",