Created
October 12, 2022 12:35
-
-
Save gnysek/f93362d1ece6123c3cbd83200e75b050 to your computer and use it in GitHub Desktop.
gml debug stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
release: GM_version, //Game version | |
app_build: GM_build_date, | |
config: os_get_config(), | |
paused: bool(os_is_paused()), | |
network_connected: bool(os_is_network_connected(false)), | |
language: os_get_language(), | |
region: os_get_region(), | |
runtime_version: GM_runtime_version, | |
app_start_time: date_current_datetime(), | |
yyc: bool(code_is_compiled()), | |
app_name: game_display_name, | |
debug: bool(debug_mode), | |
from_ide: GM_build_type == "run" //instead of exe | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment