manager들 사이의 호출순서가 궁금해요
533
작성한 질문수 22
manager
public class Managers : MonoBehaviour
{
static Managers s_Instance; //유일성이 보장된다
public static Managers instance { get { Init(); return s_Instance; } } // 유일한 매니저를 갖고온다
InputManager _input = new InputManager();
public static InputManager input { get { return instance._input; } }
// Start is called before the first frame update
void Start()
{
Init();
}
// Update is called once per frame
void Update()
{
_input.OnUpdate();
}
static void Init()
{
if (s_Instance == null)
{
GameObject go = GameObject.Find("@Managers");
if (go == null)
{
go = new GameObject { name = "@Managers" };
go.AddComponent<Managers>();
}
DontDestroyOnLoad(go);
s_Instance = go.GetComponent<Managers>();
}
}
}
==================================
playercontroller.cs
public class PlayerController : MonoBehaviour
{
[SerializeField]
float _speed = 10.0f;
// Start is called before the first frame update
void Start()
{
Managers.input.KeyAction -= OnKeyboard; //실수 방지용으로 미리 한번 -함
Managers.input.KeyAction += OnKeyboard;
}
// Update is called once per frame
void Update()
{
}
void OnKeyboard()
{
if (Input.GetKey(KeyCode.W))
{
transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(Vector3.forward), 0.2f);
transform.position += Vector3.forward Time.deltaTime _speed;
}
if (Input.GetKey(KeyCode.S))
{
transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(Vector3.back), 0.2f);
transform.position += Vector3.back Time.deltaTime _speed;
}
if (Input.GetKey(KeyCode.A))
{
transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(Vector3.left), 0.2f);
transform.position += Vector3.left Time.deltaTime _speed;
}
if (Input.GetKey(KeyCode.D))
{
transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(Vector3.right), 0.2f);
transform.position += Vector3.right Time.deltaTime _speed;
}
}
}
==================================
public class InputManager
{
public Action KeyAction = null;
public void OnUpdate()
{
if (Input.anyKey == false)
return;
if (KeyAction != null)
KeyAction.Invoke();
}
}
==================================
player.cs
public class Player : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
Managers mg = Managers.instance;
}
// Update is called once per frame
void Update()
{
}
}
지금 unitychan 오브잭트에 playercontroller 컴포넌트를 inspector창에다 추가한뒤에 실행을 하는데 input값을 입력받을떄마다 어떤식으로 작동이되는지 순서가 이해가 안가요
playercontroller 에 update()에 아무것도 없는데 지속적으로 어떻게 key값을 받는지 궁금해요
start()는 1회실행되는 함수인데
player.cs도 지금 존재 이유가 유일한 manager 컴포넌트를 쓰게하기 위해서 만들었는데[ 점점 갈수록 어렵네요
답변 1
0
delegate와 콜백에 대해 리서치를 해보시기 바랍니다.
_input.OnUpdate(); 이 부분의 KeyAction.Invoke();에서,
콜백으로 등록된 함수들이 딸려서 실행되고 있는 것입니다.
하지만 질문자 분처럼 너무 어려워 하는 분들이 많아서
이 부분은 추후 제거되었으니 참고 바랍니다
매니저 관련 질문이 있습니다.
0
27
2
비쥬얼 스튜디오에서 unity연결이 없습니다.
0
50
2
UI 기능 관련 질문이 있습니다!
0
50
2
픽셀 좌표 스크린 좌표
0
35
0
전체적으로 코드 읽는게 굉장히 오래 걸리네요...
0
85
2
카메라 #2 수업 캐릭터 쓰러짐 해결
0
88
1
플레이어 움직임이 끝날때, 기울어짐 현상
0
87
1
Input 적용과 관련하여 질문 있습니다.
0
78
1
디버그 불가.. Unity에 연결 불가
0
85
1
달리기 애니메이션 에러
0
95
2
오랜만에 게임을 만들다가 사운드 관련해서 뭔가 궁금한게 있어서 봤습니다
0
68
1
GetKey 오류
0
115
2
에셋을 어디에 올려두신지 알 수 있나요?
0
111
1
재귀호출? 오류나는데 왜 이래요 ?
0
171
6
Animation blending 파라미터 계산
0
71
1
newPos와 to지점이 겹쳐져야 하는거 아닌가요?
0
100
3
오브젝트 복제하니까 자꾸 이런게 뜨면서 꺼집니다
0
89
2
질문있습니다
0
145
2
아 이거 소스코드 같은거 없나요?
0
145
3
질문 드립니다. string.IsNullOrEmpty(name)
0
90
2
@Managers 가 씬에 배치되어 있어도 문제가 되지 않나요?
0
137
2
유니티6 NavMesh 안되는분들
1
178
1
Unity6 Unity-Chan Material 마젠타 문제 해결법
7
540
1
GetComponent<Poolable> 질문드립니다.
0
104
2





