Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
RWTH VR Toolkit
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
Container 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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LuFG VR VIS
VR-Group
Unreal-Development
Plugins
RWTH VR Toolkit
Merge requests
!83
Hotfix: Intenselect and InputActions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Hotfix: Intenselect and InputActions
dev/5.3
into
5.3
Overview
0
Commits
4
Pipelines
1
Changes
1
Merged
David Gilbert
requested to merge
dev/5.3
into
5.3
1 year ago
Overview
0
Commits
4
Pipelines
1
Changes
1
Sets input actions to not consume inputs per default
Supports multiple scoring functions for intenselect
0
0
Merge request reports
Viewing commit
ea8a93a4
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
ea8a93a4
Fixes warning condition on startup
· ea8a93a4
Timon Römer
authored
1 year ago
Source/RWTHVRToolkit/Private/Interaction/Interactables/IntenSelect/IntenSelectable.cpp
+
1
−
1
View file @ ea8a93a4
Edit in single-file editor
Open in Web IDE
Show full file
@@ -43,7 +43,7 @@ void UIntenSelectable::BeginPlay()
if
(
AttachedIntenSelectables
.
Num
()
>
1
)
{
if
(
!
ScoringBehaviours
.
Num
()
==
0
)
if
(
ScoringBehaviours
.
Num
()
==
0
)
{
ShowErrorAndQuit
(
"Please assign the Scoring Behaviour manually when using more than one IntenSelectable Component!"
);
Loading