Départ Mega Man

This commit is contained in:
wmarc04 2015-11-24 21:55:23 -05:00
parent 5af158a1bb
commit 970920266d
42 changed files with 3424 additions and 0 deletions

9
Assets/Animation.meta Normal file
View File

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 10ada8e90adea4fcd9bb0f5ab48c2822
folderAsset: yes
timeCreated: 1447973890
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Animation/Idle.anim Normal file

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a6193e58e8149477696efad34e565e08
timeCreated: 1447985192
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Animation/Jump.anim Normal file

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1e9f6beb9f97040cab46a585904ac8a9
timeCreated: 1447986322
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 54b34193606a942f0812a58798756546
timeCreated: 1447984886
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Animation/Walk.anim Normal file

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1f49af3bbb8c741ddafc837ea1bca325
timeCreated: 1447985222
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

9
Assets/Material.meta Normal file
View File

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 46190d69db01d43c6b8167b077cf3c86
folderAsset: yes
timeCreated: 1447973336
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

9
Assets/Prefabs.meta Normal file
View File

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 10ae0163b317a484eacf465b17c0b647
folderAsset: yes
timeCreated: 1447973356
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9f9446f3e2ba544449811c30f6575a4f
timeCreated: 1448418940
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

9
Assets/Script.meta Normal file
View File

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 6726e2c81de6d400eb738c74745876db
folderAsset: yes
timeCreated: 1447973374
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,18 @@
using UnityEngine;
using System.Collections;
public class CameraController : MonoBehaviour {
public GameObject player;
private Vector3 offset;
// Use this for initialization
void Start () {
offset = transform.position - player.transform.position;
}
// Update is called once per frame
void LateUpdate () {
transform.position = player.transform.position + offset;
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: e033586bdb6204f8688df8db0a4afabf
timeCreated: 1447988584
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,44 @@
using UnityEngine;
using System.Collections;
public class PlayerController : MonoBehaviour {
public float speed;
public bool touchGround = false;
private Rigidbody2D rb;
private Animator anim;
// Use this for initialization
void Start () {
rb = GetComponent<Rigidbody2D> ();
anim = GetComponent<Animator> ();
}
// Update is called once per frame
void Update () {
Mouvement ();
anim.SetFloat ("speed", Mathf.Abs (Input.GetAxis ("Horizontal")));
}
void Mouvement(){
Vector2 g = new Vector2 (transform.position.x, transform.position.y - 0.75f);
Debug.DrawLine (transform.position, g, Color.red);
touchGround = Physics2D.Linecast(transform.position, g, 1<< LayerMask.NameToLayer("Floor"));
anim.SetBool ("touchFloor", touchGround);
if (Input.GetAxisRaw("Horizontal") > 0) {
transform.Translate(Vector2.right * speed * Time.deltaTime);
transform.eulerAngles = new Vector2(0,0);
}
if (Input.GetAxisRaw("Horizontal") < 0) {
transform.Translate(Vector2.right * speed * Time.deltaTime);
transform.eulerAngles = new Vector2(0,180);
}
if (Input.GetKey (KeyCode.Space) && touchGround) {
rb.AddForce(Vector2.up * 100f);
}
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: ca47652c158e24b3fbb6e05f4c5ee726
timeCreated: 1447977362
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

9
Assets/Sprites.meta Normal file
View File

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 6336de77a7c9a403f849b92fe773e3ca
folderAsset: yes
timeCreated: 1447973384
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Sprites/mm-character.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,825 @@
fileFormatVersion: 2
guid: 13f6b9851de454e5582c97f5cf54d721
timeCreated: 1447973745
licenseType: Free
TextureImporter:
fileIDToRecycleName:
21300000: mm-character_0
21300002: mm-character_1
21300004: mm-character_2
21300006: mm-character_3
21300008: mm-character_4
21300010: mm-character_5
21300012: mm-character_6
21300014: mm-character_7
21300016: mm-character_8
21300018: mm-character_9
21300020: mm-character_10
21300022: mm-character_11
21300024: mm-character_12
21300026: mm-character_13
21300028: mm-character_14
21300030: mm-character_15
21300032: mm-character_16
21300034: mm-character_17
21300036: mm-character_18
21300038: mm-character_19
21300040: mm-character_20
21300042: mm-character_21
21300044: mm-character_22
21300046: mm-character_23
21300048: mm-character_24
21300050: mm-character_25
21300052: mm-character_26
21300054: mm-character_27
21300056: mm-character_28
21300058: mm-character_29
21300060: mm-character_30
21300062: mm-character_31
21300064: mm-character_32
21300066: mm-character_33
21300068: mm-character_34
21300070: mm-character_35
21300072: mm-character_36
21300074: mm-character_37
21300076: mm-character_38
21300078: mm-character_39
21300080: mm-character_40
21300082: mm-character_41
21300084: mm-character_42
21300086: mm-character_43
21300088: mm-character_44
21300090: mm-character_45
21300092: mm-character_46
21300094: mm-character_47
21300096: mm-character_48
21300098: mm-character_49
21300100: mm-character_50
21300102: mm-character_51
21300104: mm-character_52
21300106: mm-character_53
21300108: mm-character_54
21300110: mm-character_55
21300112: mm-character_56
21300114: mm-character_57
21300116: mm-character_58
21300118: mm-character_59
21300120: mm-character_60
21300122: mm-character_61
21300124: mm-character_62
21300126: mm-character_63
21300128: mm-character_64
21300130: mm-character_65
21300132: mm-character_66
21300134: mm-character_67
21300136: mm-character_68
21300138: mm-character_69
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 1
linearTexture: 0
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
cubemapConvolution: 0
cubemapConvolutionSteps: 8
cubemapConvolutionExponent: 1.5
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
filterMode: -1
aniso: 16
mipBias: -1
wrapMode: 1
nPOTScale: 0
lightmap: 0
rGBM: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 1
textureType: 8
buildTargetSettings: []
spriteSheet:
sprites:
- name: mm-character_0
rect:
serializedVersion: 2
x: 8
y: 313
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_1
rect:
serializedVersion: 2
x: 58
y: 313
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_2
rect:
serializedVersion: 2
x: 109
y: 313
width: 20
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_3
rect:
serializedVersion: 2
x: 156
y: 313
width: 24
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_4
rect:
serializedVersion: 2
x: 209
y: 313
width: 16
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_5
rect:
serializedVersion: 2
x: 255
y: 313
width: 21
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_6
rect:
serializedVersion: 2
x: 306
y: 307
width: 26
height: 30
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_7
rect:
serializedVersion: 2
x: 351
y: 313
width: 24
height: 21
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_8
rect:
serializedVersion: 2
x: 408
y: 315
width: 20
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_9
rect:
serializedVersion: 2
x: 463
y: 309
width: 16
height: 29
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_10
rect:
serializedVersion: 2
x: 6
y: 259
width: 26
height: 28
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_11
rect:
serializedVersion: 2
x: 56
y: 263
width: 28
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_12
rect:
serializedVersion: 2
x: 108
y: 263
width: 31
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_13
rect:
serializedVersion: 2
x: 156
y: 263
width: 29
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_14
rect:
serializedVersion: 2
x: 209
y: 263
width: 26
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_15
rect:
serializedVersion: 2
x: 255
y: 263
width: 30
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_16
rect:
serializedVersion: 2
x: 306
y: 257
width: 29
height: 30
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_17
rect:
serializedVersion: 2
x: 351
y: 263
width: 32
height: 21
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_18
rect:
serializedVersion: 2
x: 408
y: 265
width: 27
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_19
rect:
serializedVersion: 2
x: 461
y: 258
width: 24
height: 29
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_20
rect:
serializedVersion: 2
x: 8
y: 213
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_21
rect:
serializedVersion: 2
x: 58
y: 213
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_22
rect:
serializedVersion: 2
x: 109
y: 213
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_23
rect:
serializedVersion: 2
x: 156
y: 213
width: 21
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_24
rect:
serializedVersion: 2
x: 209
y: 213
width: 18
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_25
rect:
serializedVersion: 2
x: 255
y: 213
width: 22
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_26
rect:
serializedVersion: 2
x: 306
y: 207
width: 24
height: 30
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_27
rect:
serializedVersion: 2
x: 351
y: 213
width: 26
height: 21
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_28
rect:
serializedVersion: 2
x: 408
y: 215
width: 26
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_29
rect:
serializedVersion: 2
x: 8
y: 163
width: 22
height: 23
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_30
rect:
serializedVersion: 2
x: 57
y: 163
width: 21
height: 23
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_31
rect:
serializedVersion: 2
x: 108
y: 163
width: 27
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_32
rect:
serializedVersion: 2
x: 155
y: 164
width: 29
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_33
rect:
serializedVersion: 2
x: 209
y: 163
width: 25
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_34
rect:
serializedVersion: 2
x: 256
y: 163
width: 28
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_35
rect:
serializedVersion: 2
x: 306
y: 157
width: 28
height: 30
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_36
rect:
serializedVersion: 2
x: 351
y: 163
width: 31
height: 21
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_37
rect:
serializedVersion: 2
x: 408
y: 165
width: 23
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_38
rect:
serializedVersion: 2
x: 461
y: 158
width: 24
height: 29
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_39
rect:
serializedVersion: 2
x: 8
y: 113
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_40
rect:
serializedVersion: 2
x: 56
y: 113
width: 25
height: 26
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_41
rect:
serializedVersion: 2
x: 109
y: 113
width: 27
height: 21
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_42
rect:
serializedVersion: 2
x: 158
y: 110
width: 31
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_43
rect:
serializedVersion: 2
x: 208
y: 110
width: 31
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_44
rect:
serializedVersion: 2
x: 258
y: 113
width: 31
height: 21
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_45
rect:
serializedVersion: 2
x: 309
y: 107
width: 19
height: 30
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_46
rect:
serializedVersion: 2
x: 324
y: 121
width: 6
height: 6
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_47
rect:
serializedVersion: 2
x: 357
y: 107
width: 25
height: 30
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_48
rect:
serializedVersion: 2
x: 412
y: 123
width: 16
height: 17
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_49
rect:
serializedVersion: 2
x: 461
y: 112
width: 16
height: 22
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_50
rect:
serializedVersion: 2
x: 7
y: 63
width: 22
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_51
rect:
serializedVersion: 2
x: 58
y: 63
width: 22
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_52
rect:
serializedVersion: 2
x: 108
y: 63
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_53
rect:
serializedVersion: 2
x: 163
y: 63
width: 27
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_54
rect:
serializedVersion: 2
x: 213
y: 63
width: 29
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_55
rect:
serializedVersion: 2
x: 263
y: 63
width: 29
height: 17
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_56
rect:
serializedVersion: 2
x: 313
y: 63
width: 29
height: 12
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_57
rect:
serializedVersion: 2
x: 360
y: 63
width: 23
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_58
rect:
serializedVersion: 2
x: 407
y: 63
width: 27
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_59
rect:
serializedVersion: 2
x: 453
y: 63
width: 32
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_60
rect:
serializedVersion: 2
x: 8
y: 13
width: 21
height: 25
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_61
rect:
serializedVersion: 2
x: 58
y: 13
width: 21
height: 25
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_62
rect:
serializedVersion: 2
x: 108
y: 13
width: 21
height: 26
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_63
rect:
serializedVersion: 2
x: 157
y: 13
width: 26
height: 23
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_64
rect:
serializedVersion: 2
x: 207
y: 13
width: 23
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_65
rect:
serializedVersion: 2
x: 261
y: 13
width: 16
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_66
rect:
serializedVersion: 2
x: 313
y: 13
width: 12
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_67
rect:
serializedVersion: 2
x: 361
y: 13
width: 17
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_68
rect:
serializedVersion: 2
x: 408
y: 13
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-character_69
rect:
serializedVersion: 2
x: 458
y: 13
width: 21
height: 24
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/Sprites/mm-enemies.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,429 @@
fileFormatVersion: 2
guid: dbba9cf8bfdd5491d89cc0be1062cd8f
timeCreated: 1447971657
licenseType: Free
TextureImporter:
fileIDToRecycleName:
21300000: mm-stage1-tileset_0
21300002: mm-stage1-tileset_1
21300004: mm-stage1-tileset_2
21300006: mm-stage1-tileset_3
21300008: mm-stage1-tileset_4
21300010: mm-stage1-tileset_5
21300012: mm-stage1-tileset_6
21300014: mm-stage1-tileset_7
21300016: mm-stage1-tileset_8
21300018: mm-stage1-tileset_9
21300020: mm-stage1-tileset_10
21300022: mm-stage1-tileset_11
21300024: mm-stage1-tileset_12
21300026: mm-stage1-tileset_13
21300028: mm-stage1-tileset_14
21300030: mm-stage1-tileset_15
21300032: mm-stage1-tileset_16
21300034: mm-stage1-tileset_17
21300036: mm-stage1-tileset_18
21300038: mm-stage1-tileset_19
21300040: mm-stage1-tileset_20
21300042: mm-stage1-tileset_21
21300044: mm-stage1-tileset_22
21300046: mm-stage1-tileset_23
21300048: mm-stage1-tileset_24
21300050: mm-stage1-tileset_25
21300052: mm-stage1-tileset_26
21300054: mm-stage1-tileset_27
21300056: mm-stage1-tileset_28
21300058: mm-stage1-tileset_29
21300060: mm-stage1-tileset_30
21300062: mm-stage1-tileset_31
21300064: mm-stage1-tileset_32
21300066: mm-stage1-tileset_33
serializedVersion: 2
mipmaps:
mipMapMode: 0
enableMipMap: 1
linearTexture: 0
correctGamma: 0
fadeOut: 0
borderMipMap: 0
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: .25
normalMapFilter: 0
isReadable: 0
grayScaleToAlpha: 0
generateCubemap: 0
cubemapConvolution: 0
cubemapConvolutionSteps: 8
cubemapConvolutionExponent: 1.5
seamlessCubemap: 0
textureFormat: -1
maxTextureSize: 2048
textureSettings:
filterMode: -1
aniso: 16
mipBias: -1
wrapMode: 1
nPOTScale: 0
lightmap: 0
rGBM: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: .5, y: .5}
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spritePixelsToUnits: 100
alphaIsTransparency: 1
textureType: 8
buildTargetSettings: []
spriteSheet:
sprites:
- name: mm-stage1-tileset_0
rect:
serializedVersion: 2
x: 1
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: .5, y: .5}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_1
rect:
serializedVersion: 2
x: 18
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: .5, y: .5}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_2
rect:
serializedVersion: 2
x: 35
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: .5, y: .5}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_3
rect:
serializedVersion: 2
x: 52
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_4
rect:
serializedVersion: 2
x: 69
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_5
rect:
serializedVersion: 2
x: 86
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_6
rect:
serializedVersion: 2
x: 103
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_7
rect:
serializedVersion: 2
x: 120
y: 52
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_8
rect:
serializedVersion: 2
x: 1
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_9
rect:
serializedVersion: 2
x: 18
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_10
rect:
serializedVersion: 2
x: 35
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_11
rect:
serializedVersion: 2
x: 52
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_12
rect:
serializedVersion: 2
x: 69
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_13
rect:
serializedVersion: 2
x: 86
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_14
rect:
serializedVersion: 2
x: 103
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_15
rect:
serializedVersion: 2
x: 120
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_16
rect:
serializedVersion: 2
x: 137
y: 35
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_17
rect:
serializedVersion: 2
x: 1
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_18
rect:
serializedVersion: 2
x: 18
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_19
rect:
serializedVersion: 2
x: 35
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_20
rect:
serializedVersion: 2
x: 52
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_21
rect:
serializedVersion: 2
x: 69
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_22
rect:
serializedVersion: 2
x: 86
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_23
rect:
serializedVersion: 2
x: 103
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_24
rect:
serializedVersion: 2
x: 120
y: 18
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_25
rect:
serializedVersion: 2
x: 137
y: 1
width: 16
height: 33
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_26
rect:
serializedVersion: 2
x: 1
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_27
rect:
serializedVersion: 2
x: 18
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_28
rect:
serializedVersion: 2
x: 35
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_29
rect:
serializedVersion: 2
x: 52
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_30
rect:
serializedVersion: 2
x: 69
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_31
rect:
serializedVersion: 2
x: 86
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_32
rect:
serializedVersion: 2
x: 103
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
- name: mm-stage1-tileset_33
rect:
serializedVersion: 2
x: 120
y: 1
width: 16
height: 16
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
spritePackingTag:
userData:
assetBundleName:
assetBundleVariant:

9
Assets/_Scene.meta Normal file
View File

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: b65477410114d4607919c4fcdee6b768
folderAsset: yes
timeCreated: 1447973275
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

BIN
Assets/_Scene/TheGame.unity Normal file

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 971ad2e88009948cb8f97ae4004be372
timeCreated: 1447973443
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,2 @@
m_EditorVersion: 5.1.3f1
m_StandardAssetsVersion: 0

Binary file not shown.

Binary file not shown.

Binary file not shown.