사용법 :
$game_system.compass = id
id 에 0을 대입했을 경우는 표시를 안합니다.
id 에는 이벤트의 아이디를 적어주시면 됩니다.
이벤트가 없거나 삭제된 이벤트의 경우는 표시되지 않습니다.
$game_system.delete_compass = []
배열안에 id가 추가될 경우 배열안에 있는 id는 표시가 안됩니다.
추가방법 : $game_system.delete_compass.push(id)
제거방법 : $game_system.delete_compass.delete(id)
초기화 : $game_system.delete_compass.clear
파티원이 없거나 모두 죽었을 경우 표시되지 않습니다.
자세한것은 예제를 참고해 주세요.