Created
July 9, 2020 05:19
-
-
Save collinticer/3bbee0337295b48e8b5bb4a2bd9d8c33 to your computer and use it in GitHub Desktop.
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
var prop_list = ds_map_create(); | |
ds_map_add( prop_list, "text", "" ); //the text this dialog should show | |
ds_map_add( prop_list, "type", "click" ); //the progression type of the dialogy. click or delay are the two options so far | |
ds_map_add( prop_list, "delay", 3 ); //if the type is delay, how many seconds to show the dialog for | |
return prop_list; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment