Package com.jme3.view.surfaceview
Interface OnRendererCompleted
-
public interface OnRendererCompletedAn interface used for invoking an event when the user delay finishes, on the first update of the game.- Author:
- pavl_g.
- See Also:
JmeSurfaceView.setOnRendererCompleted(OnRendererCompleted)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonRenderCompletion(com.jme3.app.LegacyApplication application, com.jme3.system.AppSettings appSettings)Invoked when the user delay finishes, on the first update of the game, the event is dispatched on the enclosing Activity context thread.
-
-
-
Method Detail
-
onRenderCompletion
void onRenderCompletion(com.jme3.app.LegacyApplication application, com.jme3.system.AppSettings appSettings)Invoked when the user delay finishes, on the first update of the game, the event is dispatched on the enclosing Activity context thread.- Parameters:
application- the current jme game instance.appSettings- the current window settings of the running jme game.- See Also:
JmeSurfaceView.update()
-
-