Example usage for com.badlogic.gdx.scenes.scene2d Event handle

List of usage examples for com.badlogic.gdx.scenes.scene2d Event handle

Introduction

In this page you can find the example usage for com.badlogic.gdx.scenes.scene2d Event handle.

Prototype

public void handle() 

Source Link

Document

Marks this event as handled.

Usage

From source file:com.agateau.ui.menu.MenuItemListener.java

License:Apache License

public boolean handle(Event e) {
    if (!(e instanceof MenuItemTriggerEvent)) {
        return false;
    }//from   w  ww.j  a  v a 2  s  .com
    e.handle();
    triggered();
    return true;
}