Skip to content
Snippets Groups Projects
Verified Commit fbead8ae authored by Adrian Paschkowski's avatar Adrian Paschkowski :thinking:
Browse files

Move camera to AntiPlayer on death, slow time

parent 4b6561da
No related branches found
No related tags found
No related merge requests found
...@@ -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("AntiPlayer");
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.
......
...@@ -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 ChangeGameSpeed(float multiplier) public void SetGameSpeed(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);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment