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

BeforeOrAt() public method

Returns true if the elapsed time is less than or equal to the given time.
public BeforeOrAt ( double time ) : bool
time double
return bool
        public bool BeforeOrAt(double time)
        {
            return ElapsedTime <= time;
        }

Same methods

TimeableObject::BeforeOrAt ( int frame ) : bool