Example usage for com.badlogic.gdx.scenes.scene2d.ui Label invalidate

List of usage examples for com.badlogic.gdx.scenes.scene2d.ui Label invalidate

Introduction

In this page you can find the example usage for com.badlogic.gdx.scenes.scene2d.ui Label invalidate.

Prototype

public void invalidate() 

Source Link

Usage

From source file:de.myreality.acidsnake.ui.PopupManager.java

License:Open Source License

@Override
public void onEvent(int type, BaseTween<?> source) {
    Label label = queue.remove();
    tweenManager.killTarget(label);//from www.  j  a  v a  2s .c om
    label.remove();
    label.invalidate();
}