오늘은 제목처럼 Input System으로 UI를 제어하는 방법과
에러 해결법에 대해 작성하고자 합니다.
일단 이 에러는 Player Input 컴포넌트에서 Create Actions를 누르면 나오는 에러였습니다.
에러를 겪은 지는 꽤 되었었는데 그동안은 구글링해 봐도 방법이 안 나오고,
직접 인풋 액션을 만들어 사용하는 데는 크게 문제가 없어서 넘어갔었습니다.
남들 딸깍 한 번이면 해결하는 걸 매번 일일이 만들어야 한다는 번거로움
+ 처음엔 넣어야 할 내용이 뭔지 몰라서 짜증 났다 정도?
에러의 이유는 알고 있었습니다.
Input System에서 절대경로를 사용하려고 해서 문제가 발생하는 거였습니다.
이래저래 방치하고 있다가 필요에 의해
(UI와 같이 설명한 데는 이유가 있...)
시도, 해결한 내용을 공유하고자 합니다.
에러 해결 방법
에러를 클릭하면 다음과 같이 PlayerInputEditor.cs에 접근할 수 있습니다.
이제 245번부터 296번까지의 코드 내용을 아래의 코드로 바꿔주시면 됩니다.
if (GUILayout.Button(m_CreateActionsText, EditorStyles.miniButton, GUILayout.MaxWidth(120)))
{
// Request save file location.
var defaultFileName = Application.productName;
var path = EditorUtility.SaveFilePanelInProject(
"Create Input Actions Asset",
defaultFileName,
InputActionAsset.Extension,
"Create a new input actions asset"
);
if (!string.IsNullOrEmpty(path))
{
// Load default actions and update all GUIDs.
var defaultActionsText = File.ReadAllText(kDefaultInputActionsAssetPath);
var newActions = InputActionAsset.FromJson(defaultActionsText);
foreach (var map in newActions.actionMaps)
{
map.m_Id = Guid.NewGuid().ToString();
foreach (var action in map.actions)
action.m_Id = Guid.NewGuid().ToString();
}
newActions.name = Path.GetFileNameWithoutExtension(path);
var newActionsText = newActions.ToJson();
// Write it out and tell the asset DB to pick it up.
File.WriteAllText(path, newActionsText);
// Import the new asset
AssetDatabase.ImportAsset(path, ImportAssetOptions.ForceSynchronousImport);
// Load imported object.
var importedObject = AssetDatabase.LoadAssetAtPath<InputActionAsset>(path);
// Set it on the PlayerInput component.
m_ActionsProperty.objectReferenceValue = importedObject;
serializedObject.ApplyModifiedProperties();
// Open the asset.
AssetDatabase.OpenAsset(importedObject);
}
}
그러면 Create Actions를 통해서 inputActions를 만들 수 있습니다.!
이 템플릿을 활용하여 이제 UI를 InputSystem으로 다뤄보겠습니다.
UI
EventSystem을 보신 적 있나요?
보통 UI를 생성하면 EventSystem이 자동으로 함께 만들어지게 됩니다.
여기서 Replace with inputSystemUIinputModule이라고 적힌 부분을 누르게 되면
아래와 같이 자동으로 바뀌게 될 겁니다.
Event System의 First Selected에 원하는 UI를 넣어주면 끝입니다.
저는 설명을 위해 버튼을 넣어주었습니다.
Actions Asset에 본인이 만든 InputAction Asset을 넣어
커스텀 할 수도 있겠죠?
테스트 결과물
UI를 InputSystem으로 제어하는 모습
마무리
사실 유니티 처음 깔았을 때 환경 그대로 유지하고 있었다면
겪지 않았을 문제이긴 한데 괜히 바탕화면으로 유니티 파일들을 빼서;;;
사서 고생했지만 어쨌든 해결했으니 한잔해.
'유니티 > 공통' 카테고리의 다른 글
유니티 - Extension(확장 메서드)에 대해 알아보자 (0) | 2024.11.25 |
---|---|
유니티 - Audio Mixer를 사용해보자 (+ 스크립트에서 불러올 때 주의할 점) (0) | 2024.11.20 |
유니티 - Batching에 대해 알아보자.(feat. Draw call, Set Pass Call, 아틀라스) (1) | 2024.10.25 |
유니티 - 에셋 번들에 대해 알아보자 (1) | 2024.10.22 |
유니티 - 특정 스크립트가 적용되어 있는 오브젝트 찾는 법 (0) | 2024.10.21 |