예제 #1
0
 public Selector(AbortTypes abortType = AbortTypes.None)
 {
     AbortType = abortType;
 }
예제 #2
0
 public static bool Has(this AbortTypes self, AbortTypes check)
 {
     return((self & check) == check);
 }
예제 #3
0
 public Sequence(AbortTypes abortType = AbortTypes.None)
 {
     AbortType = abortType;
 }
 public BehaviorTreeBuilder <T> sequence(AbortTypes abortType = AbortTypes.None)
 {
     return(pushParentNode(new Sequence <T>(abortType)));
 }
예제 #5
0
 public BehaviorTreeBuilder <T> Selector(AbortTypes abortType = AbortTypes.None)
 {
     return(PushParentNode(new Selector <T>(abortType)));
 }
예제 #6
0
파일: AbortTypes.cs 프로젝트: RastaCow/Nez
		public static bool has( this AbortTypes self, AbortTypes check )
		{
			return ( self & check ) == check;
		}