diff --git a/2D sprite.zip b/2D sprite.zip new file mode 100644 index 0000000..259d70d Binary files /dev/null and b/2D sprite.zip differ diff --git a/2D sprite/2D sprite.userprefs b/2D sprite/2D sprite.userprefs index 73803bc..c606580 100644 --- a/2D sprite/2D sprite.userprefs +++ b/2D sprite/2D sprite.userprefs @@ -1,8 +1,8 @@  - + - + diff --git a/2D sprite/menu.txt b/2D sprite/menu.txt new file mode 100644 index 0000000..2c6d7e6 --- /dev/null +++ b/2D sprite/menu.txt @@ -0,0 +1,10 @@ +Press: +A£ºRun +X: OpenChest +W: Jump +S: Attack +D: Happy + +Loose: + +Back to "Run" \ No newline at end of file diff --git a/Spawning/Assets/BLUE.png b/Spawning/Assets/BLUE.png new file mode 100644 index 0000000..913dfae Binary files /dev/null and b/Spawning/Assets/BLUE.png differ diff --git a/Spawning/Assets/BLUE.png.meta b/Spawning/Assets/BLUE.png.meta new file mode 100644 index 0000000..7ae86c8 --- /dev/null +++ b/Spawning/Assets/BLUE.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 5a6b4153a7921dd4d97a0e34bc603ead +timeCreated: 1445819486 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Ball.cs b/Spawning/Assets/Ball.cs new file mode 100644 index 0000000..99a788a --- /dev/null +++ b/Spawning/Assets/Ball.cs @@ -0,0 +1,29 @@ +using UnityEngine; +using System.Collections; + +public class Ball : MonoBehaviour { + + public float ballIntVel = 600f; + + private Rigidbody rb; + private bool ballInPlay; + + + // Use this for initialization + void Awake () { + rb = GetComponent(); + + } + + // Update is called once per frame + void FixedUpdate () { + if (Input.GetButtonDown ("Fire1") && ballInPlay == false) { + transform.parent = null; + ballInPlay = true; + rb.isKinematic = false; + rb.AddForce(new Vector3(ballIntVel, ballIntVel, 0)); + + } + + } +} diff --git a/Spawning/Assets/Ball.cs.meta b/Spawning/Assets/Ball.cs.meta new file mode 100644 index 0000000..2718315 --- /dev/null +++ b/Spawning/Assets/Ball.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: cdb2a4701656a0241a5aefdc0626b225 +timeCreated: 1445360210 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/GREEN.png b/Spawning/Assets/GREEN.png new file mode 100644 index 0000000..5ead182 Binary files /dev/null and b/Spawning/Assets/GREEN.png differ diff --git a/Spawning/Assets/GREEN.png.meta b/Spawning/Assets/GREEN.png.meta new file mode 100644 index 0000000..3814ab6 --- /dev/null +++ b/Spawning/Assets/GREEN.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 0ef93e6a2da7ba74fba81100e4a2efee +timeCreated: 1445819486 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials.meta b/Spawning/Assets/Materials.meta new file mode 100644 index 0000000..4512e3b --- /dev/null +++ b/Spawning/Assets/Materials.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1b89f4ffac27e6a4caf227792947ff23 +folderAsset: yes +timeCreated: 1445819141 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/BLUE.mat b/Spawning/Assets/Materials/BLUE.mat new file mode 100644 index 0000000..c607fed Binary files /dev/null and b/Spawning/Assets/Materials/BLUE.mat differ diff --git a/Spawning/Assets/Materials/BLUE.mat.meta b/Spawning/Assets/Materials/BLUE.mat.meta new file mode 100644 index 0000000..a0d19b3 --- /dev/null +++ b/Spawning/Assets/Materials/BLUE.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e989738d453b66542a6d033924c7cff8 +timeCreated: 1445819496 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/GREEN.mat b/Spawning/Assets/Materials/GREEN.mat new file mode 100644 index 0000000..2fd47c9 Binary files /dev/null and b/Spawning/Assets/Materials/GREEN.mat differ diff --git a/Spawning/Assets/Materials/GREEN.mat.meta b/Spawning/Assets/Materials/GREEN.mat.meta new file mode 100644 index 0000000..c731a14 --- /dev/null +++ b/Spawning/Assets/Materials/GREEN.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e54a4a8491a4a5448515799b8188b6a +timeCreated: 1445819507 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/PINK.mat b/Spawning/Assets/Materials/PINK.mat new file mode 100644 index 0000000..33aea60 Binary files /dev/null and b/Spawning/Assets/Materials/PINK.mat differ diff --git a/Spawning/Assets/Materials/PINK.mat.meta b/Spawning/Assets/Materials/PINK.mat.meta new file mode 100644 index 0000000..bc1e7ef --- /dev/null +++ b/Spawning/Assets/Materials/PINK.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f12bebd2022cb7c41866b30f159a0c96 +timeCreated: 1445820237 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/PURPLE.mat b/Spawning/Assets/Materials/PURPLE.mat new file mode 100644 index 0000000..691f931 Binary files /dev/null and b/Spawning/Assets/Materials/PURPLE.mat differ diff --git a/Spawning/Assets/Materials/PURPLE.mat.meta b/Spawning/Assets/Materials/PURPLE.mat.meta new file mode 100644 index 0000000..4b7e0f4 --- /dev/null +++ b/Spawning/Assets/Materials/PURPLE.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b70aa6198b2ea6d4ab3b3fea9e472ade +timeCreated: 1445820239 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/YELLOW.mat b/Spawning/Assets/Materials/YELLOW.mat new file mode 100644 index 0000000..2401e8b Binary files /dev/null and b/Spawning/Assets/Materials/YELLOW.mat differ diff --git a/Spawning/Assets/Materials/YELLOW.mat.meta b/Spawning/Assets/Materials/YELLOW.mat.meta new file mode 100644 index 0000000..c7f6570 --- /dev/null +++ b/Spawning/Assets/Materials/YELLOW.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c1f639ddf12b30419a98b01b2521fd0 +timeCreated: 1445819509 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/black.mat b/Spawning/Assets/Materials/black.mat new file mode 100644 index 0000000..87d153c Binary files /dev/null and b/Spawning/Assets/Materials/black.mat differ diff --git a/Spawning/Assets/Materials/black.mat.meta b/Spawning/Assets/Materials/black.mat.meta new file mode 100644 index 0000000..a8b641d --- /dev/null +++ b/Spawning/Assets/Materials/black.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 43ba7af5c8fb8f54c828f1e144d61e47 +timeCreated: 1445820899 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Materials/red.mat b/Spawning/Assets/Materials/red.mat new file mode 100644 index 0000000..5044bfa Binary files /dev/null and b/Spawning/Assets/Materials/red.mat differ diff --git a/Spawning/Assets/Materials/red.mat.meta b/Spawning/Assets/Materials/red.mat.meta new file mode 100644 index 0000000..ce4fde7 --- /dev/null +++ b/Spawning/Assets/Materials/red.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6bccb77dfbfa11a4d822a80e34b389dc +timeCreated: 1445819141 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/PINK.png b/Spawning/Assets/PINK.png new file mode 100644 index 0000000..1eace43 Binary files /dev/null and b/Spawning/Assets/PINK.png differ diff --git a/Spawning/Assets/PINK.png.meta b/Spawning/Assets/PINK.png.meta new file mode 100644 index 0000000..9581b95 --- /dev/null +++ b/Spawning/Assets/PINK.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 544441606055457448e683dbf829421e +timeCreated: 1445820226 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/PURPLE.png b/Spawning/Assets/PURPLE.png new file mode 100644 index 0000000..c4c0e58 Binary files /dev/null and b/Spawning/Assets/PURPLE.png differ diff --git a/Spawning/Assets/PURPLE.png.meta b/Spawning/Assets/PURPLE.png.meta new file mode 100644 index 0000000..1d24a96 --- /dev/null +++ b/Spawning/Assets/PURPLE.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 3dc676432d526824683a091a95a22ce4 +timeCreated: 1445820226 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Paddle.cs b/Spawning/Assets/Paddle.cs new file mode 100644 index 0000000..8367da6 --- /dev/null +++ b/Spawning/Assets/Paddle.cs @@ -0,0 +1,23 @@ +using UnityEngine; +using System.Collections; + +public class Paddle : MonoBehaviour { + + + public float paddleSpeed = 1.0f; + public float paddlePosY = -4.0f; + + private Vector3 playerPos = new Vector3 (0, -8.0f, 0 ); + + + // Update is called once per frame + void Update() { + + + float xPos = transform.position.x + (Input.GetAxis("Horizontal") * paddleSpeed); + + playerPos = new Vector3(Mathf.Clamp(xPos, -8.0f, 3.0f),paddlePosY, 0f); + transform.position = playerPos; + + } +} \ No newline at end of file diff --git a/Spawning/Assets/Paddle.cs.meta b/Spawning/Assets/Paddle.cs.meta new file mode 100644 index 0000000..c2e89c6 --- /dev/null +++ b/Spawning/Assets/Paddle.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 63ab4ecba7cc7a547bc539861da0b905 +timeCreated: 1445358988 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/Spawner.cs b/Spawning/Assets/Spawner.cs new file mode 100644 index 0000000..4c80a68 --- /dev/null +++ b/Spawning/Assets/Spawner.cs @@ -0,0 +1,38 @@ +using UnityEngine; +using System.Collections; + +public class Spawner : MonoBehaviour { + + public int ballCount = 0; + public int ballCountMax = 10; + public GameObject paddleBall; + + // Use this for initialization + void Start () { + + } + + // Update is called once per frame + void Update () { + + } + + public void SpawnBall1wrap(){ + StartCoroutine (SpawnBall1 ()); + } + IEnumerator SpawnBall1(){ + + + + Debug.Log ("Spawn Ball"); + + while (ballCount < ballCountMax){ + Instantiate(paddleBall, new Vector3 (transform.position.x, transform.position.y, transform.position.z),Quaternion.identity ); + ballCount ++; + yield return new WaitForSeconds (1f); + + } + + +} + } \ No newline at end of file diff --git a/Spawning/Assets/Spawner.cs.meta b/Spawning/Assets/Spawner.cs.meta new file mode 100644 index 0000000..6369176 --- /dev/null +++ b/Spawning/Assets/Spawner.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: a4dc8f720d377fe4c947a7577639cdb9 +timeCreated: 1445359410 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/WordFly.cs b/Spawning/Assets/WordFly.cs new file mode 100644 index 0000000..0250161 --- /dev/null +++ b/Spawning/Assets/WordFly.cs @@ -0,0 +1,20 @@ +using UnityEngine; +using System.Collections; + +public class WordFly : MonoBehaviour { + + + float speed; + // Use this for initialization + void Start () { + speed = 2f; + } + + // Update is called once per frame + void Update () { + Vector2 position = transform.position; + position = new Vector2 (position.x - speed * Time.deltaTime, position.y); + transform.position = position; + + } +} diff --git a/Spawning/Assets/WordFly.cs.meta b/Spawning/Assets/WordFly.cs.meta new file mode 100644 index 0000000..dfc09ce --- /dev/null +++ b/Spawning/Assets/WordFly.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 4c2509b27b5fc474aadd0ead87ce05f1 +timeCreated: 1445812381 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/YELLOW.png b/Spawning/Assets/YELLOW.png new file mode 100644 index 0000000..36103fb Binary files /dev/null and b/Spawning/Assets/YELLOW.png differ diff --git a/Spawning/Assets/YELLOW.png.meta b/Spawning/Assets/YELLOW.png.meta new file mode 100644 index 0000000..49316fd --- /dev/null +++ b/Spawning/Assets/YELLOW.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 2c8dfd47d3e7c41448473de10182b2f5 +timeCreated: 1445819486 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/back.mp3 b/Spawning/Assets/back.mp3 new file mode 100644 index 0000000..f77828a Binary files /dev/null and b/Spawning/Assets/back.mp3 differ diff --git a/Spawning/Assets/back.mp3.meta b/Spawning/Assets/back.mp3.meta new file mode 100644 index 0000000..919cae0 --- /dev/null +++ b/Spawning/Assets/back.mp3.meta @@ -0,0 +1,22 @@ +fileFormatVersion: 2 +guid: c0ebddea2723faa41a17bb75119af352 +timeCreated: 1445821323 +licenseType: Free +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball 1.prefab b/Spawning/Assets/ball 1.prefab new file mode 100644 index 0000000..10e8e1a Binary files /dev/null and b/Spawning/Assets/ball 1.prefab differ diff --git a/Spawning/Assets/ball 1.prefab.meta b/Spawning/Assets/ball 1.prefab.meta new file mode 100644 index 0000000..6178847 --- /dev/null +++ b/Spawning/Assets/ball 1.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ed520fbb3b64f54abf924e74a41be30 +timeCreated: 1445818983 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball 2.prefab b/Spawning/Assets/ball 2.prefab new file mode 100644 index 0000000..b216e35 Binary files /dev/null and b/Spawning/Assets/ball 2.prefab differ diff --git a/Spawning/Assets/ball 2.prefab.meta b/Spawning/Assets/ball 2.prefab.meta new file mode 100644 index 0000000..12bf637 --- /dev/null +++ b/Spawning/Assets/ball 2.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a7b0518e0229d74da82a010512191ab +timeCreated: 1445819492 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball 3.prefab b/Spawning/Assets/ball 3.prefab new file mode 100644 index 0000000..4c902ff Binary files /dev/null and b/Spawning/Assets/ball 3.prefab differ diff --git a/Spawning/Assets/ball 3.prefab.meta b/Spawning/Assets/ball 3.prefab.meta new file mode 100644 index 0000000..e03f636 --- /dev/null +++ b/Spawning/Assets/ball 3.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f284e73c9d1bebf458cc4cb4e63d7e20 +timeCreated: 1445819493 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball 4.prefab b/Spawning/Assets/ball 4.prefab new file mode 100644 index 0000000..793ef34 Binary files /dev/null and b/Spawning/Assets/ball 4.prefab differ diff --git a/Spawning/Assets/ball 4.prefab.meta b/Spawning/Assets/ball 4.prefab.meta new file mode 100644 index 0000000..1a14ed4 --- /dev/null +++ b/Spawning/Assets/ball 4.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 698a01166f808304c90b178ce200cd5f +timeCreated: 1445819494 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball 5.prefab b/Spawning/Assets/ball 5.prefab new file mode 100644 index 0000000..7074cae Binary files /dev/null and b/Spawning/Assets/ball 5.prefab differ diff --git a/Spawning/Assets/ball 5.prefab.meta b/Spawning/Assets/ball 5.prefab.meta new file mode 100644 index 0000000..f8a1922 --- /dev/null +++ b/Spawning/Assets/ball 5.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a4453583650a5cd468e36e11ae2b6563 +timeCreated: 1445820231 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball 6.prefab b/Spawning/Assets/ball 6.prefab new file mode 100644 index 0000000..4a6c6dc Binary files /dev/null and b/Spawning/Assets/ball 6.prefab differ diff --git a/Spawning/Assets/ball 6.prefab.meta b/Spawning/Assets/ball 6.prefab.meta new file mode 100644 index 0000000..1cccce9 --- /dev/null +++ b/Spawning/Assets/ball 6.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f6f3f64f80315f4eb59588947266f99 +timeCreated: 1445820232 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/ball.prefab b/Spawning/Assets/ball.prefab new file mode 100644 index 0000000..43b11ec Binary files /dev/null and b/Spawning/Assets/ball.prefab differ diff --git a/Spawning/Assets/ball.prefab.meta b/Spawning/Assets/ball.prefab.meta new file mode 100644 index 0000000..dbcee44 --- /dev/null +++ b/Spawning/Assets/ball.prefab.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 503aa8efe74425e49b657c66b4eaac2f +timeCreated: 1445361122 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/black.png b/Spawning/Assets/black.png new file mode 100644 index 0000000..33d4b2a Binary files /dev/null and b/Spawning/Assets/black.png differ diff --git a/Spawning/Assets/black.png.meta b/Spawning/Assets/black.png.meta new file mode 100644 index 0000000..1b9bce3 --- /dev/null +++ b/Spawning/Assets/black.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 75fcfed1260b91941b9bbbd03d68ac79 +timeCreated: 1445820864 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/red.png b/Spawning/Assets/red.png new file mode 100644 index 0000000..09dd5b7 Binary files /dev/null and b/Spawning/Assets/red.png differ diff --git a/Spawning/Assets/red.png.meta b/Spawning/Assets/red.png.meta new file mode 100644 index 0000000..f26747d --- /dev/null +++ b/Spawning/Assets/red.png.meta @@ -0,0 +1,55 @@ +fileFormatVersion: 2 +guid: 4c843202aa69b674cab3343e9d30c400 +timeCreated: 1445819139 +licenseType: Free +TextureImporter: + fileIDToRecycleName: {} + 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: -1 + mipBias: -1 + wrapMode: -1 + nPOTScale: 1 + lightmap: 0 + rGBM: 0 + compressionQuality: 50 + spriteMode: 0 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: .5, y: .5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaIsTransparency: 0 + textureType: -1 + buildTargetSettings: [] + spriteSheet: + sprites: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/shootwords.unity b/Spawning/Assets/shootwords.unity new file mode 100644 index 0000000..57d32b8 Binary files /dev/null and b/Spawning/Assets/shootwords.unity differ diff --git a/Spawning/Assets/shootwords.unity.meta b/Spawning/Assets/shootwords.unity.meta new file mode 100644 index 0000000..d748976 --- /dev/null +++ b/Spawning/Assets/shootwords.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0773e2b9b15ba944b9e3696360c07a6e +timeCreated: 1445810957 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/Assets/spawn.unity b/Spawning/Assets/spawn.unity new file mode 100644 index 0000000..b8e8e83 Binary files /dev/null and b/Spawning/Assets/spawn.unity differ diff --git a/Spawning/Assets/spawn.unity.meta b/Spawning/Assets/spawn.unity.meta new file mode 100644 index 0000000..edbcc53 --- /dev/null +++ b/Spawning/Assets/spawn.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f35595ab299929240855f1d849d19e91 +timeCreated: 1445360248 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Spawning/GO DMD/GO DMD.html b/Spawning/GO DMD/GO DMD.html new file mode 100644 index 0000000..ef01772 --- /dev/null +++ b/Spawning/GO DMD/GO DMD.html @@ -0,0 +1,136 @@ + + + + + Unity Web Player | Spawning + + + + + + +

Unity Web Player | Spawning

+
+
+
+ + Unity Web Player. Install now! + +
+
+ + Unity Web Player. Install now! Restart your browser after install. + +
+
+
+ + + diff --git a/Spawning/GO DMD/GO DMD.unity3d b/Spawning/GO DMD/GO DMD.unity3d new file mode 100644 index 0000000..df4fa9a Binary files /dev/null and b/Spawning/GO DMD/GO DMD.unity3d differ diff --git a/Spawning/ProjectSettings/AudioManager.asset b/Spawning/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..850a4f9 Binary files /dev/null and b/Spawning/ProjectSettings/AudioManager.asset differ diff --git a/Spawning/ProjectSettings/DynamicsManager.asset b/Spawning/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..563a3a0 Binary files /dev/null and b/Spawning/ProjectSettings/DynamicsManager.asset differ diff --git a/Spawning/ProjectSettings/EditorBuildSettings.asset b/Spawning/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..516409d Binary files /dev/null and b/Spawning/ProjectSettings/EditorBuildSettings.asset differ diff --git a/Spawning/ProjectSettings/EditorSettings.asset b/Spawning/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..539bf93 Binary files /dev/null and b/Spawning/ProjectSettings/EditorSettings.asset differ diff --git a/Spawning/ProjectSettings/GraphicsSettings.asset b/Spawning/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..20f231a Binary files /dev/null and b/Spawning/ProjectSettings/GraphicsSettings.asset differ diff --git a/Spawning/ProjectSettings/InputManager.asset b/Spawning/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..f88841d Binary files /dev/null and b/Spawning/ProjectSettings/InputManager.asset differ diff --git a/Spawning/ProjectSettings/NavMeshAreas.asset b/Spawning/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..72481a5 Binary files /dev/null and b/Spawning/ProjectSettings/NavMeshAreas.asset differ diff --git a/Spawning/ProjectSettings/NetworkManager.asset b/Spawning/ProjectSettings/NetworkManager.asset new file mode 100644 index 0000000..eb205e0 Binary files /dev/null and b/Spawning/ProjectSettings/NetworkManager.asset differ diff --git a/Spawning/ProjectSettings/Physics2DSettings.asset b/Spawning/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..cf3a1bf Binary files /dev/null and b/Spawning/ProjectSettings/Physics2DSettings.asset differ diff --git a/Spawning/ProjectSettings/ProjectSettings.asset b/Spawning/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..61e5fcc Binary files /dev/null and b/Spawning/ProjectSettings/ProjectSettings.asset differ diff --git a/Spawning/ProjectSettings/ProjectVersion.txt b/Spawning/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..c609863 --- /dev/null +++ b/Spawning/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 5.1.3f1 +m_StandardAssetsVersion: 0 diff --git a/Spawning/ProjectSettings/QualitySettings.asset b/Spawning/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..b7b6c19 Binary files /dev/null and b/Spawning/ProjectSettings/QualitySettings.asset differ diff --git a/Spawning/ProjectSettings/TagManager.asset b/Spawning/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..761f435 Binary files /dev/null and b/Spawning/ProjectSettings/TagManager.asset differ diff --git a/Spawning/ProjectSettings/TimeManager.asset b/Spawning/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..decdb13 Binary files /dev/null and b/Spawning/ProjectSettings/TimeManager.asset differ diff --git a/Spawning/ProjectSettings/UnityAdsSettings.asset b/Spawning/ProjectSettings/UnityAdsSettings.asset new file mode 100644 index 0000000..2d1d81b Binary files /dev/null and b/Spawning/ProjectSettings/UnityAdsSettings.asset differ diff --git a/Spawning/ProjectSettings/UnityAnalyticsManager.asset b/Spawning/ProjectSettings/UnityAnalyticsManager.asset new file mode 100644 index 0000000..e52c94d Binary files /dev/null and b/Spawning/ProjectSettings/UnityAnalyticsManager.asset differ diff --git a/Spawning/Spawning.userprefs b/Spawning/Spawning.userprefs new file mode 100644 index 0000000..6946501 --- /dev/null +++ b/Spawning/Spawning.userprefs @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file