Artemis.Engine.TimeableObject.Outside C# (CSharp) 메소드

Outside() 공개 메소드

Returns true if the elapsed time is strictly outside the given start and end time interval.
public Outside ( double start, double end ) : bool
start double
end double
리턴 bool
        public bool Outside(double start, double end)
        {
            return !DuringOrAt(start, end);
        }

Same methods

TimeableObject::Outside ( int start, int end ) : bool