diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-04-24 03:21:23 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-04-24 03:21:23 -0500 |
commit | fb6aaacaedfc5d2c17b25a6a54c08f5837ac141b (patch) | |
tree | 4c850970c8d351f2bb497ec60d133e1b679e4d20 /editor | |
parent | 01f184178b6cbb5ba6199898f6296fb03aa37d0e (diff) |
Fix type name typo in Debug Adapter Protocol
Diffstat (limited to 'editor')
-rw-r--r-- | editor/debugger/debug_adapter/debug_adapter_protocol.cpp | 8 | ||||
-rw-r--r-- | editor/editor_properties.cpp | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/editor/debugger/debug_adapter/debug_adapter_protocol.cpp b/editor/debugger/debug_adapter/debug_adapter_protocol.cpp index babe8af8bc..745ca17efd 100644 --- a/editor/debugger/debug_adapter/debug_adapter_protocol.cpp +++ b/editor/debugger/debug_adapter/debug_adapter_protocol.cpp @@ -349,14 +349,14 @@ int DebugAdapterProtocol::parse_variant(const Variant &p_var) { case Variant::BASIS: { int id = variable_id++; Basis basis = p_var; - const String type_vec2 = Variant::get_type_name(Variant::VECTOR2); + const String type_vec3 = Variant::get_type_name(Variant::VECTOR3); DAP::Variable x, y, z; x.name = "x"; y.name = "y"; z.name = "z"; - x.type = type_vec2; - y.type = type_vec2; - z.type = type_vec2; + x.type = type_vec3; + y.type = type_vec3; + z.type = type_vec3; x.value = basis.elements[0]; y.value = basis.elements[1]; z.value = basis.elements[2]; diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp index d2b8883b8a..20448a9435 100644 --- a/editor/editor_properties.cpp +++ b/editor/editor_properties.cpp @@ -2085,7 +2085,7 @@ EditorPropertyRect2i::EditorPropertyRect2i(bool p_force_wide) { } } -///////////////////// VECTOR3i ///////////////////////// +///////////////////// VECTOR3I ///////////////////////// void EditorPropertyVector3i::_set_read_only(bool p_read_only) { for (int i = 0; i < 3; i++) { @@ -2618,7 +2618,7 @@ EditorPropertyBasis::EditorPropertyBasis() { set_bottom_editor(g); } -///////////////////// TRANSFORM ///////////////////////// +///////////////////// TRANSFORM3D ///////////////////////// void EditorPropertyTransform3D::_set_read_only(bool p_read_only) { for (int i = 0; i < 12; i++) { |