Merge branch 'hdrp' of https://git.bit5.ru/r.nikolin/rabidus-test into hdrp
This commit is contained in:
commit
374781f089
|
@ -46,6 +46,7 @@ namespace BNG {
|
|||
if (boxCollider) {
|
||||
colliderInitialCenterZ = boxCollider.center.z;
|
||||
}
|
||||
CanBeHeldDown = false;
|
||||
}
|
||||
|
||||
void Update() {
|
||||
|
|
|
@ -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
|
@ -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();
|
||||
|
|
|
@ -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>();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue