Skip to content

Commit

Permalink
Switched some more types to vectors.
Browse files Browse the repository at this point in the history
  • Loading branch information
MeltyPlayer committed Nov 30, 2024
1 parent 0a544cb commit f7e894a
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
using fin.schema.matrix;
using System.Numerics;

using fin.schema.matrix;
using fin.schema.vector;
using fin.util.enums;

Expand Down Expand Up @@ -27,7 +29,7 @@ public partial class Object : IBinaryDeserializable {


[RIfBoolean(nameof(HasTranslation))]
public Vector3f? Translation { get; set; }
public Vector3? Translation { get; set; }

[ReadLogic]
public void ReadRotation_(IBinaryReader br) {
Expand All @@ -49,7 +51,7 @@ public void ReadRotation_(IBinaryReader br) {
}

[RIfBoolean(nameof(HasScale))]
public Vector3f? Scale { get; set; }
public Vector3? Scale { get; set; }


[Skip]
Expand Down

0 comments on commit f7e894a

Please sign in to comment.