Artemis.Engine.TimeableObject.During C# (CSharp) 메소드

During() 공개 메소드

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
리턴 bool
        public bool During(double start, double end)
        {
            return start < ElapsedTime && ElapsedTime < end;
        }

Same methods

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