top of page

27th NOvember

startGameSelection.png
levelSelectionScreen.png
optionScreen.png

This is the prototype title screen for 'Dupliscape'. It contains a main menu, an options menu and a level selection screen. When the player clicks on each of the buttons the current screen is turned off and the relevant screen is turned on. This means that the entire menu screen can be kept within one scene. 

menuManagerScript.png

The menu functionality was created using the "MainMenuManager". This a script that is attached to an empty object within the scene, then the relevant buttons call the relevant functions when they are pressed. This script will be build on as the project develops and more UI features are required. 

The level selection screen uses the "LevelSelectionManager". This is a script that contains a function that loads whatever scene number that has been referenced. This means that each level selection button can be assigned a scene so they take the player to correct level. 

levelSelectionScript.png
bottom of page