Difference between revisions of "Eye Sigil ARG/Moon Hunters"

From Game Detectives Wiki
Jump to: navigation, search
[unchecked revision][checked revision]
m (Mattyb moved page Moon Hunters to Eye Sigil ARG/Moon Hunters)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{ArgHeader|arg=Eye Sigil ARG}}
 
{{ArgHeader|arg=Eye Sigil ARG}}
  
'''Moon Hunters''' is a 1-4 players myth-weaving adventure game developed by ''Kitfox Games'' with Unity. It was released on 10 Mar 2016, but public betas existed since 10 Sep 2015 or before.
+
'''Moon Hunters''' is a 1-4 players myth-weaving adventure game developed by ''Kitfox Games'' with Unity. It was released on 10 Mar 2016, but beta versions existed since 10 Sep 2015 or before.
  
 
The sigil was added while still in beta on 09 Feb 2016.
 
The sigil was added while still in beta on 09 Feb 2016.
  
 
=Sigil=
 
=Sigil=
Sigil appears in some levels as a statue structure.  
+
The Sigil appears in some levels as a statue structure.  
  
 
[[Image:MoonH_screen.png|300px]]
 
[[Image:MoonH_screen.png|300px]]
 +
 
=Piece=
 
=Piece=
In multiplayer, two or more people have to perform a specific pose (cheering) while standing on the sigil. The piece will appear on screen.
+
In multiplayer, two or more people have to perform a specific pose (cheering) while standing on the sigil, which will make the piece appear on the screen.
  
 
[[Image:MoonH_piece.png|300px]]
 
[[Image:MoonH_piece.png|300px]]
 +
 +
==Discovery process notes==
 +
The solving of this piece was slightly delayed by waiting for the game to actually be released on March 10th, even though the sigil was spotted on March 8th.
 +
 
=Data Mining=
 
=Data Mining=
The piece is not stored in the game files, but obtained from an URL [http://www.moonhuntersgame.com/img/cheerpanel.png on the game's website].
+
The piece is not stored in the game files, but is obtained from an URL [http://www.moonhuntersgame.com/img/cheerpanel.png on the game's website].
  
 
The sigil in Moon Hunters consists of a disc on the "ground" and a vertical "statue" piece. Their corresponding textures are called <code>Mount_SigilDisk</code> and <code>Mount_SigilBack</code>.
 
The sigil in Moon Hunters consists of a disc on the "ground" and a vertical "statue" piece. Their corresponding textures are called <code>Mount_SigilDisk</code> and <code>Mount_SigilBack</code>.
Line 20: Line 25:
 
The piece is called ''glyph'' in the comments in the code:
 
The piece is called ''glyph'' in the comments in the code:
  
 +
<pre>
 
  public class CheerChecker : MonoBehaviour
 
  public class CheerChecker : MonoBehaviour
 
    
 
    
Line 40: Line 46:
 
   Debug.Log("Show glyph!");
 
   Debug.Log("Show glyph!");
 
  }
 
  }
 +
</pre>

Latest revision as of 17:53, 29 September 2021

Main Page > List of Investigations > Eye Sigil ARG > Moon Hunters

Moon Hunters is a 1-4 players myth-weaving adventure game developed by Kitfox Games with Unity. It was released on 10 Mar 2016, but beta versions existed since 10 Sep 2015 or before.

The sigil was added while still in beta on 09 Feb 2016.

Sigil

The Sigil appears in some levels as a statue structure.

MoonH screen.png

Piece

In multiplayer, two or more people have to perform a specific pose (cheering) while standing on the sigil, which will make the piece appear on the screen.

MoonH piece.png

Discovery process notes

The solving of this piece was slightly delayed by waiting for the game to actually be released on March 10th, even though the sigil was spotted on March 8th.

Data Mining

The piece is not stored in the game files, but is obtained from an URL on the game's website.

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!");
 }