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