A collection of utility scripts for Unity to help streamline common development tasks such as UI transitions and layer mask management.
- Open your Unity project.
- Navigate to
Window > Package Manager
. - Click the
+
button and selectAdd package from git URL...
. - Enter the GitHub URL:
https://github.com/orikome/OrikomeUtils.git
.
using OrikomeUtils;
// Fades out all Image and TextMeshProUGUI components under 'myTransform' over 2 seconds.
StartCoroutine(TransitionUtils.FadeTransition(myTransform, 2.0f, 1.0f, 0.0f));
CSharpier is used to maintain consistent code formatting.