If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

Mousey

From The Cutting Room Floor
Jump to navigation Jump to search

Title Screen

Mousey

Developer: PearlByte
Platform: Windows
Released internationally: August 25, 2023


CodeIcon.png This game has unused code.
GraphicsIcon.png This game has unused graphics.
MusicIcon.png This game has unused music.
SoundIcon.png This game has unused sounds.
DebugIcon.png This game has debugging material.
LevelSelectIcon.png This game has a hidden level select.
Carts.png This game has revisional differences.


<Sanky> please suggest an unused sprite with a clock or something
This game is still under active development.
Be aware that any unused content you find may become used or removed in the future. Please only add things to the article that are unlikely to ever be used, or went unused for some time. If they do get used, please remove them from the page and specify in the edit summary!

Mousey is a 3D-platformer about collecting cheese. It has no relation to Ironmouse.

Cheat Codes

 if (false)
 	{
	 if (cheatString == "UUDDLRS")
 	{
 		mc.ActivatePepper();
 		cheatString = "";
 	}
 	else if (cheatString == "LRSTDD")
 	{
  	 	mc.GetHP(100);
 	 	cheatString = "";
 	}
 }

The PlayerUIMaster script reveals two cheat codes. They must be input in the pause menu with either a keyboard or controller, swapping Square with E and Triangle with F:

  • Up, Up, Down, Down, Left, Right, Square - activate Pepper
  • Left, Right, Square, Triangle, Down, Down - full health

In update 2.8, the cheat codes were placed under if (false), which completely disabled them.

Level Menu

Mousey DebugMenu.jpg

After the player has earned the Completionist achievement, a hidden menu called "cheese toolz" can be opened by first holding CTRL and Space, then pressing F11. It temporarily disables Steam achievements and lets you warp to any level and fully complete or reset them individually.

Hidden T-posing Character

Mousey Title Secret.png

While in the title screen, stretching the game window enough reveals a hidden T-posing character on the right.

Unused Sound Effects

1.ogg

Likely an old sound for a pickup.

16.ogg

An old sound for breaking cheese crates.

Retro - Chip Power.ogg

Sound of a cheese crate spawning in the middle of Level Select in NG+. This was in one of the itch.io versions.

Unused Textures

Mousey map kitchen.png

This was used as the preview for the Kitchen level in the first versions, as shown in the bonus video.

Unused Cat Mechanic

One of the bonus videos reveals a scrapped cat mechanic in the Kitchen. Current versions include some leftovers of it.

Audio

panic.ogg

Music that played when the cat sees you.

catscare.ogg

Sound effect that played when the cat catches you.

Scripts

MouseController

Hide
UnHide

Unused functions that are most likely related to hiding from the cat.

  • There's also a flag called hidecam which enables a different camera angle for hiding from the cat (as shown in the bonus video).

LevelMaster

 private enum CatStatus
 {
    WAITING = 0,
    COMING = 1,
    ACTIVE = 2,
    NONE = 3
 }

Status values for the cat.

 private void CatComing()
 {
     p_ui.WarnCat();
     timeToHide = 15f;
     currentCatStatus = CatStatus.COMING;
     mainmusic.volume = 0f;
     scaremusic.volume = 0.9f;
     scaremusic.Play();
 }
 private void ActivateCat()
 {
     currentCatStatus = CatStatus.ACTIVE;
     if (!mc.hiding)
     {
         CatScare();
     }
     else
     {
         CatLeave();
     }
 }
 private void CatScare()
 {
     mc.hp = 0;
     p_ui.UI_Visible(vis: false);
     catscare.SetActive(value: true);
     currentCatStatus = CatStatus.NONE;
     mainmusic.volume = 0f;
     Invoke("BlackScreen", 0.666f);
 }
 private void CatLeave()
 {
     catTimer = 0f;
     currentCatStatus = CatStatus.WAITING;
     mainmusic.volume = 0.7f;
 }
 private void BlackScreen()
 {
     p_ui.Black();
 }

Four functions related to cat behavior.

HideyHole

A script for hiding hole entrances in Kitchen walls.

 using UnityEngine;

 public class HideyHole : MonoBehaviour
 {
     [SerializeField]
     private Transform hidePoint;

     [SerializeField]
     private Transform exitPoint;

     [SerializeField]
     private GameObject hideCam;

     private void OnTriggerEnter(Collider other)
     {
         if (other.CompareTag("Player"))
         {
             MouseController component = other.GetComponent<MouseController>();
             hideCam.SetActive(value: true);
             component.Teleport(hidePoint.position);
             component.Hide(exitPoint, hideCam);
         }
     }
 }