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

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

Returns true if the elapsed time is between the given start and end times inclusive.
public DuringOrAt ( double start, double end ) : bool
start double
end double
Результат bool
        public bool DuringOrAt(double start, double end)
        {
            return start <= ElapsedTime && ElapsedTime <= end;
        }

Same methods

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