Browse Source

Make the InputEvent device property get saved

Fixes #9299
Bojidar Marinov 8 years ago
parent
commit
7542896046
1 changed files with 2 additions and 0 deletions
  1. 2 0
      core/os/input_event.cpp

+ 2 - 0
core/os/input_event.cpp

@@ -140,6 +140,8 @@ void InputEvent::_bind_methods() {
 	ClassDB::bind_method(D_METHOD("is_action_type"), &InputEvent::is_action_type);
 	ClassDB::bind_method(D_METHOD("is_action_type"), &InputEvent::is_action_type);
 
 
 	ClassDB::bind_method(D_METHOD("xformed_by:InputEvent", "xform", "local_ofs"), &InputEvent::xformed_by, DEFVAL(Vector2()));
 	ClassDB::bind_method(D_METHOD("xformed_by:InputEvent", "xform", "local_ofs"), &InputEvent::xformed_by, DEFVAL(Vector2()));
+
+	ADD_PROPERTY(PropertyInfo(Variant::INT, "device"), "set_device", "get_device");
 }
 }
 
 
 InputEvent::InputEvent() {
 InputEvent::InputEvent() {