Package com.jme3.view.surfaceview
Interface OnRendererStarted
-
public interface OnRendererStartedAn interface used for invoking an event when the application is started explicitly fromJmeSurfaceView.startRenderer(int). NB : This listener must be utilized before usingJmeSurfaceView.startRenderer(int), ie : it would be ignored if you try to useJmeSurfaceView.setOnRendererStarted(OnRendererStarted)afterJmeSurfaceView.startRenderer(int).- Author:
- pavl_g.
- See Also:
JmeSurfaceView.setOnRendererStarted(OnRendererStarted)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonRenderStart(com.jme3.app.LegacyApplication application, android.view.View layout)Invoked when the game application is started by theLegacyApplication.start(), the event is dispatched on the holder Activity context thread.
-
-
-
Method Detail
-
onRenderStart
void onRenderStart(com.jme3.app.LegacyApplication application, android.view.View layout)Invoked when the game application is started by theLegacyApplication.start(), the event is dispatched on the holder Activity context thread.- Parameters:
application- the game instance.layout- the enclosing layout.- See Also:
JmeSurfaceView.startRenderer(int)
-
-