Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dialog-system
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
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VIA-VR
dialog-system
Commits
faf6baac
Commit
faf6baac
authored
1 year ago
by
Sven Gerlach
Browse files
Options
Downloads
Patches
Plain Diff
Functional Buttons (Removed Test Code)
parent
bc2e9ba8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Assets/UI/DialogueBox/StateMachine.cs
+0
-35
0 additions, 35 deletions
Assets/UI/DialogueBox/StateMachine.cs
with
0 additions
and
35 deletions
Assets/UI/DialogueBox/StateMachine.cs
+
0
−
35
View file @
faf6baac
...
@@ -19,41 +19,6 @@ public void setNote() {
...
@@ -19,41 +19,6 @@ public void setNote() {
dialogueBox
.
setTransitions
(
currentNote
.
Transitions
);
dialogueBox
.
setTransitions
(
currentNote
.
Transitions
);
}
}
//Test
public
void
Start
()
{
Transition
[]
GHI
=
new
Transition
[
2
];
Note
TestNote
=
new
Note
(
"Actor 3"
,
"Testing Text 3"
,
GHI
);
Transition
TestingTransition
=
new
Transition
(
"Continue"
,
TestNote
);
Transition
[]
ABC
=
new
Transition
[
1
];
ABC
[
0
]
=
TestingTransition
;
Note
TestNote2
=
new
Note
(
"Actor 2"
,
"Testing Text 2"
,
ABC
);
Transition
TestingTransition1
=
new
Transition
(
"Yes"
,
TestNote2
);
Transition
[]
DEF
=
new
Transition
[
1
];
DEF
[
0
]
=
TestingTransition1
;
Note
TestNote3
=
new
Note
(
"Actor 1"
,
"Testing Text 1"
,
DEF
);
Transition
TestingTransition2
=
new
Transition
(
"No"
,
TestNote3
);
GHI
[
0
]
=
TestingTransition1
;
Transition
[]
JKL
=
new
Transition
[
5
];
JKL
[
0
]
=
TestingTransition1
;
JKL
[
1
]
=
TestingTransition2
;
JKL
[
3
]
=
TestingTransition
;
JKL
[
4
]
=
TestingTransition1
;
Note
TestNote4
=
new
Note
(
"Actor 4"
,
"Testing Text 4"
,
JKL
);
Transition
TestingTransition3
=
new
Transition
(
"Unsure"
,
TestNote4
);
GHI
[
1
]
=
TestingTransition3
;
JKL
[
2
]
=
TestingTransition3
;
currentNote
=
TestNote3
;
setNote
();
}
public
class
Note
{
public
class
Note
{
public
string
ActorName
;
public
string
ActorName
;
...
...
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