diff --git a/Handbook/src/appendix/changelog.md b/Handbook/src/appendix/changelog.md index 0a4fabc7..fb4b4b31 100644 --- a/Handbook/src/appendix/changelog.md +++ b/Handbook/src/appendix/changelog.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Cleaned up remnants of the long-removed Unreal Engine `5.2` from third-party module `*.Build.cs` files. +- Cleaned up remnants of the long-removed Unreal Engine `5.2` from `SenseGlove.Build.cs`, `SenseGloveKismet.Build.cs`, `SenseGloveTracking.Build.cs`, files. - Cleaned up remnants of the long-removed Unreal Engine `5.2` from `SenseGloveTracking` module. ## [2.6.3] - 2025-06-27 diff --git a/Source/SenseGlove/SenseGlove.Build.cs b/Source/SenseGlove/SenseGlove.Build.cs index 7d0053a6..bd1bdd7e 100644 --- a/Source/SenseGlove/SenseGlove.Build.cs +++ b/Source/SenseGlove/SenseGlove.Build.cs @@ -54,12 +54,7 @@ public class SenseGlove : ModuleRules "InputCore", "InputDevice", "OpenXRHMD", - // NOTE - // UE 5.3+ provides UXRDeviceVisualizationComponent as part of the XRBase plugin. - // UE 5.2 provides UXRDeviceVisualizationComponent as part of the HeadMountDisplay module. -#if UE_5_3_OR_LATER "XRBase", -#endif } ); diff --git a/Source/SenseGloveKismet/SenseGloveKismet.Build.cs b/Source/SenseGloveKismet/SenseGloveKismet.Build.cs index 3dbed49e..079fb707 100644 --- a/Source/SenseGloveKismet/SenseGloveKismet.Build.cs +++ b/Source/SenseGloveKismet/SenseGloveKismet.Build.cs @@ -49,12 +49,7 @@ public class SenseGloveKismet : ModuleRules "CoreUObject", "Engine", "HeadMountedDisplay", - // NOTE - // UE 5.3+ provides UXRDeviceVisualizationComponent as part of the XRBase plugin. - // UE 5.2 provides UXRDeviceVisualizationComponent as part of the HeadMountDisplay module. -#if UE_5_3_OR_LATER "XRBase", -#endif } ); diff --git a/Source/SenseGloveTracking/SenseGloveTracking.Build.cs b/Source/SenseGloveTracking/SenseGloveTracking.Build.cs index 44764c2c..871328bf 100644 --- a/Source/SenseGloveTracking/SenseGloveTracking.Build.cs +++ b/Source/SenseGloveTracking/SenseGloveTracking.Build.cs @@ -55,15 +55,9 @@ public class SenseGloveTracking : ModuleRules "InputDevice", "OpenXRHMD", "OpenXRInput", - // NOTE - // Only UE 5.3+ provides the XRBase plugin. -#if UE_5_3_OR_LATER - "XRBase", -#else - "OpenXR", -#endif "Slate", "SlateCore", + "XRBase", } );