This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Reflection; | |
| using UnityEngine; | |
| public static class AnimatorExtensions | |
| { | |
| /// <summary>Gets an instance method with single argument of type <typeparamref | |
| /// name="TArg0"/> and return type of <typeparamref name="TReturn"/> from <typeparamref | |
| /// name="TThis"/> and compiles it into a fast open delegate.</summary> | |
| /// <typeparam name="TThis">Type of the class owning the instance method.</typeparam> |
NewerOlder