diff --git a/docs/ba_module.md b/docs/ba_module.md index b49d03f6..a6b384bc 100644 --- a/docs/ba_module.md +++ b/docs/ba_module.md @@ -4793,12 +4793,31 @@ the type-checker properly identifies the returned value as one.

Methods:

+
on_app_launch(), on_app_pause(), on_app_resume(), on_app_shutdown()

on_app_launch()

on_app_launch(self) -> None

Called when the app is being launched.

+
+

on_app_pause()

+

on_app_pause(self) -> None

+ +

Сalled after pausing game activity.

+ +
+

on_app_resume()

+

on_app_resume(self) -> None

+ +

Called after the game continues.

+ +
+

on_app_shutdown()

+

on_app_shutdown(self) -> None

+ +

Called before closing the application.

+

@@ -4813,7 +4832,7 @@ the type-checker properly identifies the returned value as one.

Methods:

-
<constructor>, on_app_launch()
+
<constructor>, on_app_launch(), on_app_pause(), on_app_resume(), on_app_shutdown()

<constructor>

ba.PluginSubsystem()

@@ -4824,6 +4843,24 @@ the type-checker properly identifies the returned value as one.

Should be called at app launch time.

+
+

on_app_pause()

+

on_app_pause(self) -> None

+ +

Called when the app goes to a suspended state.

+ +
+

on_app_resume()

+

on_app_resume(self) -> None

+ +

Run when the app resumes from a suspended state.

+ +
+

on_app_shutdown()

+

on_app_shutdown(self) -> None

+ +

Called when the app is being closed.

+