From eccb70da24ee9556854cb050983487d929356ce2 Mon Sep 17 00:00:00 2001 From: Pasha Bibko <156938226+PashaBibko@users.noreply.github.com> Date: Thu, 27 Nov 2025 15:00:40 +0000 Subject: [PATCH] Removed bloom modification --- Assets/Scripts/PlayerController.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/Assets/Scripts/PlayerController.cs b/Assets/Scripts/PlayerController.cs index 0a08275..ea16220 100644 --- a/Assets/Scripts/PlayerController.cs +++ b/Assets/Scripts/PlayerController.cs @@ -19,8 +19,6 @@ public class PlayerController : OrbitalPositionBehaviour private bool m_HasFreeHitActive; private bool m_HasInvicibility; - - private Bloom m_BloomController; [Header("References")] [SerializeField] private MeshRenderer m_Renderer; @@ -31,8 +29,6 @@ public class PlayerController : OrbitalPositionBehaviour protected override void OnStart() { - m_BloomController = m_PostProcessVolume.profile.GetSetting(); - s_Instance = this; s_HighScore = Mathf.Max(s_HighScore, PlayerPrefs.GetInt("HighScore", 0)); Debug.Log($"Loaded high score of [{s_HighScore}]"); @@ -45,11 +41,6 @@ public class PlayerController : OrbitalPositionBehaviour public void Update() { - if (!m_KillingItself) - { - m_BloomController.diffusion.value = 3f; - } - m_ScoreText.text = s_PlayerScore.ToString(); if (s_PlayerScore > s_HighScore) m_ScoreText.color = Color.yellow; @@ -127,8 +118,6 @@ public class PlayerController : OrbitalPositionBehaviour m_SuicidePoint = transform.position; m_KillingItself = true; m_DeathLerp = 0f; - - //m_BloomController.diffusion.value = 10f; } else if (other.CompareTag("PlayerMod"))