WindowHandler.Tick C# (CSharp) Méthode

Tick() public méthode

public Tick ( float t ) : void
t float
Résultat void
    public void Tick(float t)
    {
        if((Time.time - this.lastTime) > this.checkTimeout)
        {
            this.CheckIDs();
        }
    }