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

During() public method

Returns true if the elapsed time is strictly between the given start and end times.
public During ( double start, double end ) : bool
start double
end double
return bool
        public bool During(double start, double end)
        {
            return start < ElapsedTime && ElapsedTime < end;
        }

Same methods

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