Change some instances of args named "ev" to "event"
This commit is contained in:
parent
ab60283798
commit
cf183efbcf
2 changed files with 3 additions and 3 deletions
|
@ -33,14 +33,14 @@
|
|||
|
||||
void MainLoop::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("input_event", "ev"), &MainLoop::input_event);
|
||||
ClassDB::bind_method(D_METHOD("input_event", "event"), &MainLoop::input_event);
|
||||
ClassDB::bind_method(D_METHOD("input_text", "text"), &MainLoop::input_text);
|
||||
ClassDB::bind_method(D_METHOD("init"), &MainLoop::init);
|
||||
ClassDB::bind_method(D_METHOD("iteration", "delta"), &MainLoop::iteration);
|
||||
ClassDB::bind_method(D_METHOD("idle", "delta"), &MainLoop::idle);
|
||||
ClassDB::bind_method(D_METHOD("finish"), &MainLoop::finish);
|
||||
|
||||
BIND_VMETHOD(MethodInfo("_input_event", PropertyInfo(Variant::OBJECT, "ev", PROPERTY_HINT_RESOURCE_TYPE, "InputEvent")));
|
||||
BIND_VMETHOD(MethodInfo("_input_event", PropertyInfo(Variant::OBJECT, "event", PROPERTY_HINT_RESOURCE_TYPE, "InputEvent")));
|
||||
BIND_VMETHOD(MethodInfo("_input_text", PropertyInfo(Variant::STRING, "text")));
|
||||
BIND_VMETHOD(MethodInfo("_initialize"));
|
||||
BIND_VMETHOD(MethodInfo("_iteration", PropertyInfo(Variant::REAL, "delta")));
|
||||
|
|
|
@ -2956,7 +2956,7 @@ void Control::_bind_methods() {
|
|||
BIND_ENUM_CONSTANT(ANCHOR_END);
|
||||
|
||||
ADD_SIGNAL(MethodInfo("resized"));
|
||||
ADD_SIGNAL(MethodInfo("gui_input", PropertyInfo(Variant::OBJECT, "ev", PROPERTY_HINT_RESOURCE_TYPE, "InputEvent")));
|
||||
ADD_SIGNAL(MethodInfo("gui_input", PropertyInfo(Variant::OBJECT, "event", PROPERTY_HINT_RESOURCE_TYPE, "InputEvent")));
|
||||
ADD_SIGNAL(MethodInfo("mouse_entered"));
|
||||
ADD_SIGNAL(MethodInfo("mouse_exited"));
|
||||
ADD_SIGNAL(MethodInfo("focus_entered"));
|
||||
|
|
Loading…
Reference in a new issue