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

AfterOrAt() public method

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

Same methods

TimeableObject::AfterOrAt ( int frame ) : bool