https://github.com/hiyorin/extensions-for-unity
C# Extension Method for Unity
https://github.com/hiyorin/extensions-for-unity
extension-methods unity
Last synced: 2 months ago
JSON representation
C# Extension Method for Unity
- Host: GitHub
- URL: https://github.com/hiyorin/extensions-for-unity
- Owner: hiyorin
- License: mit
- Created: 2018-03-23T17:39:05.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-02T08:42:05.000Z (over 6 years ago)
- Last Synced: 2025-01-29T08:44:02.323Z (4 months ago)
- Topics: extension-methods, unity
- Language: C#
- Size: 128 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExtensionMethod-for-Unity
C# Extension Method for Unity# Install
## unitypackage
* Extensions-for-Unity.unitypackage
* Extensions-for-Unity.UniRx.unitypackage
* Extensions-for-Unity.DOTween.unitypackage## package manager
Specify repository URL git://github.com/hiyorin/upm.Extensions-for-Unity.git with key com.hiyorin.extensions into Packages/manifest.json like below.
```javascript
{
"dependencies": {
// ...
"com.hiyorin.extensions": "git://github.com/hiyorin/upm.Extensions-for-Unity.git",
"com.hiyorin.extensions.unirx": "git://github.com/hiyorin/upm.Extensions-for-Unity.UniRx.git",
"com.hiyorin.extensions.dotween": "git://github.com/hiyorin/upm.Extensions-for-Unity.DOTween.git",
// ...
}
}
```# Usage
```cs
using UnityExtensions;
```# Support
* [UniRx](https://github.com/neuecc/UniRx)
* [DOTween](https://github.com/Demigiant/dotween)