├── .gitattributes ├── .gitignore ├── BitConverter.cs ├── ColorSpace ├── ColorSpace.cs ├── HSL.cs └── HSV.cs ├── ColorX.cs ├── ComponentExtensions.cs ├── Dispatcher.cs ├── GameObjectExtensions.cs ├── IEnumerableExtensions.cs ├── MathX.cs ├── Matrix4x4X.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── Resources.cs ├── StringExtensions.cs ├── Texture2DX.cs ├── TransformX.cs ├── UnityExtensions.Editor ├── GUIX.cs ├── Properties │ └── AssemblyInfo.cs └── UnityExtensions.Editor.csproj ├── UnityExtensions.csproj ├── UnityExtensions.sln ├── Vector2X.cs ├── Vector3X.cs ├── Vector4X.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable LF normalization for all files 2 | * -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /BitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/BitConverter.cs -------------------------------------------------------------------------------- /ColorSpace/ColorSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/ColorSpace/ColorSpace.cs -------------------------------------------------------------------------------- /ColorSpace/HSL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/ColorSpace/HSL.cs -------------------------------------------------------------------------------- /ColorSpace/HSV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/ColorSpace/HSV.cs -------------------------------------------------------------------------------- /ColorX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/ColorX.cs -------------------------------------------------------------------------------- /ComponentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/ComponentExtensions.cs -------------------------------------------------------------------------------- /Dispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Dispatcher.cs -------------------------------------------------------------------------------- /GameObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/GameObjectExtensions.cs -------------------------------------------------------------------------------- /IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /MathX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/MathX.cs -------------------------------------------------------------------------------- /Matrix4x4X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Matrix4x4X.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/README.md -------------------------------------------------------------------------------- /Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Resources.cs -------------------------------------------------------------------------------- /StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/StringExtensions.cs -------------------------------------------------------------------------------- /Texture2DX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Texture2DX.cs -------------------------------------------------------------------------------- /TransformX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/TransformX.cs -------------------------------------------------------------------------------- /UnityExtensions.Editor/GUIX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/UnityExtensions.Editor/GUIX.cs -------------------------------------------------------------------------------- /UnityExtensions.Editor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/UnityExtensions.Editor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnityExtensions.Editor/UnityExtensions.Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/UnityExtensions.Editor/UnityExtensions.Editor.csproj -------------------------------------------------------------------------------- /UnityExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/UnityExtensions.csproj -------------------------------------------------------------------------------- /UnityExtensions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/UnityExtensions.sln -------------------------------------------------------------------------------- /Vector2X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Vector2X.cs -------------------------------------------------------------------------------- /Vector3X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Vector3X.cs -------------------------------------------------------------------------------- /Vector4X.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/Vector4X.cs -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruening/unity3d-extensions/HEAD/packages.config --------------------------------------------------------------------------------