Format more engine code

This commit is contained in:
Wojtek Figat
2022-06-14 20:17:00 +02:00
parent 7c923198e0
commit b49e5e9984
219 changed files with 348 additions and 1236 deletions

View File

@@ -13,7 +13,7 @@
/// </summary>
API_STRUCT() struct SkeletonNode
{
DECLARE_SCRIPTING_TYPE_MINIMAL(SkeletonNode);
DECLARE_SCRIPTING_TYPE_MINIMAL(SkeletonNode);
/// <summary>
/// The parent node index. The root node uses value -1.
@@ -36,7 +36,7 @@ DECLARE_SCRIPTING_TYPE_MINIMAL(SkeletonNode);
/// </summary>
API_STRUCT() struct SkeletonBone
{
DECLARE_SCRIPTING_TYPE_MINIMAL(SkeletonBone);
DECLARE_SCRIPTING_TYPE_MINIMAL(SkeletonBone);
/// <summary>
/// The parent bone index. The root bone uses value -1.
@@ -74,7 +74,6 @@ struct TIsPODType<SkeletonBone>
class SkeletonData
{
public:
/// <summary>
/// The nodes in this hierarchy. The root node is always at the index 0.
/// </summary>
@@ -86,7 +85,6 @@ public:
Array<SkeletonBone> Bones;
public:
/// <summary>
/// Gets the root node reference.
/// </summary>