Update() private method

private Update ( ) : void
return void
Exemplo n.º 1
0
        public void Update()
        {
            Vector2 newPos = target.GetScreenPosition() + offset;

            bubble.Update(newPos);
            if (bubble.GetDuration() <= 0)
            {
                Enabled = false;
            }
        }
Exemplo n.º 2
0
        public virtual void Update()
        {
            Vector2 newPos = source.GetScreenPosition() + offset;

            bubble.Update(newPos);
        }
Exemplo n.º 3
0
 public void Update()
 {
     bubble.Update();
 }