Make update_modue a dropdown in editor inspector

Closes #61.
This commit is contained in:
Leroy Hopson 2023-01-21 11:03:22 +13:00
parent 9c7c5e1c17
commit 9f269aec8c
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA

View file

@ -274,8 +274,9 @@ void Terminal::_bind_methods() {
ClassDB::bind_method(D_METHOD("set_update_mode", "value"), ClassDB::bind_method(D_METHOD("set_update_mode", "value"),
&Terminal::set_update_mode); &Terminal::set_update_mode);
ClassDB::bind_method(D_METHOD("get_update_mode"), &Terminal::get_update_mode); ClassDB::bind_method(D_METHOD("get_update_mode"), &Terminal::get_update_mode);
ADD_PROPERTY(PropertyInfo(Variant::INT, "update_mode"), "set_update_mode", ADD_PROPERTY(PropertyInfo(Variant::INT, "update_mode", PROPERTY_HINT_ENUM,
"get_update_mode"); "Disabled,Auto,All,All Next Frame"),
"set_update_mode", "get_update_mode");
ADD_GROUP("Bell", "bell_"); ADD_GROUP("Bell", "bell_");
ClassDB::bind_method(D_METHOD("set_bell_cooldown", "value"), ClassDB::bind_method(D_METHOD("set_bell_cooldown", "value"),