Add win screen

This commit is contained in:
RochesterX
2025-03-08 13:33:19 -05:00
parent 63912cd2fd
commit 058cf261c8
18 changed files with 2055 additions and 127 deletions

View File

@@ -29,7 +29,7 @@ public class PlayerCameraMovement : MonoBehaviour
if (playerThatWon != null)
{
target = playerThatWon.transform.position;
transform.position = Vector3.Lerp(transform.position, new Vector3(target.x, target.y, target.z - 10), speed * 2 * Time.deltaTime);
transform.position = Vector3.Lerp(transform.position, new Vector3(target.x, target.y, target.z - 10), speed * 12 * Time.deltaTime);
}
return;