Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Widget Interaction Plugin
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LuFG VR VIS
VR-Group
Unreal-Development
Plugins
Widget Interaction Plugin
Merge requests
!1
use new naming of controllers from 4.22
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
use new naming of controllers from 4.22
feature/enable_WidgetInteraction_onDesktop_again
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Jan Delember
requested to merge
feature/enable_WidgetInteraction_onDesktop_again
into
develop
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
ece17cc0
1 commit,
5 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Source/WidgetInteraction/Private/WidgetInteraction.cpp
+
2
−
2
Options
@@ -59,12 +59,12 @@ void FWidgetInteractionModule::OnWorldTickStart(ELevelTick level_tick, float val
//if this is a standalone setup ...
if
(
UHeadMountedDisplayFunctionLibrary
::
IsHeadMountedDisplayEnabled
())
{
//.. with an HMD, we attach the intercation component to the right hand
name
=
FString
(
"RightMotionController"
);
name
=
FString
(
"
HMD
RightMotionController"
);
component_class
=
UMotionControllerComponent
::
StaticClass
();
}
else
{
//... without an HMD, we also attach it to the virtual right hand, since it exists in this case
name
=
TEXT
(
"RightMotionController"
);
name
=
TEXT
(
"
HMD
RightMotionController"
);
component_class
=
UMotionControllerComponent
::
StaticClass
();
}
}
Loading