dronkowitz

GameWorldManager.cs

Jan 31st, 2022 (edited)
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.94 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class GameWorldManager : MonoBehaviour
  6. {
  7.     public static bool seaGateComplete = false;
  8.     public static bool seasideHillComplete = false;
  9.     public static bool oceanPalaceComplete = false;
  10.     public static bool eggHawkBossComplete = false;
  11.     public static bool grandMetropolisComplete = false;
  12.     public static bool powerPlantComplete = false;
  13.     public static bool casinoParkComplete = false;
  14.     public static bool bingoHighwayComplete = false;
  15.     public static bool robotCarnivalBossComplete = false;
  16.     public static bool railCanyonComplete = false;
  17.     public static bool bulletStationComplete = false;
  18.     public static bool eggAlbatrossBossComplete = false;
  19.     public static bool frogForestComplete = false;
  20.     public static bool lostJungleComplete = false;
  21.     public static bool hangCastleComplete = false;
  22.     public static bool mysticMansionComplete = false;
  23.     public static bool robotStormBossComplete = false;
  24.     public static bool eggFleetComplete = false;
  25.     public static bool finalFortressComplete = false;
  26.     public static bool eggEmperorBossComplete = false;
  27.     public static bool metalMadnessBossPartOneBossComplete = false;
  28.     public static bool metalOverlordBossPartTwoBossComplete = false;
  29.     // Start is called before the first frame update
  30.     void Start()
  31.     {
  32.        
  33.     }
  34.  
  35.     // Update is called once per frame
  36.     void Update()
  37.     {
  38.        
  39.     }
  40. }
  41.  
  42. //List Of Levels
  43.  
  44. //Sea Gate
  45. //Seaside Hill
  46. //Ocean Palace
  47. //Egg Hawk Boss
  48. //Grand Metropolis
  49. //Power Plant
  50. //Casino Park
  51. //BINGO Highway
  52. //Robot Carnival
  53. //Rail Canyon
  54. //Bullet Station
  55. //Egg Albatross
  56. //Frog Forest
  57. //Lost Jungle
  58. //Hang Castle
  59. //Mystic Mansion
  60. //Egg Fleet
  61. //Final Fortress
  62. //Egg Emperor Boss
  63. //Metal Madness Boss
  64. //Metal Overlord Boss
  65.  
  66.  
  67. //After all levels are complete movies, music, BGM's etc will be unlocked
  68.  
Add Comment
Please, Sign In to add comment