Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Spieleentwicklung
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
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adrian Paschkowski
Spieleentwicklung
Commits
fbead8ae
Verified
Commit
fbead8ae
authored
3 years ago
by
Adrian Paschkowski
Browse files
Options
Downloads
Patches
Plain Diff
Move camera to AntiPlayer on death, slow time
parent
4b6561da
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Assets/Scripts/BaseCameraController.cs
+1
-1
1 addition, 1 deletion
Assets/Scripts/BaseCameraController.cs
Assets/Scripts/RoundController.cs
+15
-3
15 additions, 3 deletions
Assets/Scripts/RoundController.cs
with
16 additions
and
4 deletions
Assets/Scripts/BaseCameraController.cs
+
1
−
1
View file @
fbead8ae
...
@@ -82,7 +82,7 @@ public class BaseCameraController : MonoBehaviour
...
@@ -82,7 +82,7 @@ public class BaseCameraController : MonoBehaviour
{
{
if
(
Input
.
GetKeyDown
(
KeyCode
.
Z
))
// TODO Remove eventually
if
(
Input
.
GetKeyDown
(
KeyCode
.
Z
))
// TODO Remove eventually
{
{
var
player
=
GameObject
.
FindGameObjectWithTag
(
"Player"
);
var
player
=
GameObject
.
FindGameObjectWithTag
(
"
Anti
Player"
);
AnimateToPosition
(
player
.
transform
.
position
+
new
Vector3
(
0f
,
0.75f
),
1.5f
,
0.1f
);
AnimateToPosition
(
player
.
transform
.
position
+
new
Vector3
(
0f
,
0.75f
),
1.5f
,
0.1f
);
}
}
if
(
Input
.
GetKeyDown
(
KeyCode
.
L
))
// TODO Also remove eventually... or make a proper feature.
if
(
Input
.
GetKeyDown
(
KeyCode
.
L
))
// TODO Also remove eventually... or make a proper feature.
...
...
This diff is collapsed.
Click to expand it.
Assets/Scripts/RoundController.cs
+
15
−
3
View file @
fbead8ae
...
@@ -9,13 +9,15 @@ public interface IRoundCallback
...
@@ -9,13 +9,15 @@ public interface IRoundCallback
void
OnRoundEnd
();
void
OnRoundEnd
();
}
}
public
class
RoundController
:
MonoBehaviour
public
class
RoundController
:
MonoBehaviour
,
IFighterCallback
{
{
public
static
RoundController
instance
{
get
;
private
set
;
}
public
static
RoundController
instance
{
get
;
private
set
;
}
public
List
<
IRoundCallback
>
roundCallbacks
=
new
List
<
IRoundCallback
>();
public
List
<
IRoundCallback
>
roundCallbacks
=
new
List
<
IRoundCallback
>();
public
bool
roundRunning
{
get
;
private
set
;
}
public
bool
roundRunning
{
get
;
private
set
;
}
BaseCameraController
cameraController
;
public
void
StartRound
()
public
void
StartRound
()
{
{
if
(
roundRunning
)
if
(
roundRunning
)
...
@@ -23,7 +25,10 @@ public class RoundController : MonoBehaviour
...
@@ -23,7 +25,10 @@ public class RoundController : MonoBehaviour
return
;
return
;
}
}
roundRunning
=
true
;
roundRunning
=
true
;
SetGameSpeed
(
1f
);
roundCallbacks
.
ForEach
(
c
=>
c
.
OnRoundStart
());
roundCallbacks
.
ForEach
(
c
=>
c
.
OnRoundStart
());
// Fighters clear their callbacks every round end
GameObject
.
FindGameObjectWithTag
(
"AntiPlayer"
).
GetComponent
<
Fighter
>().
callbacks
.
Add
(
this
);
}
}
public
void
StopRound
()
public
void
StopRound
()
...
@@ -33,6 +38,7 @@ public class RoundController : MonoBehaviour
...
@@ -33,6 +38,7 @@ public class RoundController : MonoBehaviour
return
;
return
;
}
}
roundRunning
=
false
;
roundRunning
=
false
;
SetGameSpeed
(
1f
);
roundCallbacks
.
ForEach
(
c
=>
c
.
OnRoundEnd
());
roundCallbacks
.
ForEach
(
c
=>
c
.
OnRoundEnd
());
}
}
...
@@ -48,9 +54,8 @@ public class RoundController : MonoBehaviour
...
@@ -48,9 +54,8 @@ public class RoundController : MonoBehaviour
}
}
}
}
public
void
Change
GameSpeed
(
float
multiplier
)
public
void
Set
GameSpeed
(
float
multiplier
)
{
{
Debug
.
Log
(
multiplier
);
Time
.
timeScale
=
multiplier
;
Time
.
timeScale
=
multiplier
;
}
}
...
@@ -65,6 +70,13 @@ public class RoundController : MonoBehaviour
...
@@ -65,6 +70,13 @@ public class RoundController : MonoBehaviour
Destroy
(
gameObject
);
Destroy
(
gameObject
);
}
}
DontDestroyOnLoad
(
gameObject
);
DontDestroyOnLoad
(
gameObject
);
cameraController
=
Camera
.
main
.
GetComponent
<
BaseCameraController
>();
}
}
public
void
OnFighterDeath
(
Fighter
fighter
)
{
SetGameSpeed
(
0.5f
);
cameraController
.
AnimateToPosition
(
fighter
.
transform
.
position
+
new
Vector3
(
0f
,
0.75f
),
1.5f
,
0.05f
);
}
}
}
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