├── .DS_Store ├── LICENSE ├── MP-Mario ├── .DS_Store ├── Assembly-CSharp-firstpass-vs.csproj ├── Assembly-CSharp-firstpass.csproj ├── Assembly-CSharp-vs.csproj ├── Assembly-CSharp.csproj ├── Assembly-UnityScript-firstpass-vs.unityproj ├── Assembly-UnityScript-firstpass.unityproj ├── Assembly-UnityScript-vs.unityproj ├── Assembly-UnityScript.unityproj ├── Assets │ ├── .DS_Store │ ├── Animators.meta │ ├── Animators │ │ ├── Goomba.controller │ │ ├── Goomba.controller.meta │ │ ├── Mario.controller │ │ └── Mario.controller.meta │ ├── Blends.meta │ ├── Blends │ │ ├── Goomba.blend │ │ ├── Goomba.blend.meta │ │ ├── Goomba.blend1 │ │ ├── Goomba.blend1.meta │ │ ├── Luigi.blend │ │ ├── Luigi.blend.meta │ │ ├── Luigi.blend1 │ │ ├── Luigi.blend1.meta │ │ ├── Mario.blend │ │ ├── Mario.blend.meta │ │ ├── Mario.blend1 │ │ ├── Mario.blend1.meta │ │ ├── Materials.meta │ │ └── Materials │ │ │ ├── Black.mat │ │ │ ├── Black.mat.meta │ │ │ ├── BlackG.mat │ │ │ ├── BlackG.mat.meta │ │ │ ├── Blue.mat │ │ │ ├── Blue.mat.meta │ │ │ ├── Brown.mat │ │ │ ├── Brown.mat.meta │ │ │ ├── BrownG.mat │ │ │ ├── BrownG.mat.meta │ │ │ ├── DarkBG.mat │ │ │ ├── DarkBG.mat.meta │ │ │ ├── Eye.mat │ │ │ ├── Eye.mat.meta │ │ │ ├── EyeBlue.mat │ │ │ ├── EyeBlue.mat.meta │ │ │ ├── Green.mat │ │ │ ├── Green.mat.meta │ │ │ ├── LightBG.mat │ │ │ ├── LightBG.mat.meta │ │ │ ├── Material.mat │ │ │ ├── Material.mat.meta │ │ │ ├── Red.mat │ │ │ ├── Red.mat.meta │ │ │ ├── Skin.mat │ │ │ ├── Skin.mat.meta │ │ │ ├── White.mat │ │ │ ├── White.mat.meta │ │ │ ├── WhiteG.mat │ │ │ └── WhiteG.mat.meta │ ├── FX.meta │ ├── FX │ │ ├── Super_Mario_Bros._theme.ogg │ │ ├── Super_Mario_Bros._theme.ogg.meta │ │ ├── smb_jump-super.wav │ │ ├── smb_jump-super.wav.meta │ │ ├── smb_mariodie-2.wav │ │ ├── smb_mariodie-2.wav.meta │ │ ├── super_mario_bros.mp3 │ │ └── super_mario_bros.mp3.meta │ ├── Materials.meta │ ├── Materials │ │ ├── Black.mat │ │ ├── Black.mat.meta │ │ ├── Fire.mat │ │ ├── Fire.mat.meta │ │ ├── Green.mat │ │ ├── Green.mat.meta │ │ ├── Wall.mat │ │ ├── Wall.mat.meta │ │ ├── brick.mat │ │ ├── brick.mat.meta │ │ ├── grass.mat │ │ ├── grass.mat.meta │ │ ├── yellow.mat │ │ └── yellow.mat.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Goomba.prefab │ │ ├── Goomba.prefab.meta │ │ ├── Luigi.prefab │ │ ├── Luigi.prefab.meta │ │ ├── Mario.prefab │ │ └── Mario.prefab.meta │ ├── Scene.meta │ ├── Scene │ │ ├── .DS_Store │ │ ├── Mario-MP.unity │ │ └── Mario-MP.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── .DS_Store │ │ ├── Animations.cs │ │ ├── Animations.cs.meta │ │ ├── CameraPs.js │ │ ├── CameraPs.js.meta │ │ ├── HealthL.cs │ │ ├── HealthL.cs.meta │ │ ├── Kill.cs │ │ ├── Kill.cs.meta │ │ ├── Moving.cs │ │ ├── Moving.cs.meta │ │ ├── NetworkManager.cs │ │ ├── NetworkManager.cs.meta │ │ ├── RobotUI.js │ │ ├── RobotUI.js.meta │ │ ├── Spawn.cs │ │ └── Spawn.cs.meta │ ├── Standard Assets.meta │ ├── Standard Assets │ │ ├── Character Controllers.meta │ │ └── Character Controllers │ │ │ ├── 3rd Person Controller.prefab │ │ │ ├── 3rd Person Controller.prefab.meta │ │ │ ├── First Person Controller.prefab │ │ │ ├── First Person Controller.prefab.meta │ │ │ ├── Sources.meta │ │ │ └── Sources │ │ │ ├── PrototypeCharacter.meta │ │ │ ├── PrototypeCharacter │ │ │ ├── Constructor.FBX │ │ │ ├── Constructor.FBX.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── constructor_done.mat │ │ │ │ └── constructor_done.mat.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── constructor_diffuse.png │ │ │ │ ├── constructor_diffuse.png.meta │ │ │ │ ├── constructor_normals.png │ │ │ │ └── constructor_normals.png.meta │ │ │ ├── Scripts.meta │ │ │ └── Scripts │ │ │ ├── CharacterMotor.js │ │ │ ├── CharacterMotor.js.meta │ │ │ ├── FPSInputController.js │ │ │ ├── FPSInputController.js.meta │ │ │ ├── MouseLook.cs │ │ │ ├── MouseLook.cs.meta │ │ │ ├── PlatformInputController.js │ │ │ ├── PlatformInputController.js.meta │ │ │ ├── ThirdPersonCamera.js │ │ │ ├── ThirdPersonCamera.js.meta │ │ │ ├── ThirdPersonController.js │ │ │ └── ThirdPersonController.js.meta │ ├── Textures.meta │ └── Textures │ │ ├── brick.png │ │ ├── brick.png.meta │ │ ├── grass.png │ │ └── grass.png.meta ├── Library │ ├── AnnotationManager │ ├── AssetImportState │ ├── AssetServerCacheV3 │ ├── AssetVersioning.db │ ├── BuildPlayer.prefs │ ├── BuildSettings.asset │ ├── CurrentLayout.dwlt │ ├── EditorUserBuildSettings.asset │ ├── EditorUserSettings.asset │ ├── FailedAssetImports.txt │ ├── InspectorExpandedItems.asset │ ├── MonoManager.asset │ ├── ProjectSettings.asset │ ├── ScriptAssemblies │ │ ├── Assembly-CSharp-firstpass.dll │ │ ├── Assembly-CSharp-firstpass.dll.mdb │ │ ├── Assembly-CSharp.dll │ │ ├── Assembly-CSharp.dll.mdb │ │ ├── Assembly-UnityScript-firstpass.dll │ │ ├── Assembly-UnityScript-firstpass.dll.mdb │ │ ├── Assembly-UnityScript.dll │ │ ├── Assembly-UnityScript.dll.mdb │ │ └── CompilationCompleted.txt │ ├── ScriptMapper │ ├── ShaderCache.db │ ├── assetDatabase3 │ ├── expandedItems │ ├── guidmapper │ └── metadata │ │ ├── 10 │ │ └── 10c014346522c4a69a1e1b717d91614d │ │ ├── 14 │ │ └── 14d5640c238ca45d199fdab8d6f55908 │ │ ├── 20 │ │ └── 2014b158d52c14c03af674a0d75b97db │ │ ├── 23 │ │ └── 2314ce3a3eecf4816bad3c9eca4de2e1 │ │ ├── 25 │ │ └── 25a1c94ec223f4c8092b2586989baaff │ │ ├── 31 │ │ └── 31cbb6e6dc45344f4985b6d8f0101a64 │ │ ├── 41 │ │ └── 4173a0c68089c48b99cfc9a0bec0c2bd │ │ ├── 44 │ │ ├── 449b48f7eb5d87a4baaa5fb73f875a59 │ │ └── 44e80a6a81d5a411cba30b15a2fe3633 │ │ ├── 52 │ │ └── 5206ff1ca844d43f88568f5f82afcc53 │ │ ├── 53 │ │ └── 531c14f8d5cdc4e5baa83ee6e16f783a │ │ ├── 54 │ │ └── 54216e9ed42974e30967824b7f0b2806 │ │ ├── 60 │ │ └── 60bca8f58a0b8478e946e6e86658cb29 │ │ ├── 68 │ │ ├── 6894351f6acba44ca8fef36bb2f071d4 │ │ └── 68ec2fe99d1108b9d0006a298d76c639 │ │ ├── 69 │ │ └── 699d1398377044f909a217c8ecca8cc5 │ │ ├── 70 │ │ └── 7069dc382b5c84b949cae2535e46927f │ │ ├── 77 │ │ └── 77f5a497e464e44f89c54c8f706cb6ab │ │ ├── 79 │ │ └── 790fd130edde74eafb60c0522d4a4163 │ │ ├── 80 │ │ └── 80a3616ca19596e4da0f10f14d241e9f │ │ ├── 95 │ │ └── 95287e3de6cb74887a471d5981927ff8 │ │ ├── 97 │ │ └── 97b050d43ac7c4d2b9f6cbb587650761 │ │ ├── 00 │ │ ├── 00000000000000001000000000000000 │ │ ├── 00000000000000002000000000000000 │ │ ├── 00000000000000003000000000000000 │ │ ├── 00000000000000004000000000000000 │ │ ├── 00000000000000004100000000000000 │ │ ├── 00000000000000005000000000000000 │ │ ├── 00000000000000005100000000000000 │ │ ├── 00000000000000006000000000000000 │ │ ├── 00000000000000006100000000000000 │ │ ├── 00000000000000007000000000000000 │ │ ├── 00000000000000008000000000000000 │ │ ├── 00000000000000009000000000000000 │ │ ├── 0000000000000000a000000000000000 │ │ ├── 0000000000000000b000000000000000 │ │ └── 0000000000000000c000000000000000 │ │ ├── 02 │ │ └── 0293388ca612a43ae83a3aab002c6239 │ │ ├── 03 │ │ └── 0302e8c2b5c594d40a7c2cde395d5ca5 │ │ ├── 05 │ │ └── 058d825d18dbd4df0b36ea9bb17b4e1b │ │ ├── 0a │ │ └── 0ab79d7f243824f5d9826bd83522c8df │ │ ├── 0b │ │ ├── 0b167d00b3108411a8a963cba5ddde1b │ │ └── 0b32468c3e779431e9eeba0c5f8281c3 │ │ ├── 0e │ │ └── 0e40ff68b71a54be4a3db3f3e6478f39 │ │ ├── 1d │ │ └── 1d5ac211a643e447ca78c2d794a16381 │ │ ├── 3b │ │ └── 3b74763b0e28e4b7f8fcbaf8e2ba6ad1 │ │ ├── 5c │ │ └── 5c2f35acf466b4bf3aa7f8ec7099dc7f │ │ ├── 6a │ │ └── 6a4dde29dd7794aadb4a98cda3a4921a │ │ ├── 6b │ │ └── 6bda854880d7748d8aa6735995f2efaf │ │ ├── 6d │ │ └── 6d568f0b7300d4a4c8c6071ac26554af │ │ ├── 6e │ │ └── 6e2b65c4dd904472abd682775d7a204b │ │ ├── 7a │ │ └── 7ac1c35a0e01b43a882861911042bb66 │ │ ├── 7c │ │ ├── 7c4f34cc0bdec4882b9dfe203f40dcf0 │ │ └── 7c87a2b176228441cb908f254a79547b │ │ ├── 7e │ │ └── 7e0b0a994d8934541a387e092630b5db │ │ ├── 7f │ │ └── 7f3645a79f35a4190b21dda80e9ff5f5 │ │ ├── 8a │ │ └── 8a41c8b27c6444f8098a0eb31e0dd5d4 │ │ ├── 9b │ │ └── 9b34ab7b7893d41d9b54846c5d3aac4d │ │ ├── 9d │ │ └── 9d4133d5d30b644bd87802a347eaccbe │ │ ├── a2 │ │ ├── a26af6dd17eff4e0ab5b15370d1ff623 │ │ └── a28f7e86a6cbe42729e3272fb80800a6 │ │ ├── a4 │ │ └── a4c9eebf7fdbe49c093d603a75883374 │ │ ├── aa │ │ └── aae51ec76bfc04e14b68794f66b12025 │ │ ├── ab │ │ └── ab71b8d9130fa4ceb816137f90906fc5 │ │ ├── ad │ │ └── ad74d7af2ac6a4f8eaf3960dfc39b416 │ │ ├── b1 │ │ ├── b1419674c848f493094e3ad802bd185c │ │ └── b1805bf63eba5426fb86b933ccc2ab91 │ │ ├── b3 │ │ ├── b365e6042890d4b1987423ed6bb8a08c │ │ └── b3e4f5fee9d1548c88086eb4559da40b │ │ ├── b5 │ │ └── b5093be04157547f5abbcbaeb31ca2ac │ │ ├── b9 │ │ └── b947c3c52a3084f4c92e3836a1c7f7f0 │ │ ├── bd │ │ └── bdf6cfada003d414b9e10f7f1268ae6c │ │ ├── bf │ │ └── bfc2970e21e6b4c18b83c51b30f3d298 │ │ ├── c3 │ │ └── c3f49b4d3269e4cc88b96022f8682a4c │ │ ├── c5 │ │ └── c50c36780577b4f1e865bccca95e6270 │ │ ├── c8 │ │ └── c81df2918c80c054ca3d436e62090893 │ │ ├── ca │ │ └── ca49380a71a2bb64c830d06bd421b9d1 │ │ ├── cc │ │ └── ccf0ba40a6dab4a299d636e49b00b09f │ │ ├── cf │ │ └── cf56ec970eca94ec3b2c4e1d6fa22bbd │ │ ├── da │ │ └── da93ddd6928094e24bb1f3f665f143d3 │ │ ├── db │ │ └── db6d8b874b15a478792aa38da5f9ddd5 │ │ ├── e3 │ │ └── e31eba4fd573e4ed1a18a9f1e7f5b635 │ │ ├── e5 │ │ └── e53c8c3dcc4ff59438bc9e86cb45c3f6 │ │ ├── e7 │ │ └── e737a39d677f941bfab1ab11747df710 │ │ ├── eb │ │ └── ebc4bec37e5814713ae6b28be4620ab9 │ │ ├── ed │ │ └── ed06d8af9d8aa438680b30ca98f69d05 │ │ ├── f2 │ │ └── f25699970f7da45f09f06916047ac8c8 │ │ ├── f4 │ │ └── f426215acd6544c17a155c94e29645ac │ │ ├── f5 │ │ └── f5f67c52d1564df4a8936ccd202a3bd8 │ │ ├── f7 │ │ └── f781c091d1c8647c380d5230adfaee54 │ │ ├── fd │ │ ├── fd0b6e442ea7b40df85c5eda935f0857 │ │ └── fd9dbdd5dea5f44febb544432be51239 │ │ └── ff │ │ └── ff6b9f120c82547e4ad53f01ede709fd ├── MP-Mario-csharp.sln ├── MP-Mario.sln ├── MP-Mario.userprefs ├── ProjectSettings │ ├── AudioManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshLayers.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── QualitySettings.asset │ ├── TagManager.asset │ └── TimeManager.asset └── Temp │ ├── StagingArea │ ├── Mario-MP.exe │ └── Mario-MP_Data │ │ ├── Managed │ │ ├── Assembly-CSharp-firstpass.dll │ │ ├── Assembly-CSharp.dll │ │ ├── Assembly-UnityScript-firstpass.dll │ │ ├── Assembly-UnityScript.dll │ │ ├── Boo.Lang.dll │ │ ├── Mono.Security.dll │ │ ├── System.Core.dll │ │ ├── System.dll │ │ ├── UnityEngine.UI.dll │ │ ├── UnityEngine.dll │ │ └── mscorlib.dll │ │ ├── Mono │ │ ├── etc │ │ │ └── mono │ │ │ │ ├── 1.0 │ │ │ │ ├── DefaultWsdlHelpGenerator.aspx │ │ │ │ └── machine.config │ │ │ │ ├── 2.0 │ │ │ │ ├── Browsers │ │ │ │ │ └── Compat.browser │ │ │ │ ├── DefaultWsdlHelpGenerator.aspx │ │ │ │ ├── machine.config │ │ │ │ ├── settings.map │ │ │ │ └── web.config │ │ │ │ ├── browscap.ini │ │ │ │ ├── config │ │ │ │ └── mconfig │ │ │ │ └── config.xml │ │ └── mono.dll │ │ ├── PlayerConnectionConfigFile │ │ ├── Resources │ │ ├── unity default resources │ │ └── unity_builtin_extra │ │ ├── mainData │ │ ├── resources.assets │ │ └── sharedassets0.assets │ ├── UnityTempFile-0270282fec537461ebcdfb79ecb01b64 │ ├── UnityTempFile-05d35f0dc10fc4466a9ed54ebadd3f91 │ ├── UnityTempFile-05d3fb46a86894b7382dd780469b708a │ ├── UnityTempFile-067c0f2678e47418883b1458b70419f5 │ ├── UnityTempFile-0ac16e1a069a748aabd91ab82de8d9ee │ ├── UnityTempFile-113f3ced6e7b248f987c507bec66b234 │ ├── UnityTempFile-11d44f250c1264bf5b3acac79095d08f │ ├── UnityTempFile-131adbad9d16f43d8bcd9edd6a7e16df │ ├── UnityTempFile-15b509ddb4d65430291f4559a35eeb49 │ ├── UnityTempFile-226ae93600aae433e85ef28eda6de7d9 │ ├── UnityTempFile-239ac9070e26f4be590ec6a69e71cdd4 │ ├── UnityTempFile-2bc8ecd49331b4164a411301013564d1 │ ├── UnityTempFile-2bc92749fd22c44b2bf60feda654d9a6 │ ├── UnityTempFile-3aa1dfd454a224b1b9f6eb651cad970d │ ├── UnityTempFile-3cca5e207bf9342d3af84394debb6fc0 │ ├── UnityTempFile-3f14b7505771a4ad5948745fbf6ae6e9 │ ├── UnityTempFile-5aa261277df6149b4964f014e935a88b │ ├── UnityTempFile-5ee2a95131be841ab8e164732a0338f5 │ ├── UnityTempFile-62143a68557ec4b5bb06338b47f4ce46 │ ├── UnityTempFile-6429feb58aaba45c79ab5bdbcc19bee0 │ ├── UnityTempFile-70b4924c8e6f9439b936435cf66c3ef3 │ ├── UnityTempFile-76deca70f3391404ab2d5bbc9a8bccf3 │ ├── UnityTempFile-790a07fa333124cc196f873e9950a069 │ ├── UnityTempFile-7b0b41d582c504fa6a90151ec8534bc9 │ ├── UnityTempFile-7cb240b517f694155a0e9cdc830e2266 │ ├── UnityTempFile-7cdddf9e67e7b48ccae1fae7b8529c12 │ ├── UnityTempFile-8035d2c6a981143fcb746b18278e5bee │ ├── UnityTempFile-841d361e46b5348a2ab0b43cd229cf15 │ ├── UnityTempFile-88b3a9537499042bebd78a58b5fde33a │ ├── UnityTempFile-91540d09a548542dcb5fcd6a93979709 │ ├── UnityTempFile-91ce28f662e5c4350a0b5b06123decb3 │ ├── UnityTempFile-9344f8425a3e04721b9e2a8e3f642954 │ ├── UnityTempFile-950d68f87652a4186b5cad0d67c031fb │ ├── UnityTempFile-96976846188174905bec2e08045ff4a9 │ ├── UnityTempFile-a602180f095f54d01bff057bfc3ed4c2 │ ├── UnityTempFile-a70c997e0a7524e2cabccea5486dffc2 │ ├── UnityTempFile-a97a0c36882ce469dbef182690d5272b │ ├── UnityTempFile-b022762836ed54dbe8807ce8f528334d │ ├── UnityTempFile-b10a6210075da45ca9b40cd8ef6b5a94 │ ├── UnityTempFile-b3936e91e979d48169387f7d7068cd64 │ ├── UnityTempFile-b839a3fd0de1346eebb124fe7b38a2e3 │ ├── UnityTempFile-b95efba6b674340a8ada69574e36a2c9 │ ├── UnityTempFile-c6926f893ab854d4ebf2df54286fd738 │ ├── UnityTempFile-c8dbbb86a17c548e6b6bf17cd30cdecf │ ├── UnityTempFile-cc26348aab5464b9e8bdb1975c3b13f4 │ ├── UnityTempFile-cd737698be25e4c34b47cca8ab62b5dd │ ├── UnityTempFile-d3b1d9e0ece1f4d4b8985898dcc15e90 │ ├── UnityTempFile-d6469a270204645e1800651a4f47eb04 │ ├── UnityTempFile-d8edf2b079cd94f09874ec28eb4f4f25 │ ├── UnityTempFile-e1e804580362b4007adb0205f51661ac │ ├── UnityTempFile-e8880adadba334f12bc7b69df34a07aa │ ├── UnityTempFile-ed3df7b0f5c80429ba30d5c3d7d25a83 │ ├── UnityTempFile-fd8852b2770c746a5a319ee008328079 │ ├── __BuildPlayer Backupscene │ ├── __EditModeScene │ ├── tempFile.res │ ├── tempFile.resG │ └── tempFile.resS └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Tobias Milliken 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /MP-Mario/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/.DS_Store -------------------------------------------------------------------------------- /MP-Mario/Assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/.DS_Store -------------------------------------------------------------------------------- /MP-Mario/Assets/Animators.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e40ff68b71a54be4a3db3f3e6478f39 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Animators/Goomba.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Animators/Goomba.controller -------------------------------------------------------------------------------- /MP-Mario/Assets/Animators/Goomba.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b34ab7b7893d41d9b54846c5d3aac4d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Animators/Mario.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Animators/Mario.controller -------------------------------------------------------------------------------- /MP-Mario/Assets/Animators/Mario.controller.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ac1c35a0e01b43a882861911042bb66 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad74d7af2ac6a4f8eaf3960dfc39b416 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Goomba.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Goomba.blend -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Goomba.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Goomba.blend1 -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Goomba.blend1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e2b65c4dd904472abd682775d7a204b 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Luigi.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Luigi.blend -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Luigi.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Luigi.blend1 -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Luigi.blend1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d568f0b7300d4a4c8c6071ac26554af 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Mario.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Mario.blend -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Mario.blend1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Mario.blend1 -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Mario.blend1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7069dc382b5c84b949cae2535e46927f 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd9dbdd5dea5f44febb544432be51239 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Black.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Black.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Black.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfc2970e21e6b4c18b83c51b30f3d298 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/BlackG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/BlackG.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/BlackG.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a28f7e86a6cbe42729e3272fb80800a6 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Blue.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Blue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d5640c238ca45d199fdab8d6f55908 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Brown.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Brown.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Brown.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fd0b6e442ea7b40df85c5eda935f0857 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/BrownG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/BrownG.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/BrownG.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a26af6dd17eff4e0ab5b15370d1ff623 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/DarkBG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/DarkBG.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/DarkBG.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c4f34cc0bdec4882b9dfe203f40dcf0 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Eye.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Eye.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Eye.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f426215acd6544c17a155c94e29645ac 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/EyeBlue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/EyeBlue.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/EyeBlue.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff6b9f120c82547e4ad53f01ede709fd 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Green.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Green.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab71b8d9130fa4ceb816137f90906fc5 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/LightBG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/LightBG.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/LightBG.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e737a39d677f941bfab1ab11747df710 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Material.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Material.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Material.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3e4f5fee9d1548c88086eb4559da40b 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Red.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Red.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25a1c94ec223f4c8092b2586989baaff 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Skin.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/Skin.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/Skin.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 790fd130edde74eafb60c0522d4a4163 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/White.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/White.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/White.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3b74763b0e28e4b7f8fcbaf8e2ba6ad1 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/WhiteG.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Blends/Materials/WhiteG.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Blends/Materials/WhiteG.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1805bf63eba5426fb86b933ccc2ab91 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/FX.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bdf6cfada003d414b9e10f7f1268ae6c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/Super_Mario_Bros._theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/FX/Super_Mario_Bros._theme.ogg -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/Super_Mario_Bros._theme.ogg.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e31eba4fd573e4ed1a18a9f1e7f5b635 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: 0 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/smb_jump-super.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/FX/smb_jump-super.wav -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/smb_jump-super.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c87a2b176228441cb908f254a79547b 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: -1 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/smb_mariodie-2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/FX/smb_mariodie-2.wav -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/smb_mariodie-2.wav.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4173a0c68089c48b99cfc9a0bec0c2bd 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: -1 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/super_mario_bros.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/FX/super_mario_bros.mp3 -------------------------------------------------------------------------------- /MP-Mario/Assets/FX/super_mario_bros.mp3.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db6d8b874b15a478792aa38da5f9ddd5 3 | AudioImporter: 4 | serializedVersion: 4 5 | format: 0 6 | quality: -1 7 | stream: 1 8 | 3D: 1 9 | forceToMono: 0 10 | useHardware: 0 11 | loopable: 0 12 | userData: 13 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 699d1398377044f909a217c8ecca8cc5 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Black.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/Black.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Black.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f25699970f7da45f09f06916047ac8c8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Fire.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/Fire.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Fire.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10c014346522c4a69a1e1b717d91614d 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/Green.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Green.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ebc4bec37e5814713ae6b28be4620ab9 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Wall.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/Wall.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/Wall.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 44e80a6a81d5a411cba30b15a2fe3633 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/brick.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/brick.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/brick.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b32468c3e779431e9eeba0c5f8281c3 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/grass.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/grass.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/grass.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c2f35acf466b4bf3aa7f8ec7099dc7f 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/yellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Materials/yellow.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Materials/yellow.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2014b158d52c14c03af674a0d75b97db 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ccf0ba40a6dab4a299d636e49b00b09f 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources/Goomba.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Resources/Goomba.prefab -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources/Goomba.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95287e3de6cb74887a471d5981927ff8 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources/Luigi.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Resources/Luigi.prefab -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources/Luigi.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c50c36780577b4f1e865bccca95e6270 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources/Mario.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Resources/Mario.prefab -------------------------------------------------------------------------------- /MP-Mario/Assets/Resources/Mario.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77f5a497e464e44f89c54c8f706cb6ab 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scene.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31cbb6e6dc45344f4985b6d8f0101a64 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scene/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Scene/.DS_Store -------------------------------------------------------------------------------- /MP-Mario/Assets/Scene/Mario-MP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Scene/Mario-MP.unity -------------------------------------------------------------------------------- /MP-Mario/Assets/Scene/Mario-MP.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3f49b4d3269e4cc88b96022f8682a4c 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5206ff1ca844d43f88568f5f82afcc53 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Scripts/.DS_Store -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Animations.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class Animations : MonoBehaviour { 5 | protected Animator animator; 6 | void Start () 7 | { 8 | animator = GetComponent(); 9 | } 10 | void Update () { 11 | if (!networkView.isMine) 12 | return; 13 | if (Input.GetKey(KeyCode.UpArrow)) 14 | { 15 | //Turns walk animation to true to were the walk animation can run 16 | networkView.RPC("Walk", RPCMode.Others, true); 17 | Walk (true); 18 | } 19 | else 20 | { 21 | //Turns walk animation to false to were the idle animation can run 22 | networkView.RPC("Walk", RPCMode.Others, false); 23 | Walk (false); 24 | } 25 | 26 | if (Input.GetKey (KeyCode.DownArrow)) { 27 | networkView.RPC("Walk", RPCMode.Others, true); 28 | Walk (true); 29 | 30 | } 31 | } 32 | 33 | 34 | 35 | [RPC] 36 | public void Walk(bool value) 37 | { 38 | animator.SetBool ("Walk", value); 39 | } 40 | 41 | 42 | } -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Animations.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aae51ec76bfc04e14b68794f66b12025 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/CameraPs.js: -------------------------------------------------------------------------------- 1 | #pragma strict 2 | function Start (){ 3 | 4 | if(networkView.isMine){ 5 | GetComponent(Camera).enabled = true; 6 | } 7 | else{ 8 | GetComponent(Camera).enabled = false; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/CameraPs.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6a4dde29dd7794aadb4a98cda3a4921a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/HealthL.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class HealthL : MonoBehaviour { 5 | public AudioClip death; 6 | public float heart = 30.0F; 7 | public bool once = false; 8 | void Update () { 9 | if (once == true) { 10 | deathS(); 11 | } 12 | if (heart == 0) { 13 | once = true; 14 | } 15 | 16 | } 17 | void OnTriggerEnter(Collider other) 18 | { 19 | if (other.gameObject.tag == "badguy") { 20 | heart -= 0.5F; 21 | 22 | } 23 | 24 | } 25 | public void deathS() 26 | { 27 | 28 | 29 | if (Network.isServer) 30 | { 31 | //Disconnects the player and plays the sound 32 | audio.PlayOneShot (death); 33 | Network.Disconnect(200); 34 | MasterServer.UnregisterHost(); 35 | } 36 | 37 | if (Network.isClient) 38 | { 39 | //Disconnects the player and plays the sound 40 | audio.PlayOneShot (death); 41 | Network.Disconnect(200); 42 | } 43 | } 44 | 45 | 46 | 47 | } 48 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/HealthL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed06d8af9d8aa438680b30ca98f69d05 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Kill.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class Kill : MonoBehaviour { 5 | 6 | 7 | public void OnTriggerEnter(Collider other) 8 | { 9 | //Destroy the Enemie when player collides 10 | if (other.gameObject.tag == "Player") 11 | { 12 | Destroy(transform.parent.gameObject); 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Kill.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0302e8c2b5c594d40a7c2cde395d5ca5 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Moving.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class Moving : MonoBehaviour { 5 | public Vector3 start; 6 | public Vector3 end; 7 | Transform mTransform; 8 | public AudioClip jump; 9 | float speed = 5.0f; 10 | public bool onGround = false; 11 | void Start () { 12 | mTransform = this.transform; 13 | 14 | } 15 | 16 | 17 | void Update () { 18 | //Movement 19 | 20 | //If It is your own player run the rest of the script 21 | if (!networkView.isMine) 22 | return; 23 | if (Input.GetKey(KeyCode.UpArrow)) 24 | { 25 | mTransform.Translate(Vector3.forward * speed * Time.deltaTime); 26 | } 27 | if (Input.GetKey (KeyCode.DownArrow)) 28 | { 29 | mTransform.Translate(-Vector3.forward * speed * Time.deltaTime); 30 | } 31 | if (Input.GetKey (KeyCode.RightArrow)) 32 | { 33 | mTransform.Translate(Vector3.right * speed * Time.deltaTime); 34 | } 35 | if (Input.GetKey (KeyCode.LeftArrow)) 36 | { 37 | mTransform.Translate(Vector3.left * speed * Time.deltaTime); 38 | } 39 | if (Input.GetKeyDown(KeyCode.Space)) 40 | { 41 | if(onGround == true) 42 | { 43 | audio.PlayOneShot (jump); 44 | rigidbody.AddForce(Vector3.up * 15, ForceMode.Impulse); 45 | onGround = false; 46 | } 47 | } 48 | 49 | 50 | } 51 | 52 | void OnTriggerEnter(Collider other) 53 | { 54 | if (other.gameObject.tag == "Ground") 55 | { 56 | onGround = true; 57 | } 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Moving.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b1419674c848f493094e3ad802bd185c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/NetworkManager.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0293388ca612a43ae83a3aab002c6239 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/RobotUI.js: -------------------------------------------------------------------------------- 1 | #pragma strict 2 | 3 | private static var Player : Transform; //This get the Player Transform 4 | 5 | var Speed : float = 1; //This is the Enemy Speed 6 | var Distance : float = 15; //The Distance before he can see the player 7 | var animator: Animator; 8 | var Smooth : float = 2; //This is how fast the Enemy Rotate\ 9 | 10 | 11 | function Update () 12 | { 13 | if(GameObject.FindGameObjectWithTag("Player")) 14 | { 15 | Player = GameObject.FindGameObjectWithTag("Player").transform; 16 | //Check the Distance 17 | if (Vector3.Distance(Player.position,transform.position) <= Distance) 18 | { 19 | 20 | animator.SetBool("mad", true); //If he see you his color change to Red 21 | var tempRot = transform.rotation; 22 | tempRot.z = 0; 23 | tempRot.x = 0; 24 | transform.rotation = Quaternion.Slerp(tempRot, Quaternion.LookRotation(Player.position - transform.position), Time.deltaTime * Smooth); 25 | //Look At the Player 26 | transform.position = Vector3.MoveTowards(transform.position, Player.position, Speed * Time.deltaTime); 27 | //Move Towards the Player 28 | } 29 | else 30 | { 31 | //sets the enemies animation to false 32 | animator.SetBool("mad", false); 33 | } 34 | } 35 | } 36 | 37 | public static function Tag() 38 | { 39 | 40 | } 41 | 42 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/RobotUI.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b5093be04157547f5abbcbaeb31ca2ac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Spawn.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | public class Spawn : MonoBehaviour { 5 | 6 | void OnServerInitialized () { 7 | //Spawns enemies when server is created 8 | Network.Instantiate(Resources.Load("Goomba"), new Vector3(0, 1, 0), Quaternion.identity, 0); 9 | } 10 | 11 | 12 | } 13 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Scripts/Spawn.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 058d825d18dbd4df0b36ea9bb17b4e1b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bda854880d7748d8aa6735995f2efaf 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54216e9ed42974e30967824b7f0b2806 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/3rd Person Controller.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Standard Assets/Character Controllers/3rd Person Controller.prefab -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/3rd Person Controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2314ce3a3eecf4816bad3c9eca4de2e1 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/First Person Controller.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Standard Assets/Character Controllers/First Person Controller.prefab -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/First Person Controller.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d4133d5d30b644bd87802a347eaccbe 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e0b0a994d8934541a387e092630b5db 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81df2918c80c054ca3d436e62090893 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Constructor.FBX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Constructor.FBX -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e53c8c3dcc4ff59438bc9e86cb45c3f6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Materials/constructor_done.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Materials/constructor_done.mat -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Materials/constructor_done.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca49380a71a2bb64c830d06bd421b9d1 3 | NativeFormatImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b365e6042890d4b1987423ed6bb8a08c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures/constructor_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures/constructor_diffuse.png -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures/constructor_diffuse.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 97b050d43ac7c4d2b9f6cbb587650761 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures/constructor_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures/constructor_normals.png -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/PrototypeCharacter/Textures/constructor_normals.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 531c14f8d5cdc4e5baa83ee6e16f783a 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 1 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 1 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: 1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: 1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f781c091d1c8647c380d5230adfaee54 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/CharacterMotor.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0ab79d7f243824f5d9826bd83522c8df 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js: -------------------------------------------------------------------------------- 1 | private var motor : CharacterMotor; 2 | 3 | // Use this for initialization 4 | function Awake () { 5 | motor = GetComponent(CharacterMotor); 6 | } 7 | 8 | // Update is called once per frame 9 | function Update () { 10 | // Get the input vector from keyboard or analog stick 11 | var directionVector = new Vector3(Input.GetAxis("Horizontal"), 0, Input.GetAxis("Vertical")); 12 | 13 | if (directionVector != Vector3.zero) { 14 | // Get the length of the directon vector and then normalize it 15 | // Dividing by the length is cheaper than normalizing when we already have the length anyway 16 | var directionLength = directionVector.magnitude; 17 | directionVector = directionVector / directionLength; 18 | 19 | // Make sure the length is no bigger than 1 20 | directionLength = Mathf.Min(1, directionLength); 21 | 22 | // Make the input vector more sensitive towards the extremes and less sensitive in the middle 23 | // This makes it easier to control slow speeds when using analog sticks 24 | directionLength = directionLength * directionLength; 25 | 26 | // Multiply the normalized direction vector by the modified length 27 | directionVector = directionVector * directionLength; 28 | } 29 | 30 | // Apply the direction to the CharacterMotor 31 | motor.inputMoveDirection = transform.rotation * directionVector; 32 | motor.inputJump = Input.GetButton("Jump"); 33 | } 34 | 35 | // Require a character controller to be attached to the same game object 36 | @script RequireComponent (CharacterMotor) 37 | @script AddComponentMenu ("Character/FPS Input Controller") 38 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60bca8f58a0b8478e946e6e86658cb29 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | /// MouseLook rotates the transform based on the mouse delta. 5 | /// Minimum and Maximum values can be used to constrain the possible rotation 6 | 7 | /// To make an FPS style character: 8 | /// - Create a capsule. 9 | /// - Add the MouseLook script to the capsule. 10 | /// -> Set the mouse look to use LookX. (You want to only turn character but not tilt it) 11 | /// - Add FPSInputController script to the capsule 12 | /// -> A CharacterMotor and a CharacterController component will be automatically added. 13 | 14 | /// - Create a camera. Make the camera a child of the capsule. Reset it's transform. 15 | /// - Add a MouseLook script to the camera. 16 | /// -> Set the mouse look to use LookY. (You want the camera to tilt up and down like a head. The character already turns.) 17 | [AddComponentMenu("Camera-Control/Mouse Look")] 18 | public class MouseLook : MonoBehaviour { 19 | 20 | public enum RotationAxes { MouseXAndY = 0, MouseX = 1, MouseY = 2 } 21 | public RotationAxes axes = RotationAxes.MouseXAndY; 22 | public float sensitivityX = 15F; 23 | public float sensitivityY = 15F; 24 | 25 | public float minimumX = -360F; 26 | public float maximumX = 360F; 27 | 28 | public float minimumY = -60F; 29 | public float maximumY = 60F; 30 | 31 | float rotationY = 0F; 32 | 33 | void Update () 34 | { 35 | if (!networkView.isMine) 36 | return; 37 | if (axes == RotationAxes.MouseXAndY) 38 | { 39 | float rotationX = transform.localEulerAngles.y + Input.GetAxis("Mouse X") * sensitivityX; 40 | 41 | rotationY += Input.GetAxis("Mouse Y") * sensitivityY; 42 | rotationY = Mathf.Clamp (rotationY, minimumY, maximumY); 43 | 44 | transform.localEulerAngles = new Vector3(-rotationY, rotationX, 0); 45 | } 46 | else if (axes == RotationAxes.MouseX) 47 | { 48 | transform.Rotate(0, Input.GetAxis("Mouse X") * sensitivityX, 0); 49 | } 50 | else 51 | { 52 | rotationY += Input.GetAxis("Mouse Y") * sensitivityY; 53 | rotationY = Mathf.Clamp (rotationY, minimumY, maximumY); 54 | 55 | transform.localEulerAngles = new Vector3(-rotationY, transform.localEulerAngles.y, 0); 56 | } 57 | } 58 | 59 | void Start () 60 | { 61 | // Make the rigid body not change rotation 62 | if (GetComponent()) 63 | GetComponent().freezeRotation = true; 64 | } 65 | } -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68ec2fe99d1108b9d0006a298d76c639 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/PlatformInputController.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: da93ddd6928094e24bb1f3f665f143d3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonCamera.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b167d00b3108411a8a963cba5ddde1b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d5ac211a643e447ca78c2d794a16381 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Textures.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b947c3c52a3084f4c92e3836a1c7f7f0 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Textures/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Textures/brick.png -------------------------------------------------------------------------------- /MP-Mario/Assets/Textures/brick.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf56ec970eca94ec3b2c4e1d6fa22bbd 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /MP-Mario/Assets/Textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Assets/Textures/grass.png -------------------------------------------------------------------------------- /MP-Mario/Assets/Textures/grass.png.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a41c8b27c6444f8098a0eb31e0dd5d4 3 | TextureImporter: 4 | fileIDToRecycleName: {} 5 | serializedVersion: 2 6 | mipmaps: 7 | mipMapMode: 0 8 | enableMipMap: 1 9 | linearTexture: 0 10 | correctGamma: 0 11 | fadeOut: 0 12 | borderMipMap: 0 13 | mipMapFadeDistanceStart: 1 14 | mipMapFadeDistanceEnd: 3 15 | bumpmap: 16 | convertToNormalMap: 0 17 | externalNormalMap: 0 18 | heightScale: .25 19 | normalMapFilter: 0 20 | isReadable: 0 21 | grayScaleToAlpha: 0 22 | generateCubemap: 0 23 | seamlessCubemap: 0 24 | textureFormat: -1 25 | maxTextureSize: 1024 26 | textureSettings: 27 | filterMode: -1 28 | aniso: -1 29 | mipBias: -1 30 | wrapMode: -1 31 | nPOTScale: 1 32 | lightmap: 0 33 | compressionQuality: 50 34 | spriteMode: 0 35 | spriteExtrude: 1 36 | spriteMeshType: 1 37 | alignment: 0 38 | spritePivot: {x: .5, y: .5} 39 | spriteBorder: {x: 0, y: 0, z: 0, w: 0} 40 | spritePixelsToUnits: 100 41 | alphaIsTransparency: 0 42 | textureType: -1 43 | buildTargetSettings: [] 44 | spriteSheet: 45 | sprites: [] 46 | spritePackingTag: 47 | userData: 48 | -------------------------------------------------------------------------------- /MP-Mario/Library/AnnotationManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/AnnotationManager -------------------------------------------------------------------------------- /MP-Mario/Library/AssetImportState: -------------------------------------------------------------------------------- 1 | 5;0;-1 -------------------------------------------------------------------------------- /MP-Mario/Library/AssetServerCacheV3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/AssetServerCacheV3 -------------------------------------------------------------------------------- /MP-Mario/Library/AssetVersioning.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/AssetVersioning.db -------------------------------------------------------------------------------- /MP-Mario/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/BuildPlayer.prefs -------------------------------------------------------------------------------- /MP-Mario/Library/BuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/BuildSettings.asset -------------------------------------------------------------------------------- /MP-Mario/Library/CurrentLayout.dwlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/CurrentLayout.dwlt -------------------------------------------------------------------------------- /MP-Mario/Library/EditorUserBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/EditorUserBuildSettings.asset -------------------------------------------------------------------------------- /MP-Mario/Library/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/EditorUserSettings.asset -------------------------------------------------------------------------------- /MP-Mario/Library/FailedAssetImports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/FailedAssetImports.txt -------------------------------------------------------------------------------- /MP-Mario/Library/InspectorExpandedItems.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/InspectorExpandedItems.asset -------------------------------------------------------------------------------- /MP-Mario/Library/MonoManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/MonoManager.asset -------------------------------------------------------------------------------- /MP-Mario/Library/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ProjectSettings.asset -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll.mdb -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-CSharp.dll -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll.mdb -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript.dll -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptAssemblies/Assembly-UnityScript.dll.mdb -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptAssemblies/CompilationCompleted.txt: -------------------------------------------------------------------------------- 1 | Completed 2 | -------------------------------------------------------------------------------- /MP-Mario/Library/ScriptMapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ScriptMapper -------------------------------------------------------------------------------- /MP-Mario/Library/ShaderCache.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/ShaderCache.db -------------------------------------------------------------------------------- /MP-Mario/Library/assetDatabase3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/assetDatabase3 -------------------------------------------------------------------------------- /MP-Mario/Library/expandedItems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/expandedItems -------------------------------------------------------------------------------- /MP-Mario/Library/guidmapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/guidmapper -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000001000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000001000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000002000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000002000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000003000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000003000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000004000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000004000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000004100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000004100000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000005000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000005000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000005100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000005100000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000006000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000006000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000006100000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000006100000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000007000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000007000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000008000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000008000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/00000000000000009000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/00000000000000009000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/0000000000000000a000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/0000000000000000a000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/0000000000000000b000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/0000000000000000b000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/00/0000000000000000c000000000000000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/00/0000000000000000c000000000000000 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/02/0293388ca612a43ae83a3aab002c6239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/02/0293388ca612a43ae83a3aab002c6239 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/03/0302e8c2b5c594d40a7c2cde395d5ca5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/03/0302e8c2b5c594d40a7c2cde395d5ca5 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/05/058d825d18dbd4df0b36ea9bb17b4e1b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/05/058d825d18dbd4df0b36ea9bb17b4e1b -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/0a/0ab79d7f243824f5d9826bd83522c8df: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/0a/0ab79d7f243824f5d9826bd83522c8df -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/0b/0b167d00b3108411a8a963cba5ddde1b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/0b/0b167d00b3108411a8a963cba5ddde1b -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/0b/0b32468c3e779431e9eeba0c5f8281c3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/0b/0b32468c3e779431e9eeba0c5f8281c3 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/0e/0e40ff68b71a54be4a3db3f3e6478f39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/0e/0e40ff68b71a54be4a3db3f3e6478f39 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/10/10c014346522c4a69a1e1b717d91614d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/10/10c014346522c4a69a1e1b717d91614d -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/14/14d5640c238ca45d199fdab8d6f55908: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/14/14d5640c238ca45d199fdab8d6f55908 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/1d/1d5ac211a643e447ca78c2d794a16381: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/1d/1d5ac211a643e447ca78c2d794a16381 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/20/2014b158d52c14c03af674a0d75b97db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/20/2014b158d52c14c03af674a0d75b97db -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/23/2314ce3a3eecf4816bad3c9eca4de2e1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/23/2314ce3a3eecf4816bad3c9eca4de2e1 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/25/25a1c94ec223f4c8092b2586989baaff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/25/25a1c94ec223f4c8092b2586989baaff -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/31/31cbb6e6dc45344f4985b6d8f0101a64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/31/31cbb6e6dc45344f4985b6d8f0101a64 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/3b/3b74763b0e28e4b7f8fcbaf8e2ba6ad1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/3b/3b74763b0e28e4b7f8fcbaf8e2ba6ad1 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/41/4173a0c68089c48b99cfc9a0bec0c2bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/41/4173a0c68089c48b99cfc9a0bec0c2bd -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/44/449b48f7eb5d87a4baaa5fb73f875a59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/44/449b48f7eb5d87a4baaa5fb73f875a59 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/44/44e80a6a81d5a411cba30b15a2fe3633: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/44/44e80a6a81d5a411cba30b15a2fe3633 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/52/5206ff1ca844d43f88568f5f82afcc53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/52/5206ff1ca844d43f88568f5f82afcc53 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/53/531c14f8d5cdc4e5baa83ee6e16f783a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/53/531c14f8d5cdc4e5baa83ee6e16f783a -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/54/54216e9ed42974e30967824b7f0b2806: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/54/54216e9ed42974e30967824b7f0b2806 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/5c/5c2f35acf466b4bf3aa7f8ec7099dc7f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/5c/5c2f35acf466b4bf3aa7f8ec7099dc7f -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/60/60bca8f58a0b8478e946e6e86658cb29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/60/60bca8f58a0b8478e946e6e86658cb29 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/68/6894351f6acba44ca8fef36bb2f071d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/68/6894351f6acba44ca8fef36bb2f071d4 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/68/68ec2fe99d1108b9d0006a298d76c639: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/68/68ec2fe99d1108b9d0006a298d76c639 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/69/699d1398377044f909a217c8ecca8cc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/69/699d1398377044f909a217c8ecca8cc5 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/6a/6a4dde29dd7794aadb4a98cda3a4921a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/6a/6a4dde29dd7794aadb4a98cda3a4921a -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/6b/6bda854880d7748d8aa6735995f2efaf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/6b/6bda854880d7748d8aa6735995f2efaf -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/6d/6d568f0b7300d4a4c8c6071ac26554af: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/6d/6d568f0b7300d4a4c8c6071ac26554af -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/6e/6e2b65c4dd904472abd682775d7a204b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/6e/6e2b65c4dd904472abd682775d7a204b -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/70/7069dc382b5c84b949cae2535e46927f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/70/7069dc382b5c84b949cae2535e46927f -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/77/77f5a497e464e44f89c54c8f706cb6ab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/77/77f5a497e464e44f89c54c8f706cb6ab -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/79/790fd130edde74eafb60c0522d4a4163: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/79/790fd130edde74eafb60c0522d4a4163 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/7a/7ac1c35a0e01b43a882861911042bb66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/7a/7ac1c35a0e01b43a882861911042bb66 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/7c/7c4f34cc0bdec4882b9dfe203f40dcf0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/7c/7c4f34cc0bdec4882b9dfe203f40dcf0 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/7c/7c87a2b176228441cb908f254a79547b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/7c/7c87a2b176228441cb908f254a79547b -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/7e/7e0b0a994d8934541a387e092630b5db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/7e/7e0b0a994d8934541a387e092630b5db -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/7f/7f3645a79f35a4190b21dda80e9ff5f5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/7f/7f3645a79f35a4190b21dda80e9ff5f5 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/80/80a3616ca19596e4da0f10f14d241e9f -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/8a/8a41c8b27c6444f8098a0eb31e0dd5d4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/8a/8a41c8b27c6444f8098a0eb31e0dd5d4 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/95/95287e3de6cb74887a471d5981927ff8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/95/95287e3de6cb74887a471d5981927ff8 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/97/97b050d43ac7c4d2b9f6cbb587650761: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/97/97b050d43ac7c4d2b9f6cbb587650761 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/9b/9b34ab7b7893d41d9b54846c5d3aac4d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/9b/9b34ab7b7893d41d9b54846c5d3aac4d -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/9d/9d4133d5d30b644bd87802a347eaccbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/9d/9d4133d5d30b644bd87802a347eaccbe -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/a2/a26af6dd17eff4e0ab5b15370d1ff623: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/a2/a26af6dd17eff4e0ab5b15370d1ff623 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/a2/a28f7e86a6cbe42729e3272fb80800a6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/a2/a28f7e86a6cbe42729e3272fb80800a6 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/a4/a4c9eebf7fdbe49c093d603a75883374: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/a4/a4c9eebf7fdbe49c093d603a75883374 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/aa/aae51ec76bfc04e14b68794f66b12025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/aa/aae51ec76bfc04e14b68794f66b12025 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/ab/ab71b8d9130fa4ceb816137f90906fc5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/ab/ab71b8d9130fa4ceb816137f90906fc5 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/ad/ad74d7af2ac6a4f8eaf3960dfc39b416: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/ad/ad74d7af2ac6a4f8eaf3960dfc39b416 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/b1/b1419674c848f493094e3ad802bd185c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/b1/b1419674c848f493094e3ad802bd185c -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/b1/b1805bf63eba5426fb86b933ccc2ab91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/b1/b1805bf63eba5426fb86b933ccc2ab91 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/b3/b365e6042890d4b1987423ed6bb8a08c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/b3/b365e6042890d4b1987423ed6bb8a08c -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/b3/b3e4f5fee9d1548c88086eb4559da40b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/b3/b3e4f5fee9d1548c88086eb4559da40b -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/b5/b5093be04157547f5abbcbaeb31ca2ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/b5/b5093be04157547f5abbcbaeb31ca2ac -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/b9/b947c3c52a3084f4c92e3836a1c7f7f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/b9/b947c3c52a3084f4c92e3836a1c7f7f0 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/bd/bdf6cfada003d414b9e10f7f1268ae6c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/bd/bdf6cfada003d414b9e10f7f1268ae6c -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/bf/bfc2970e21e6b4c18b83c51b30f3d298: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/bf/bfc2970e21e6b4c18b83c51b30f3d298 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/c3/c3f49b4d3269e4cc88b96022f8682a4c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/c3/c3f49b4d3269e4cc88b96022f8682a4c -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/c5/c50c36780577b4f1e865bccca95e6270: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/c5/c50c36780577b4f1e865bccca95e6270 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/c8/c81df2918c80c054ca3d436e62090893: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/c8/c81df2918c80c054ca3d436e62090893 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/ca/ca49380a71a2bb64c830d06bd421b9d1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/ca/ca49380a71a2bb64c830d06bd421b9d1 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/cc/ccf0ba40a6dab4a299d636e49b00b09f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/cc/ccf0ba40a6dab4a299d636e49b00b09f -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/cf/cf56ec970eca94ec3b2c4e1d6fa22bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/cf/cf56ec970eca94ec3b2c4e1d6fa22bbd -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/da/da93ddd6928094e24bb1f3f665f143d3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/da/da93ddd6928094e24bb1f3f665f143d3 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/db/db6d8b874b15a478792aa38da5f9ddd5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/db/db6d8b874b15a478792aa38da5f9ddd5 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/e3/e31eba4fd573e4ed1a18a9f1e7f5b635: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/e3/e31eba4fd573e4ed1a18a9f1e7f5b635 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/e5/e53c8c3dcc4ff59438bc9e86cb45c3f6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/e5/e53c8c3dcc4ff59438bc9e86cb45c3f6 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/e7/e737a39d677f941bfab1ab11747df710: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/e7/e737a39d677f941bfab1ab11747df710 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/eb/ebc4bec37e5814713ae6b28be4620ab9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/eb/ebc4bec37e5814713ae6b28be4620ab9 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/ed/ed06d8af9d8aa438680b30ca98f69d05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/ed/ed06d8af9d8aa438680b30ca98f69d05 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/f2/f25699970f7da45f09f06916047ac8c8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/f2/f25699970f7da45f09f06916047ac8c8 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/f4/f426215acd6544c17a155c94e29645ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/f4/f426215acd6544c17a155c94e29645ac -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/f5/f5f67c52d1564df4a8936ccd202a3bd8 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/f7/f781c091d1c8647c380d5230adfaee54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/f7/f781c091d1c8647c380d5230adfaee54 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/fd/fd0b6e442ea7b40df85c5eda935f0857: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/fd/fd0b6e442ea7b40df85c5eda935f0857 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/fd/fd9dbdd5dea5f44febb544432be51239: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/fd/fd9dbdd5dea5f44febb544432be51239 -------------------------------------------------------------------------------- /MP-Mario/Library/metadata/ff/ff6b9f120c82547e4ad53f01ede709fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Library/metadata/ff/ff6b9f120c82547e4ad53f01ede709fd -------------------------------------------------------------------------------- /MP-Mario/MP-Mario-csharp.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2008 3 | 4 | Project("{A9B398D7-5032-2312-3203-67B9A4218E42}") = "MP-Mario", "Assembly-CSharp-firstpass-vs.csproj", "{F2158FCF-626C-8965-E4A0-225717C161B0}" 5 | EndProject 6 | Project("{A9B398D7-5032-2312-3203-67B9A4218E42}") = "MP-Mario", "Assembly-CSharp-vs.csproj", "{59933955-D49D-964B-6D86-613CBC505F02}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F2158FCF-626C-8965-E4A0-225717C161B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F2158FCF-626C-8965-E4A0-225717C161B0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F2158FCF-626C-8965-E4A0-225717C161B0}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F2158FCF-626C-8965-E4A0-225717C161B0}.Release|Any CPU.Build.0 = Release|Any CPU 18 | {59933955-D49D-964B-6D86-613CBC505F02}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {59933955-D49D-964B-6D86-613CBC505F02}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {59933955-D49D-964B-6D86-613CBC505F02}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {59933955-D49D-964B-6D86-613CBC505F02}.Release|Any CPU.Build.0 = Release|Any CPU 22 | EndGlobalSection 23 | GlobalSection(SolutionProperties) = preSolution 24 | HideSolutionNode = FALSE 25 | EndGlobalSection 26 | GlobalSection(MonoDevelopProperties) = preSolution 27 | StartupItem = Assembly-CSharp.csproj 28 | Policies = $0 29 | $0.TextStylePolicy = $1 30 | $1.inheritsSet = null 31 | $1.scope = text/x-csharp 32 | $0.CSharpFormattingPolicy = $2 33 | $2.inheritsSet = Mono 34 | $2.inheritsScope = text/x-csharp 35 | $2.scope = text/x-csharp 36 | $0.TextStylePolicy = $3 37 | $3.FileWidth = 120 38 | $3.TabWidth = 4 39 | $3.EolMarker = Unix 40 | $3.inheritsSet = Mono 41 | $3.inheritsScope = text/plain 42 | $3.scope = text/plain 43 | EndGlobalSection 44 | 45 | EndGlobal 46 | -------------------------------------------------------------------------------- /MP-Mario/MP-Mario.userprefs: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /MP-Mario/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP.exe -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-CSharp-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-CSharp-firstpass.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-CSharp.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-UnityScript-firstpass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-UnityScript-firstpass.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-UnityScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Assembly-UnityScript.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Boo.Lang.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Boo.Lang.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Mono.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/Mono.Security.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/System.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/System.Core.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/System.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/System.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/UnityEngine.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/UnityEngine.UI.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/UnityEngine.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/mscorlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Managed/mscorlib.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Mono/etc/mono/2.0/Browsers/Compat.browser: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Mono/etc/mono/browscap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Mono/etc/mono/browscap.ini -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Mono/etc/mono/config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Mono/mono.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Mono/mono.dll -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/PlayerConnectionConfigFile: -------------------------------------------------------------------------------- 1 | listen 963614766 0 0 -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Resources/unity default resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Resources/unity default resources -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/Resources/unity_builtin_extra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/Resources/unity_builtin_extra -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/mainData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/mainData -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/resources.assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/resources.assets -------------------------------------------------------------------------------- /MP-Mario/Temp/StagingArea/Mario-MP_Data/sharedassets0.assets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/StagingArea/Mario-MP_Data/sharedassets0.assets -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-0270282fec537461ebcdfb79ecb01b64: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript-firstpass.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/WindowsStandaloneSupport/Managed/UnityEngine.dll' 44 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 45 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/CharacterMotor.js' 46 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js' 47 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/PlatformInputController.js' 48 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonCamera.js' 49 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js' 50 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-05d35f0dc10fc4466a9ed54ebadd3f91: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-05d3fb46a86894b7382dd780469b708a: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-067c0f2678e47418883b1458b70419f5: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-0ac16e1a069a748aabd91ab82de8d9ee: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-113f3ced6e7b248f987c507bec66b234: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-11d44f250c1264bf5b3acac79095d08f: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-131adbad9d16f43d8bcd9edd6a7e16df: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-15b509ddb4d65430291f4559a35eeb49: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/WindowsStandaloneSupport/Managed/UnityEngine.dll' 44 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 45 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 46 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 47 | 'Assets/Scripts/CameraPs.js' 48 | 'Assets/Scripts/RobotUI.js' 49 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-226ae93600aae433e85ef28eda6de7d9: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-239ac9070e26f4be590ec6a69e71cdd4: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-2bc8ecd49331b4164a411301013564d1: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-2bc92749fd22c44b2bf60feda654d9a6: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-3aa1dfd454a224b1b9f6eb651cad970d: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-3cca5e207bf9342d3af84394debb6fc0: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-3f14b7505771a4ad5948745fbf6ae6e9: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-5aa261277df6149b4964f014e935a88b: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-5ee2a95131be841ab8e164732a0338f5: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-62143a68557ec4b5bb06338b47f4ce46: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-6429feb58aaba45c79ab5bdbcc19bee0: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-70b4924c8e6f9439b936435cf66c3ef3: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-76deca70f3391404ab2d5bbc9a8bccf3: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-790a07fa333124cc196f873e9950a069: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-7b0b41d582c504fa6a90151ec8534bc9: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-7cb240b517f694155a0e9cdc830e2266: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-7cdddf9e67e7b48ccae1fae7b8529c12: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-8035d2c6a981143fcb746b18278e5bee: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-841d361e46b5348a2ab0b43cd229cf15: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-88b3a9537499042bebd78a58b5fde33a: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-91540d09a548542dcb5fcd6a93979709: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-91ce28f662e5c4350a0b5b06123decb3: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-9344f8425a3e04721b9e2a8e3f642954: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-950d68f87652a4186b5cad0d67c031fb: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-96976846188174905bec2e08045ff4a9: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp-firstpass.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 7 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 8 | -define:UNITY_4_6_1 9 | -define:UNITY_4_6 10 | -define:UNITY_STANDALONE_WIN 11 | -define:ENABLE_MICROPHONE 12 | -define:ENABLE_TEXTUREID_MAP 13 | -define:ENABLE_UNITYEVENTS 14 | -define:ENABLE_NEW_HIERARCHY 15 | -define:ENABLE_AUDIO_FMOD 16 | -define:UNITY_STANDALONE 17 | -define:ENABLE_MONO 18 | -define:ENABLE_TERRAIN 19 | -define:ENABLE_SUBSTANCE 20 | -define:ENABLE_GENERICS 21 | -define:INCLUDE_WP8SUPPORT 22 | -define:ENABLE_MOVIES 23 | -define:ENABLE_WWW 24 | -define:ENABLE_IMAGEEFFECTS 25 | -define:ENABLE_4_6_FEATURES 26 | -define:INCLUDE_WP_BLUE_SUPPORT 27 | -define:ENABLE_WEBCAM 28 | -define:INCLUDE_METROSUPPORT 29 | -define:RENDER_SOFTWARE_CURSOR 30 | -define:ENABLE_NETWORK 31 | -define:ENABLE_PHYSICS 32 | -define:ENABLE_CACHING 33 | -define:ENABLE_CLOTH 34 | -define:ENABLE_2D_PHYSICS 35 | -define:ENABLE_SHADOWS 36 | -define:ENABLE_AUDIO 37 | -define:ENABLE_NAVMESH_CARVING 38 | -define:ENABLE_DUCK_TYPING 39 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 40 | -define:ENABLE_PROFILER 41 | -define:UNITY_EDITOR 42 | -define:UNITY_EDITOR_OSX 43 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs' 44 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 45 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 46 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-a602180f095f54d01bff057bfc3ed4c2: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp-firstpass.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/WindowsStandaloneSupport/Managed/UnityEngine.dll' 6 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 7 | -define:UNITY_4_6_1 8 | -define:UNITY_4_6 9 | -define:UNITY_STANDALONE_WIN 10 | -define:ENABLE_MICROPHONE 11 | -define:ENABLE_TEXTUREID_MAP 12 | -define:ENABLE_UNITYEVENTS 13 | -define:ENABLE_NEW_HIERARCHY 14 | -define:ENABLE_AUDIO_FMOD 15 | -define:UNITY_STANDALONE 16 | -define:ENABLE_MONO 17 | -define:ENABLE_TERRAIN 18 | -define:ENABLE_SUBSTANCE 19 | -define:ENABLE_GENERICS 20 | -define:INCLUDE_WP8SUPPORT 21 | -define:ENABLE_MOVIES 22 | -define:ENABLE_WWW 23 | -define:ENABLE_IMAGEEFFECTS 24 | -define:ENABLE_4_6_FEATURES 25 | -define:INCLUDE_WP_BLUE_SUPPORT 26 | -define:ENABLE_WEBCAM 27 | -define:INCLUDE_METROSUPPORT 28 | -define:RENDER_SOFTWARE_CURSOR 29 | -define:ENABLE_NETWORK 30 | -define:ENABLE_PHYSICS 31 | -define:ENABLE_CACHING 32 | -define:ENABLE_CLOTH 33 | -define:ENABLE_2D_PHYSICS 34 | -define:ENABLE_SHADOWS 35 | -define:ENABLE_AUDIO 36 | -define:ENABLE_NAVMESH_CARVING 37 | -define:ENABLE_DUCK_TYPING 38 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 39 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/MouseLook.cs' 40 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 41 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 42 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-a70c997e0a7524e2cabccea5486dffc2: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-a97a0c36882ce469dbef182690d5272b: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-b022762836ed54dbe8807ce8f528334d: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/WindowsStandaloneSupport/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -define:UNITY_4_6_1 10 | -define:UNITY_4_6 11 | -define:UNITY_STANDALONE_WIN 12 | -define:ENABLE_MICROPHONE 13 | -define:ENABLE_TEXTUREID_MAP 14 | -define:ENABLE_UNITYEVENTS 15 | -define:ENABLE_NEW_HIERARCHY 16 | -define:ENABLE_AUDIO_FMOD 17 | -define:UNITY_STANDALONE 18 | -define:ENABLE_MONO 19 | -define:ENABLE_TERRAIN 20 | -define:ENABLE_SUBSTANCE 21 | -define:ENABLE_GENERICS 22 | -define:INCLUDE_WP8SUPPORT 23 | -define:ENABLE_MOVIES 24 | -define:ENABLE_WWW 25 | -define:ENABLE_IMAGEEFFECTS 26 | -define:ENABLE_4_6_FEATURES 27 | -define:INCLUDE_WP_BLUE_SUPPORT 28 | -define:ENABLE_WEBCAM 29 | -define:INCLUDE_METROSUPPORT 30 | -define:RENDER_SOFTWARE_CURSOR 31 | -define:ENABLE_NETWORK 32 | -define:ENABLE_PHYSICS 33 | -define:ENABLE_CACHING 34 | -define:ENABLE_CLOTH 35 | -define:ENABLE_2D_PHYSICS 36 | -define:ENABLE_SHADOWS 37 | -define:ENABLE_AUDIO 38 | -define:ENABLE_NAVMESH_CARVING 39 | -define:ENABLE_DUCK_TYPING 40 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 41 | 'Assets/Scripts/Animations.cs' 42 | 'Assets/Scripts/HealthL.cs' 43 | 'Assets/Scripts/Kill.cs' 44 | 'Assets/Scripts/Moving.cs' 45 | 'Assets/Scripts/NetworkManager.cs' 46 | 'Assets/Scripts/Spawn.cs' 47 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 48 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 49 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-b10a6210075da45ca9b40cd8ef6b5a94: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-b3936e91e979d48169387f7d7068cd64: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-b839a3fd0de1346eebb124fe7b38a2e3: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-b95efba6b674340a8ada69574e36a2c9: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-c6926f893ab854d4ebf2df54286fd738: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-c8dbbb86a17c548e6b6bf17cd30cdecf: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-cc26348aab5464b9e8bdb1975c3b13f4: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-cd737698be25e4c34b47cca8ab62b5dd: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-d3b1d9e0ece1f4d4b8985898dcc15e90: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-d6469a270204645e1800651a4f47eb04: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-d8edf2b079cd94f09874ec28eb4f4f25: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript-firstpass.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 48 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 49 | -i:UnityEditor 50 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/CharacterMotor.js' 51 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/FPSInputController.js' 52 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/PlatformInputController.js' 53 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonCamera.js' 54 | 'Assets/Standard Assets/Character Controllers/Sources/Scripts/ThirdPersonController.js' 55 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-e1e804580362b4007adb0205f51661ac: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-e8880adadba334f12bc7b69df34a07aa: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -i:UnityEngine 4 | -i:System.Collections 5 | -base:UnityEngine.MonoBehaviour 6 | -nowarn:BCW0016 7 | -nowarn:BCW0003 8 | -method:Main 9 | -out:Temp/Assembly-UnityScript.dll 10 | -x-type-inference-rule-attribute:UnityEngineInternal.TypeInferenceRuleAttribute 11 | -define:UNITY_4_6_1 12 | -define:UNITY_4_6 13 | -define:UNITY_STANDALONE_WIN 14 | -define:ENABLE_MICROPHONE 15 | -define:ENABLE_TEXTUREID_MAP 16 | -define:ENABLE_UNITYEVENTS 17 | -define:ENABLE_NEW_HIERARCHY 18 | -define:ENABLE_AUDIO_FMOD 19 | -define:UNITY_STANDALONE 20 | -define:ENABLE_MONO 21 | -define:ENABLE_TERRAIN 22 | -define:ENABLE_SUBSTANCE 23 | -define:ENABLE_GENERICS 24 | -define:INCLUDE_WP8SUPPORT 25 | -define:ENABLE_MOVIES 26 | -define:ENABLE_WWW 27 | -define:ENABLE_IMAGEEFFECTS 28 | -define:ENABLE_4_6_FEATURES 29 | -define:INCLUDE_WP_BLUE_SUPPORT 30 | -define:ENABLE_WEBCAM 31 | -define:INCLUDE_METROSUPPORT 32 | -define:RENDER_SOFTWARE_CURSOR 33 | -define:ENABLE_NETWORK 34 | -define:ENABLE_PHYSICS 35 | -define:ENABLE_CACHING 36 | -define:ENABLE_CLOTH 37 | -define:ENABLE_2D_PHYSICS 38 | -define:ENABLE_SHADOWS 39 | -define:ENABLE_AUDIO 40 | -define:ENABLE_NAVMESH_CARVING 41 | -define:ENABLE_DUCK_TYPING 42 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 43 | -define:ENABLE_PROFILER 44 | -define:UNITY_EDITOR 45 | -define:UNITY_EDITOR_OSX 46 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 47 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 48 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 49 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 50 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 51 | -i:UnityEditor 52 | 'Assets/Scripts/CameraPs.js' 53 | 'Assets/Scripts/RobotUI.js' 54 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-ed3df7b0f5c80429ba30d5c3d7d25a83: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/UnityTempFile-fd8852b2770c746a5a319ee008328079: -------------------------------------------------------------------------------- 1 | -debug 2 | -target:library 3 | -nowarn:0169 4 | -out:'Temp/Assembly-CSharp.dll' 5 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' 6 | -r:'Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll' 7 | -r:'Library/ScriptAssemblies/Assembly-UnityScript-firstpass.dll' 8 | -r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/4.6.1/UnityEngine.UI.dll' 9 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' 10 | -define:UNITY_4_6_1 11 | -define:UNITY_4_6 12 | -define:UNITY_STANDALONE_WIN 13 | -define:ENABLE_MICROPHONE 14 | -define:ENABLE_TEXTUREID_MAP 15 | -define:ENABLE_UNITYEVENTS 16 | -define:ENABLE_NEW_HIERARCHY 17 | -define:ENABLE_AUDIO_FMOD 18 | -define:UNITY_STANDALONE 19 | -define:ENABLE_MONO 20 | -define:ENABLE_TERRAIN 21 | -define:ENABLE_SUBSTANCE 22 | -define:ENABLE_GENERICS 23 | -define:INCLUDE_WP8SUPPORT 24 | -define:ENABLE_MOVIES 25 | -define:ENABLE_WWW 26 | -define:ENABLE_IMAGEEFFECTS 27 | -define:ENABLE_4_6_FEATURES 28 | -define:INCLUDE_WP_BLUE_SUPPORT 29 | -define:ENABLE_WEBCAM 30 | -define:INCLUDE_METROSUPPORT 31 | -define:RENDER_SOFTWARE_CURSOR 32 | -define:ENABLE_NETWORK 33 | -define:ENABLE_PHYSICS 34 | -define:ENABLE_CACHING 35 | -define:ENABLE_CLOTH 36 | -define:ENABLE_2D_PHYSICS 37 | -define:ENABLE_SHADOWS 38 | -define:ENABLE_AUDIO 39 | -define:ENABLE_NAVMESH_CARVING 40 | -define:ENABLE_DUCK_TYPING 41 | -define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING 42 | -define:ENABLE_PROFILER 43 | -define:UNITY_EDITOR 44 | -define:UNITY_EDITOR_OSX 45 | 'Assets/Scripts/Animations.cs' 46 | 'Assets/Scripts/HealthL.cs' 47 | 'Assets/Scripts/Kill.cs' 48 | 'Assets/Scripts/Moving.cs' 49 | 'Assets/Scripts/NetworkManager.cs' 50 | 'Assets/Scripts/Spawn.cs' 51 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' 52 | -r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' 53 | -------------------------------------------------------------------------------- /MP-Mario/Temp/__BuildPlayer Backupscene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/__BuildPlayer Backupscene -------------------------------------------------------------------------------- /MP-Mario/Temp/__EditModeScene: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/__EditModeScene -------------------------------------------------------------------------------- /MP-Mario/Temp/tempFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/tempFile.res -------------------------------------------------------------------------------- /MP-Mario/Temp/tempFile.resG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/tempFile.resG -------------------------------------------------------------------------------- /MP-Mario/Temp/tempFile.resS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobias64/Mario-Multiplayer-Unity3d/006417df3761a5f8bf69c0d4079ea453ddec5d06/MP-Mario/Temp/tempFile.resS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mario-Multiplayer-Unity3d 2 | basic multiplayer mario game 3 | 4 | ##Requirements 5 | >Unity3d 4.6, Blender3d 2.73 6 | 7 | ##How To Install 8 | >Download the mp-mario folder and open mp-mario/assets/scene/mario-mp.unity 9 | 10 | 11 | ##How To Play Multi Player 12 | >once you open up the scene go to file - build and run. 13 | Once the game has loaded click start server or to join a server click refresh server list. 14 | You can play with yourself on the same computer by going back into unity and clicking file - Build. 15 | 16 | 17 | 18 | --------------------------------------------------------------------------------