An open API service indexing awesome lists of open source software.

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.

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)