Artemis.Engine.TimeableObject.Outside C# (CSharp) Метод

Outside() публичный Метод

Returns true if the elapsed frame count is strictly outside the given start and end frame interval.
public Outside ( int start, int end ) : bool
start int
end int
Результат bool
        public bool Outside(int start, int end)
        {
            return !DuringOrAt(start, end);
        }

Same methods

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