Eye Sigil ARG/Moon Hunters
From Game Detectives Wiki
Main Page > List of Investigations > Eye Sigil ARG > Moon Hunters
Moon Hunters is a game developed by Kitfox Games in Unity. It was released on 10 Mar 2016, but public betas existed since 10 Sep 2015 or before.
The sigil was added while still in beta on 09 Feb 2016.
Sigil
TBD
Piece
TBD
Data Mining
The sigil in Moon Hunters consists of a disc on the "ground" and a vertical "statue" piece. Their corresponding textures are called Mount_SigilDisk
and Mount_SigilBack
.
The piece is called glyph in the comments in the code:
public class CheerChecker : MonoBehaviour private void Update() { if (this.players.Count < 2) return; if (UIManager.Instance.OverlayPanel != null) return; for (int i = 0; i < this.players.Count; i++) { if (!this.players[i].animator.GetCurrentAnimatorStateInfo(0).IsName("Cheer")) return; } UIManager.Instance.glyphPanel.ShowWindow(); for (int j = 0; j < this.players.Count; j++) { this.players[j].animator.SetBool("Cheering", false); } Debug.Log("Show glyph!"); }