menu de merdre

This commit is contained in:
happy44300
2018-08-12 19:59:03 +02:00
parent c0f285ad6e
commit dab4ce254a
5 changed files with 177 additions and 7 deletions
Binary file not shown.
+120
View File
@@ -0,0 +1,120 @@
fileFormatVersion: 2
guid: f09a356d5b723f6448b24a23c051fa07
TextureImporter:
fileIDToRecycleName:
21300000: ButtonBackground_0
externalObjects: {}
serializedVersion: 7
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: 0
aniso: -1
mipBias: -100
wrapU: 1
wrapV: 1
wrapW: -1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 0
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 8, y: 7, z: 8, w: 9}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
platformSettings:
- serializedVersion: 2
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
- serializedVersion: 2
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: ButtonBackground_0
rect:
serializedVersion: 2
x: 2
y: 0
width: 28
height: 31
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 803f03efb36b2b347b8d7fea333c0903
vertices: []
indices:
edges: []
weights: []
outline: []
physicsShape: []
bones: []
spriteID: dd9b387dabba0e84c9d856656f09126b
vertices: []
indices:
edges: []
weights: []
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:
+7 -7
View File
@@ -6,7 +6,7 @@ TextureImporter:
serializedVersion: 7
mipmaps:
mipMapMode: 0
enableMipMap: 1
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
@@ -34,13 +34,13 @@ TextureImporter:
filterMode: 1
aniso: -1
mipBias: -100
wrapU: 0
wrapV: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
@@ -49,9 +49,9 @@ TextureImporter:
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 0
textureType: 8
textureShape: 1
singleChannelComponent: 0
maxTextureSizeSet: 0
+39
View File
@@ -0,0 +1,39 @@
using UnityEngine;
using System.Collections;
/// Helper script to show what a skin actually looks like
/// To use, throw on a GameObject and edit your skin asset while the game is running.
public class ShowSkin : MonoBehaviour {
public GUISkin skin;
public float elemWidth = 100, elemHeight = 30;
public Texture2D testIcon;
bool testBool;
int selection;
void OnGUI () {
// Assign this skin to the GUI. If it is null, the GUI will use the builtin skin
GUI.skin = skin;
// Read back which skin the GUI is actually using
GUISkin sk = GUI.skin;
// Make a group that contains all the elements.
GUI.BeginGroup (new Rect (30,20, Screen.width - 60, Screen.height - 40), sk.name, "window");
GUIStyle window = GUI.skin.GetStyle ("window");
int x = 0, y = 0;
// Go over all GUIStyles inside the skin.
foreach (GUIStyle s in sk) {
// Display them as a toggle button (toggle buttons use all background images, and you can click to toggle it).
testBool = GUI.Toggle (new Rect (x * (elemWidth + 20) + window.padding.left, y * (elemHeight + 15) + window.padding.top, elemWidth, elemHeight), testBool, new GUIContent (s.name.ToUpper(), testIcon), s);
// Advance & "wordwrap" the elements
x++;
if (x * (elemWidth + 20) > Screen.width - elemWidth - 40 -window.padding.right) {
x = 0;
y++;
}
}
GUI.EndGroup();
}
}
+11
View File
@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 258516bcf44e943898699bad9a6e0855
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: