This commit is contained in:
Кичигин Алексей 2023-10-30 17:52:57 +03:00
commit 374781f089
5 changed files with 692 additions and 943 deletions

View File

@ -46,6 +46,7 @@ namespace BNG {
if (boxCollider) {
colliderInitialCenterZ = boxCollider.center.z;
}
CanBeHeldDown = false;
}
void Update() {

View File

@ -1360,7 +1360,7 @@ MonoBehaviour:
m_enableAutoSizing: 1
m_fontSizeMin: 18
m_fontSizeMax: 116.62
m_fontStyle: 0
m_fontStyle: 1
m_HorizontalAlignment: 2
m_VerticalAlignment: 512
m_textAlignment: 65535
@ -16870,7 +16870,7 @@ MonoBehaviour:
m_enableAutoSizing: 1
m_fontSizeMin: 18
m_fontSizeMax: 116.62
m_fontStyle: 0
m_fontStyle: 1
m_HorizontalAlignment: 2
m_VerticalAlignment: 512
m_textAlignment: 65535

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ public class CutsceneController : MonoBehaviour
private void Awake()
{
_shipMoveSides = FindObjectOfType<ShipPathFollower>().GetComponent<ShipMoveSides>();
_shipMoveSides = FindObjectOfType<PlayerInputHandler>().GetComponent<ShipMoveSides>();
_previewModule = FindObjectOfType<PreviewModule>();
}
@ -28,6 +28,7 @@ public class CutsceneController : MonoBehaviour
private IEnumerator CutsceneCoroutine()
{
Debug.Log("Cutscene Coroutine");
_shipMoveSides.ToggleInput(false);
_previewModule.TogglePanel(true);
_cutscene.Play();

View File

@ -13,7 +13,7 @@ public class FinishController : MonoBehaviour
private void Awake()
{
_moveSides = FindObjectOfType<ShipMoveSides>();
_moveSides = FindObjectOfType<PlayerInputHandler>().GetComponent<ShipMoveSides>();
_vTimerCounter = FindObjectOfType<vTimerCounter>();
_monumentController = FindObjectOfType<MonumentController>();
}