string_t
Warning
This datatype will lose its value after a level change, it is recommended to use native string for data storage.
Otherwise you need to reinitialize its value everytime the Player enters a new level.
Value is not lost when reloading a save file.
Methods
string ToString()-- Converts string_t value to string value.
Declaration
string_t str;
string_t str = "text";
string_t str("text");
string_t str = string_str; // string
string_t str = string_t_str; // string_t
string_t str(string_str);
string_t str(string_t_str);