summaryrefslogtreecommitdiff
path: root/core/variant_op.cpp
diff options
context:
space:
mode:
authorsanikoyes <sanikoyes@163.com>2015-01-20 20:01:02 +0800
committersanikoyes <sanikoyes@163.com>2015-01-20 20:01:02 +0800
commit317c496f5c1aa25af4144ea04cef4ba6fe420830 (patch)
treeabaaa1361c443cd4f0eddfe499a714f975d57691 /core/variant_op.cpp
parenta0511ed59a0e03232bf3abb49b3c916591453aef (diff)
Add InputEvent::ACTION get/set support for variant
Add action_press/action_release method bind
Diffstat (limited to 'core/variant_op.cpp')
-rw-r--r--core/variant_op.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/variant_op.cpp b/core/variant_op.cpp
index ec43b1275c..fbb5e2631d 100644
--- a/core/variant_op.cpp
+++ b/core/variant_op.cpp
@@ -1687,6 +1687,19 @@ void Variant::set(const Variant& p_index, const Variant& p_value, bool *r_valid)
return;
}
}
+ if (ie.type == InputEvent::ACTION) {
+
+ if (str =="action") {
+ valid=true;
+ ie.action.action=p_value;
+ return;
+ }
+ else if (str == "pressed") {
+ valid=true;
+ ie.action.pressed=p_value;
+ return;
+ }
+ }
} break;
case DICTIONARY: {
@@ -2365,6 +2378,17 @@ Variant Variant::get(const Variant& p_index, bool *r_valid) const {
return Vector2(ie.screen_drag.speed_x,ie.screen_drag.speed_y);
}
}
+ if (ie.type == InputEvent::ACTION) {
+
+ if (str =="action") {
+ valid=true;
+ return ie.action.action;
+ }
+ else if (str == "pressed") {
+ valid=true;
+ ie.action.pressed;
+ }
+ }
} break;
case DICTIONARY: {