(Magnify|Pan)Gesture: implement as_text
This commit is contained in:
parent
bd3b958a25
commit
67e20dc2b6
|
@ -962,6 +962,11 @@ Ref<InputEvent> InputEventMagnifyGesture::xformed_by(const Transform2D &p_xform,
|
||||||
return ev;
|
return ev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String InputEventMagnifyGesture::as_text() const {
|
||||||
|
|
||||||
|
return "InputEventMagnifyGesture : factor=" + rtos(get_factor()) + ", position=(" + String(get_position()) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
void InputEventMagnifyGesture::_bind_methods() {
|
void InputEventMagnifyGesture::_bind_methods() {
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_factor", "factor"), &InputEventMagnifyGesture::set_factor);
|
ClassDB::bind_method(D_METHOD("set_factor", "factor"), &InputEventMagnifyGesture::set_factor);
|
||||||
|
@ -999,6 +1004,11 @@ Ref<InputEvent> InputEventPanGesture::xformed_by(const Transform2D &p_xform, con
|
||||||
return ev;
|
return ev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String InputEventPanGesture::as_text() const {
|
||||||
|
|
||||||
|
return "InputEventPanGesture : delta=(" + String(get_delta()) + "), position=(" + String(get_position()) + ")";
|
||||||
|
}
|
||||||
|
|
||||||
void InputEventPanGesture::_bind_methods() {
|
void InputEventPanGesture::_bind_methods() {
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_delta", "delta"), &InputEventPanGesture::set_delta);
|
ClassDB::bind_method(D_METHOD("set_delta", "delta"), &InputEventPanGesture::set_delta);
|
||||||
|
|
|
@ -494,6 +494,7 @@ public:
|
||||||
real_t get_factor() const;
|
real_t get_factor() const;
|
||||||
|
|
||||||
virtual Ref<InputEvent> xformed_by(const Transform2D &p_xform, const Vector2 &p_local_ofs = Vector2()) const;
|
virtual Ref<InputEvent> xformed_by(const Transform2D &p_xform, const Vector2 &p_local_ofs = Vector2()) const;
|
||||||
|
virtual String as_text() const;
|
||||||
|
|
||||||
InputEventMagnifyGesture();
|
InputEventMagnifyGesture();
|
||||||
};
|
};
|
||||||
|
@ -511,6 +512,7 @@ public:
|
||||||
Vector2 get_delta() const;
|
Vector2 get_delta() const;
|
||||||
|
|
||||||
virtual Ref<InputEvent> xformed_by(const Transform2D &p_xform, const Vector2 &p_local_ofs = Vector2()) const;
|
virtual Ref<InputEvent> xformed_by(const Transform2D &p_xform, const Vector2 &p_local_ofs = Vector2()) const;
|
||||||
|
virtual String as_text() const;
|
||||||
|
|
||||||
InputEventPanGesture();
|
InputEventPanGesture();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue