diff options
| author | Rémi Verschelde | 2015-11-24 00:10:18 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2015-11-24 00:10:18 +0100 |
| commit | 1ac7d4fc77e6157a8db78aa3c9f82342f72c5bb7 (patch) | |
| tree | fb36e18bc953033bd28cf99c04c622aeb5a2e4d6 /core | |
| parent | 17a97b7bdfbf556e218103d476c3e31a4f1c0be7 (diff) | |
| parent | a961347d8c9e1808e80da5b996cd7ab929f5eabb (diff) | |
| download | godot-1ac7d4fc77e6157a8db78aa3c9f82342f72c5bb7.tar.gz godot-1ac7d4fc77e6157a8db78aa3c9f82342f72c5bb7.tar.zst godot-1ac7d4fc77e6157a8db78aa3c9f82342f72c5bb7.zip | |
Merge pull request #2889 from akien-mga/pr-matrix32-members
Fix return type of Matrix32 member vars
Diffstat (limited to 'core')
| -rw-r--r-- | core/variant_op.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/variant_op.cpp b/core/variant_op.cpp index eabd64783..1bcfa7d2a 100644 --- a/core/variant_op.cpp +++ b/core/variant_op.cpp @@ -2818,9 +2818,9 @@ void Variant::get_property_list(List<PropertyInfo> *p_list) const { } break; case MATRIX32: { - p_list->push_back( PropertyInfo(Variant::REAL,"x")); - p_list->push_back( PropertyInfo(Variant::REAL,"y")); - p_list->push_back( PropertyInfo(Variant::REAL,"o")); + p_list->push_back( PropertyInfo(Variant::VECTOR2,"x")); + p_list->push_back( PropertyInfo(Variant::VECTOR2,"y")); + p_list->push_back( PropertyInfo(Variant::VECTOR2,"o")); } break; case PLANE: { |
