incendium.vision.gui.info - ignition-devs/incendium GitHub Wiki
Description
Display an informational-style message popup box to the user.
Syntax
incendium.vision.gui.info(message, [title], [detail])
Args:
- message (
str
): The message to display. This will be translated to the selected Locale. - title (
str
): A title for the message box. This will be translated to the selected Locale. Optional. Defaults to "Information". - detail (
str
): Additional text to display. This will be translated to the selected Locale. Optional.
Recommendations
None.
Code Examples
import incendium.vision.gui
incendium.vision.gui.info("Important information.")