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

OutsideOrAt() 공개 메소드

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

Same methods

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