Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser

Quick Information

This plugin allows you to display native Android Toast messages. It connects toast callbacks via signals. It also exposes the standard Android Toast parameters like duration and offset.Only works on Android.Contains a example scene.Note: The callbacks might not work perfectly on Android APIs under 30.
ToastPlugin
ToastPlugin is a Godot plugin that allows you to display native Android Toast messages from your Godot project. It connects toast callbacks via signals. The callbacks might not work perfectly on Android APIs under 30.
Source code: https://github.com/leparlon/GodotToastPlugin
Features
- Display native Android Toast messages
- Supports toast callbacks via signals
- Customizable toast duration and position
Requirements
- Godot 4.2 or higher
- Android API level 24 or higher (API level 30 recommended)
Installation
- Copy the
addons/ToastPlugin
folder into your Godot project'saddons
directory. - Enable the plugin in your project settings:
Project -> Project Settings -> Plugins
.
Usage
Basic Usage
To display a simple toast message, you can use the show_toast
method.
if Engine.has_singleton("ToastPlugin"):
var toast_plugin = Engine.get_singleton("ToastPlugin")
toast_plugin.show_toast("Hello, World!")
This plugin allows you to display native Android Toast messages. It connects toast callbacks via signals. It also exposes the standard Android Toast parameters like duration and offset.
Only works on Android.
Contains a example scene.
Note: The callbacks might not work perfectly on Android APIs under 30.
Reviews
Quick Information

This plugin allows you to display native Android Toast messages. It connects toast callbacks via signals. It also exposes the standard Android Toast parameters like duration and offset.Only works on Android.Contains a example scene.Note: The callbacks might not work perfectly on Android APIs under 30.