Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
glabute committed Sep 12, 2023
1 parent bee950a commit 73913fe
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ public override Quaternion Rotation
}
}

public override Vector3 Position { get => base.Position; set
public override Vector3 Position
{
get => base.Position;
set
{
base.Position = value;
Target.InternalUpdateCameraState(Vector3.up, 0f);
Expand Down

0 comments on commit 73913fe

Please sign in to comment.