diff --git a/README.md b/README.md index 2040aed..2c73ecb 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ # Utils 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. \ No newline at end of file diff --git a/Runtime/Array.cs b/Runtime/ArrayExtensions.cs similarity index 92% rename from Runtime/Array.cs rename to Runtime/ArrayExtensions.cs index a1d03e2..0a12efd 100644 --- a/Runtime/Array.cs +++ b/Runtime/ArrayExtensions.cs @@ -2,7 +2,7 @@ using System; namespace Agoxandr.Utils { - public static class Array + public static class ArrayExtensions { public static T[] Append(this T[] array, T item) { diff --git a/Runtime/Array.cs.meta b/Runtime/ArrayExtensions.cs.meta similarity index 100% rename from Runtime/Array.cs.meta rename to Runtime/ArrayExtensions.cs.meta diff --git a/package.json b/package.json index 909c256..b58e603 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "de.agoxandr.utils", - "version": "2.6.1", + "version": "2.7.0", "displayName": "Utils", "description": "Utility useful for almost any project.", "licensesUrl": "https://github.com/Agoxandr/Utils/blob/master/LICENSE.md",