Example usage for com.badlogic.gdx ApplicationListener pause

List of usage examples for com.badlogic.gdx ApplicationListener pause

Introduction

In this page you can find the example usage for com.badlogic.gdx ApplicationListener pause.

Prototype

public void pause();

Source Link

Document

Called when the Application is paused, usually when it's not active or visible on screen.

Usage

From source file:es.eucm.ead.engine.EAdEngine.java

License:Open Source License

@Override
public void pause() {
    for (ApplicationListener a : applicationListeners) {
        a.pause();
    }
}