├── .gitignore ├── FlowLayoutGroup ├── FlowLayoutGroup.cs └── README.md ├── InsideSphere.shader ├── LICENSE ├── README.md └── Toast Manager ├── README.md └── ToastManager.cs /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /FlowLayoutGroup/FlowLayoutGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umaqs/Unity-Extensions/HEAD/FlowLayoutGroup/FlowLayoutGroup.cs -------------------------------------------------------------------------------- /FlowLayoutGroup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umaqs/Unity-Extensions/HEAD/FlowLayoutGroup/README.md -------------------------------------------------------------------------------- /InsideSphere.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umaqs/Unity-Extensions/HEAD/InsideSphere.shader -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umaqs/Unity-Extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Unity-Extensions 2 | -------------------------------------------------------------------------------- /Toast Manager/README.md: -------------------------------------------------------------------------------- 1 | To show on screen toas messages 2 | -------------------------------------------------------------------------------- /Toast Manager/ToastManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umaqs/Unity-Extensions/HEAD/Toast Manager/ToastManager.cs --------------------------------------------------------------------------------