Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/orikome/orikomeutils
A collection of utility scripts for Unity to help streamline development.
https://github.com/orikome/orikomeutils
helper unity unity3d utilities
Last synced: 3 months ago
JSON representation
A collection of utility scripts for Unity to help streamline development.
- Host: GitHub
- URL: https://github.com/orikome/orikomeutils
- Owner: orikome
- License: mit
- Created: 2024-07-29T05:51:54.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T09:23:15.000Z (5 months ago)
- Last Synced: 2024-10-10T09:44:12.677Z (3 months ago)
- Topics: helper, unity, unity3d, utilities
- Language: C#
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OrikomeUtils
A collection of utility scripts for Unity to help streamline common development tasks such as UI transitions and layer mask management.
## Installation
1. Open your Unity project.
2. Navigate to `Window > Package Manager`.
3. Click the `+` button and select `Add package from git URL...`.
4. Enter the GitHub URL: `https://github.com/orikome/OrikomeUtils.git`.## Usage Example
```csharp
using OrikomeUtils;// Fades out all Image and TextMeshProUGUI components under 'myTransform' over 2 seconds.
StartCoroutine(TransitionUtils.FadeTransition(myTransform, 2.0f, 1.0f, 0.0f));
```## Code Formatting
[CSharpier](https://github.com/belav/csharpier) is used to maintain consistent code formatting.