Filled out rest of main menu pages
This commit is contained in:
+2668
-66
File diff suppressed because it is too large
Load Diff
@@ -56,48 +56,136 @@ public class MainMenu : MonoBehaviour
|
|||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(skinsFirstButton);
|
EventSystem.current.SetSelectedGameObject(skinsFirstButton);
|
||||||
|
BeanTalk.text = "WHAT DO I DO AGAIN?";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void BackSkins()
|
public void BackSkins()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(skinsBackButton);
|
EventSystem.current.SetSelectedGameObject(skinsBackButton);
|
||||||
|
switch (Random.Range(0,5))
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
BeanTalk.text = "THAT'S MY GAME!";
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
BeanTalk.text = "GOTTA GO FAST!";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
BeanTalk.text = "IT ME!";
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
BeanTalk.text = "DO YOUR BEST!";
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
BeanTalk.text = "NEVER GIVE UP!";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
BeanTalk.text = "ERROR! SAVE ME!";
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Highscores()
|
public void Highscores()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(highscoreFirstButton);
|
EventSystem.current.SetSelectedGameObject(highscoreFirstButton);
|
||||||
|
BeanTalk.text = "GOOD JOB!";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void BackHighscores()
|
public void BackHighscores()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(highscoreBackButton);
|
EventSystem.current.SetSelectedGameObject(highscoreBackButton);
|
||||||
|
switch (Random.Range(0,5))
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
BeanTalk.text = "THAT'S MY GAME!";
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
BeanTalk.text = "GOTTA GO FAST!";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
BeanTalk.text = "IT ME!";
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
BeanTalk.text = "DO YOUR BEST!";
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
BeanTalk.text = "NEVER GIVE UP!";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
BeanTalk.text = "ERROR! SAVE ME!";
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void GameInfo()
|
public void GameInfo()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(gameinfoFirstButton);
|
EventSystem.current.SetSelectedGameObject(gameinfoFirstButton);
|
||||||
|
BeanTalk.text = "SO MANY BUTTONS!";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void BackGameInfo()
|
public void BackGameInfo()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(gameinfoBackButton);
|
EventSystem.current.SetSelectedGameObject(gameinfoBackButton);
|
||||||
|
switch (Random.Range(0,5))
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
BeanTalk.text = "THAT'S MY GAME!";
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
BeanTalk.text = "GOTTA GO FAST!";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
BeanTalk.text = "IT ME!";
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
BeanTalk.text = "DO YOUR BEST!";
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
BeanTalk.text = "NEVER GIVE UP!";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
BeanTalk.text = "ERROR! SAVE ME!";
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Options()
|
public void Options()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(optionsFirstButton);
|
EventSystem.current.SetSelectedGameObject(optionsFirstButton);
|
||||||
|
BeanTalk.text = "LOOK AT THOSE GRAPHIX!";
|
||||||
}
|
}
|
||||||
|
|
||||||
public void BackOptions()
|
public void BackOptions()
|
||||||
{
|
{
|
||||||
EventSystem.current.SetSelectedGameObject(null);
|
EventSystem.current.SetSelectedGameObject(null);
|
||||||
EventSystem.current.SetSelectedGameObject(optionsBackButton);
|
EventSystem.current.SetSelectedGameObject(optionsBackButton);
|
||||||
|
switch (Random.Range(0,5))
|
||||||
|
{
|
||||||
|
case 0:
|
||||||
|
BeanTalk.text = "THAT'S MY GAME!";
|
||||||
|
break;
|
||||||
|
case 1:
|
||||||
|
BeanTalk.text = "GOTTA GO FAST!";
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
BeanTalk.text = "IT ME!";
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
BeanTalk.text = "DO YOUR BEST!";
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
BeanTalk.text = "NEVER GIVE UP!";
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
BeanTalk.text = "ERROR! SAVE ME!";
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void QuitGame()
|
public void QuitGame()
|
||||||
|
|||||||
+131
-53
File diff suppressed because one or more lines are too long
Binary file not shown.
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 86 KiB |
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 27 KiB |
@@ -0,0 +1,139 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 14d3233f99d67b043bcf0def31f8dc3d
|
||||||
|
TextureImporter:
|
||||||
|
internalIDToNameTable: []
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 10
|
||||||
|
mipmaps:
|
||||||
|
mipMapMode: 0
|
||||||
|
enableMipMap: 0
|
||||||
|
sRGBTexture: 1
|
||||||
|
linearTexture: 0
|
||||||
|
fadeOut: 0
|
||||||
|
borderMipMap: 0
|
||||||
|
mipMapsPreserveCoverage: 0
|
||||||
|
alphaTestReferenceValue: 0.5
|
||||||
|
mipMapFadeDistanceStart: 1
|
||||||
|
mipMapFadeDistanceEnd: 3
|
||||||
|
bumpmap:
|
||||||
|
convertToNormalMap: 0
|
||||||
|
externalNormalMap: 0
|
||||||
|
heightScale: 0.25
|
||||||
|
normalMapFilter: 0
|
||||||
|
isReadable: 0
|
||||||
|
streamingMipmaps: 0
|
||||||
|
streamingMipmapsPriority: 0
|
||||||
|
grayScaleToAlpha: 0
|
||||||
|
generateCubemap: 6
|
||||||
|
cubemapConvolution: 0
|
||||||
|
seamlessCubemap: 0
|
||||||
|
textureFormat: 1
|
||||||
|
maxTextureSize: 2048
|
||||||
|
textureSettings:
|
||||||
|
serializedVersion: 2
|
||||||
|
filterMode: -1
|
||||||
|
aniso: -1
|
||||||
|
mipBias: -100
|
||||||
|
wrapU: 1
|
||||||
|
wrapV: 1
|
||||||
|
wrapW: -1
|
||||||
|
nPOTScale: 0
|
||||||
|
lightmap: 0
|
||||||
|
compressionQuality: 50
|
||||||
|
spriteMode: 1
|
||||||
|
spriteExtrude: 1
|
||||||
|
spriteMeshType: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
platformSettings:
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: DefaultTexturePlatform
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Standalone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: WebGL
|
||||||
|
maxTextureSize: 2048
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 1
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
spriteSheet:
|
||||||
|
serializedVersion: 2
|
||||||
|
sprites: []
|
||||||
|
outline: []
|
||||||
|
physicsShape: []
|
||||||
|
bones: []
|
||||||
|
spriteID: 5e97eb03825dee720800000000000000
|
||||||
|
internalID: 0
|
||||||
|
vertices: []
|
||||||
|
indices:
|
||||||
|
edges: []
|
||||||
|
weights: []
|
||||||
|
secondaryTextures: []
|
||||||
|
spritePackingTag:
|
||||||
|
pSDRemoveMatte: 0
|
||||||
|
pSDShowRemoveMatteOption: 0
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: fa72127381b13d143abf18540ff43f6b
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Reference in New Issue
Block a user