mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
parent
9c7c5e1c17
commit
9f269aec8c
1 changed files with 3 additions and 2 deletions
|
@ -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"),
|
||||||
|
|
Loading…
Reference in a new issue