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

After() public method

Returns true if the elapsed time is greater than the given time.
public After ( double time ) : bool
time double
return bool
        public bool After(double time)
        {
            return ElapsedTime > time;
        }

Same methods

TimeableObject::After ( int frame ) : bool