Fix tooltips generation for native properties to reflect getter and setter docsa

This commit is contained in:
Wojtek Figat
2021-02-07 21:41:17 +01:00
parent 2f34bfbeff
commit 103d630d80
3 changed files with 14 additions and 21 deletions

View File

@@ -437,13 +437,13 @@ public:
}
/// <summary>
/// Sets actor orientation in 3D space
/// Sets actor orientation in 3D space.
/// </summary>
/// <param name="value">The value to set.</param>
API_PROPERTY() void SetOrientation(const Quaternion& value);
/// <summary>
/// Gets actor scale in 3D space
/// Gets actor scale in 3D space.
/// </summary>
API_PROPERTY(Attributes="HideInEditor, NoSerialize")
FORCE_INLINE Vector3 GetScale() const
@@ -458,13 +458,13 @@ public:
API_PROPERTY() void SetScale(const Vector3& value);
/// <summary>
/// Gets actor rotation matrix
/// Gets actor rotation matrix.
/// </summary>
API_PROPERTY(Attributes="HideInEditor, NoSerialize")
Matrix GetRotation() const;
/// <summary>
/// Sets actor rotation matrix
/// Sets actor rotation matrix.
/// </summary>
/// <param name="value">The value to set.</param>
API_PROPERTY() void SetRotation(const Matrix& value);