카테고리 없음
Editor 에서 Undo 확인하기
소나무꼴
2021. 5. 24. 10:45
void OnGUI()
{
if (Event.current.type == EventType.ValidateCommand)
{
switch (Event.current.commandName)
{
case "UndoRedoPerformed":
break;
}
}
}