Unity/기타 12

AssetPostprocessor.OnPostprocessPrefab 프리팹, 생성전, 저장전에 호출되는 함수

https://docs.unity3d.com/ScriptReference/AssetPostprocessor.OnPostprocessPrefab.html Unity - Scripting API: AssetPostprocessor.OnPostprocessPrefab(GameObject root) To use this function, add it to a subclass. It lets you modify the imported GameObject. GameObjects only exist during the import and Unity destroys them immediately after import. This function is called before the final Prefab is crea..

Unity/기타 2021.11.26

OnPointerClick 관련 이것저것.

public UICharRoom : MonoBehaviour, IPointerClickHandler { public void OnPointerClick(PointerEventData eventData) { } } OnPointerClick 이 호출이 안되는 경우 1. 오브젝트가 2D 라면 카메라에 Physice 2D Raychaster, 3D 라면 카메라에 Physice Raychaster 2. Physice 2D Raychaster, Physice Raychaster에서 Event Mask 가 해당 오프젝트의 Layer 를 포함하는지 확인. 3. EventSystem 이 있나 확인. 없으면 추가. 4. BoxCollider 혹은 BoxCollider2D가 있어야 한다. Size를 확인해자. OnPoin..

Unity/기타 2021.05.12