Merge pull request #2889 from akien-mga/pr-matrix32-members
Fix return type of Matrix32 member vars
This commit is contained in:
commit
1ac7d4fc77
2 changed files with 6 additions and 6 deletions
|
@ -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: {
|
||||
|
|
|
@ -16735,11 +16735,11 @@ returns:= "username=user&password=pass"
|
|||
</method>
|
||||
</methods>
|
||||
<members>
|
||||
<member name="x" type="float">
|
||||
<member name="x" type="Vector2">
|
||||
</member>
|
||||
<member name="y" type="float">
|
||||
<member name="y" type="Vector2">
|
||||
</member>
|
||||
<member name="o" type="float">
|
||||
<member name="o" type="Vector2">
|
||||
</member>
|
||||
</members>
|
||||
<constants>
|
||||
|
|
Loading…
Reference in a new issue