Commit ed5b95ee authored by 15박보승's avatar 15박보승

구름의 높이가 최대 높이 기록에 따라 달라지도록 구현/최대 높이 기록을 보여주는 UI 추가/MapManager 작업중

parent af62aded
fileFormatVersion: 2
guid: 69aef0102c5caac4fb4391e08505dca0
guid: 19ac9e1f5954f44458c34d427b8ce316
folderAsset: yes
DefaultImporter:
externalObjects: {}
......
This diff is collapsed.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class CloudBehaviour : MonoBehaviour
{
private ParticleSystem cloud;
private void Start()
{
cloud = GetComponent<ParticleSystem>();
GameManager.inst.OnMaxHeightChanged += SetHeight;
}
private void SetHeight(float height)
{
ParticleSystem.ColorOverLifetimeModule module = cloud.colorOverLifetime;
module.color = new Color(1, 1, 1, height / 500);
transform.position = new Vector3(transform.position.x, height - 400, transform.position.z);
}
}
\ No newline at end of file
fileFormatVersion: 2
guid: 11492ba4fa2cc8f46a9b9e3e1e3796e4
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : SingletonBehaviour<GameManager>
{
private float _maxHeight = 0;
public float MaxHeight {
get
{
return _maxHeight;
}
set
{
Debug.Log(value);
_maxHeight = value;
OnMaxHeightChanged?.Invoke(value);
}
}
public Action<float> OnMaxHeightChanged;
}
fileFormatVersion: 2
guid: 4daf81bf030001f49bad8056a5fae1c0
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -11,6 +11,8 @@ public class IngameUIManager : SingletonBehaviour<IngameUIManager>
[SerializeField]
private Text heightText;
[SerializeField]
private Text maxHeightText;
[SerializeField]
private GameObject enemyHealthUIPrefab;
......@@ -43,6 +45,11 @@ public class IngameUIManager : SingletonBehaviour<IngameUIManager>
}
}
public void UpdateMaxHeightText(float maxHeight)
{
maxHeightText.text = string.Format("{0:F1}", maxHeight) + " M";
}
public void UpdateHeightText(float height)
{
heightText.text = string.Format("{0:F1}", height) + " M";
......
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MapManager : MonoBehaviour
{
private float nextMapBlockGenerateDistance;
private float nextEnemyGenerateDistance;
[SerializeField]
private Bounds mapBound;
private void OnDrawGizmos()
{
Gizmos.color = Color.blue;
Gizmos.DrawWireCube(mapBound.center, mapBound.size);
}
private void Start()
{
GameManager.inst.OnMaxHeightChanged += OnMaxHeightChanged;
}
public void OnMaxHeightChanged(float height)
{
mapBound.center = new Vector3(0, height, 0);
foreach (Transform child in transform)
{
if (child.position.y < height - 500)
{
child.gameObject.SetActive(false);
}
}
}
}
fileFormatVersion: 2
guid: f34fc5c75bd2c124487b69a78f0bbbed
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
......@@ -121,6 +121,11 @@ public class PlayerController : MonoBehaviour
private void LateUpdate()
{
IngameUIManager.inst.UpdateHeightText(transform.position.y);
if (GameManager.inst.MaxHeight < transform.position.y)
{
IngameUIManager.inst.UpdateMaxHeightText(transform.position.y);
GameManager.inst.MaxHeight = transform.position.y;
}
}
private void FireHook()
......@@ -137,7 +142,6 @@ public class PlayerController : MonoBehaviour
hook.DisableHook();
isWired = false;
rb.useGravity = true;
//cc.enabled = true;
}
public void ActiveWire()
......@@ -146,6 +150,5 @@ public class PlayerController : MonoBehaviour
joint.distance = Vector3.Distance(transform.position, hook.transform.position);
isWired = true;
rb.useGravity = false;
//cc.enabled = false;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment