diff options
| author | sanikoyes | 2015-01-20 20:01:02 +0800 |
|---|---|---|
| committer | sanikoyes | 2015-01-20 20:01:02 +0800 |
| commit | 317c496f5c1aa25af4144ea04cef4ba6fe420830 (patch) | |
| tree | abaaa1361c443cd4f0eddfe499a714f975d57691 /core/variant_op.cpp | |
| parent | a0511ed59a0e03232bf3abb49b3c916591453aef (diff) | |
| download | godot-317c496f5c1aa25af4144ea04cef4ba6fe420830.tar.gz godot-317c496f5c1aa25af4144ea04cef4ba6fe420830.tar.zst godot-317c496f5c1aa25af4144ea04cef4ba6fe420830.zip | |
Diffstat (limited to 'core/variant_op.cpp')
| -rw-r--r-- | core/variant_op.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/core/variant_op.cpp b/core/variant_op.cpp index ec43b1275..fbb5e2631 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: { |
