https://github.com/reviiix/pure-unity-methods
A sub repository of utility methods for Unity game development.
https://github.com/reviiix/pure-unity-methods
abstraction csharp optimization pure-methods sub-module unity
Last synced: 5 months ago
JSON representation
A sub repository of utility methods for Unity game development.
- Host: GitHub
- URL: https://github.com/reviiix/pure-unity-methods
- Owner: Reviiix
- Created: 2021-06-07T15:51:58.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-17T23:55:32.000Z (over 1 year ago)
- Last Synced: 2025-04-06T14:05:00.805Z (about 1 year ago)
- Topics: abstraction, csharp, optimization, pure-methods, sub-module, unity
- Language: C#
- Homepage:
- Size: 62.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PureFunctions
A folder of utility methods for Unity.
These scripts are meant to be pure. Meaning:
.The function return values are identical for identical arguments (no variation with local static variables, non-local variables, mutable reference arguments or input streams).
.The function application has no side effects (no mutation of local static variables, non-local variables, mutable reference arguments or input/output streams).
Intended to be a git submodule in projects.
Author: Leon Higgin (admin@leonmichaelhiggin.co.uk)