Artemis.Engine.TimeableObject.OutsideOrAt C# (CSharp) Method

OutsideOrAt() public method

Returns true if the elapsed time is outside the given start and end time interval inclusive.
public OutsideOrAt ( double start, double end ) : bool
start double
end double
return bool
        public bool OutsideOrAt(double start, double end)
        {
            return !During(start, end);
        }

Same methods

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