Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RWTH VR Demo Plugin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Monitor
Incidents
Service Desk
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 Demo Plugin
Commits
6c9cd072
Commit
6c9cd072
authored
2 months ago
by
Kris Tabea Helwig
Browse files
Options
Downloads
Patches
Plain Diff
Made some members blueprintable
parent
c24fe986
No related branches found
No related tags found
1 merge request
!1
Implements `PointOfInterest`s
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/RWTHVRQuickStart/Public/PointOfInterestManager.h
+9
-6
9 additions, 6 deletions
Source/RWTHVRQuickStart/Public/PointOfInterestManager.h
with
9 additions
and
6 deletions
Source/RWTHVRQuickStart/Public/PointOfInterestManager.h
+
9
−
6
View file @
6c9cd072
...
...
@@ -20,23 +20,26 @@ public:
virtual
void
TickActor
(
float
DeltaTime
,
enum
ELevelTick
TickType
,
FActorTickFunction
&
ThisTickFunction
)
override
;
UFUNCTION
(
CallInEditor
,
Category
=
"Point Of Interest Manager"
)
UFUNCTION
(
CallInEditor
,
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
AddPointOfInterest
();
UFUNCTION
(
CallInEditor
,
Category
=
"Point Of Interest Manager"
)
UFUNCTION
(
CallInEditor
,
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
VisitNextPointOfInterest
();
UFUNCTION
(
CallInEditor
,
Category
=
"Point Of Interest Manager"
)
UFUNCTION
(
CallInEditor
,
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
VisitPreviousPointOfInterest
();
UFUNCTION
(
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
VisitPointOfInterestByIndex
(
int
index
);
UFUNCTION
(
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
VisitPointOfInterest
(
APointOfInterest
*
POI
)
const
;
UFUNCTION
(
CallInEditor
,
Category
=
"Point Of Interest Manager"
)
UFUNCTION
(
CallInEditor
,
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
StartCameraRide
();
UFUNCTION
(
CallInEditor
,
Category
=
"Point Of Interest Manager"
)
UFUNCTION
(
CallInEditor
,
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
StopCameraRide
();
UFUNCTION
(
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
int
GetPointOfInterestCount
();
protected:
...
...
@@ -46,7 +49,7 @@ protected:
int
CurrentPOIIndex
=
0
;
private:
UFUNCTION
(
CallInEditor
,
Category
=
"Point Of Interest Manager"
)
UFUNCTION
(
CallInEditor
,
BlueprintCallable
,
Category
=
"Point Of Interest Manager"
)
void
UpdateSpline
();
void
ProgressCameraRide
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment