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

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

Returns true if the elapsed frame count is between the given start and end frames inclusive.
public DuringOrAt ( int start, int end ) : bool
start int
end int
Результат bool
        public bool DuringOrAt(int start, int end)
        {
            return start <= ElapsedFrames && ElapsedFrames <= end;
        }

Same methods

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