Skip to content
This repository has been archived by the owner on Feb 1, 2025. It is now read-only.

Commit

Permalink
Merged PR 276: Added missing copyright notices
Browse files Browse the repository at this point in the history
Added missing copyright notices

Related work items: #85
  • Loading branch information
luval-microsoft committed May 5, 2020
1 parent 6392a68 commit 8dc5214
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "UxtTwoHandRotateLogic.h"

namespace
Expand Down Expand Up @@ -26,3 +28,4 @@ FQuat UxtTwoHandManipulationRotateLogic::Update(GrabPointers PointerData) const
Rot.Normalize();
return Rot * StartRotation;
}

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "UxtTwoHandScaleLogic.h"

namespace
Expand Down Expand Up @@ -33,3 +35,4 @@ FVector UxtTwoHandManipulationScaleLogic::Update(GrabPointers PointerData) const
float ratioMultiplier = GetMinDistanceBetweenHands(PointerData) / StartHandDistanceMeters;
return StartObjectScale * ratioMultiplier;
}

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "Engine.h"
#include "EngineUtils.h"
#include "GameFramework/Actor.h"
Expand Down Expand Up @@ -416,3 +418,4 @@ void PressableButtonSpec::EnqueueTwoButtonsTest(const FVector StartingPos)
}

#endif // WITH_DEV_AUTOMATION_TESTS

Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once

#include "CoreMinimal.h"
Expand Down Expand Up @@ -32,4 +34,4 @@ class UPressableButtonTestComponent : public UActorComponent

int PressedCount = 0;
int ReleasedCount = 0;
};
};

0 comments on commit 8dc5214

Please sign in to comment.