diff --git a/Assembly-CSharp.csproj b/Assembly-CSharp.csproj index a66977e..f488240 100644 --- a/Assembly-CSharp.csproj +++ b/Assembly-CSharp.csproj @@ -45,8 +45,9 @@ + - + diff --git a/Assets/.DS_Store b/Assets/.DS_Store index 5008ddf..886bf93 100644 Binary files a/Assets/.DS_Store and b/Assets/.DS_Store differ diff --git a/Assets/Materials/FrictionForce.physicMaterial b/Assets/Materials/FrictionForce.physicMaterial new file mode 100644 index 0000000..01d0a6c Binary files /dev/null and b/Assets/Materials/FrictionForce.physicMaterial differ diff --git a/Assets/Materials/FrictionForce.physicMaterial.meta b/Assets/Materials/FrictionForce.physicMaterial.meta new file mode 100644 index 0000000..f330ad8 --- /dev/null +++ b/Assets/Materials/FrictionForce.physicMaterial.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7fd4e376a92c34cd7b737c3b9831c3f0 +timeCreated: 1466959647 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Materials/ParticleSmokeBlack.mat b/Assets/Materials/ParticleSmokeBlack.mat index 31fac29..465bde4 100644 Binary files a/Assets/Materials/ParticleSmokeBlack.mat and b/Assets/Materials/ParticleSmokeBlack.mat differ diff --git a/Assets/Prefabs/Character.prefab b/Assets/Prefabs/Character.prefab index fd2a526..3e3a4d1 100644 Binary files a/Assets/Prefabs/Character.prefab and b/Assets/Prefabs/Character.prefab differ diff --git a/Assets/Prefabs/Character.prefab.meta b/Assets/Prefabs/Character.prefab.meta index 5b9519d..8af858c 100644 --- a/Assets/Prefabs/Character.prefab.meta +++ b/Assets/Prefabs/Character.prefab.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: c71b1d5a6782e430daf0ebcdf7812735 -timeCreated: 1466954833 +guid: c479ff957c52c400f919b9d17484cdee +timeCreated: 1466963101 licenseType: Free NativeFormatImporter: userData: diff --git a/Assets/Scripts/.DS_Store b/Assets/Scripts/.DS_Store new file mode 100644 index 0000000..c439b8d Binary files /dev/null and b/Assets/Scripts/.DS_Store differ diff --git a/Assets/Scripts/CameraShaking.cs b/Assets/Scripts/CameraShaking.cs new file mode 100644 index 0000000..8a6be3c --- /dev/null +++ b/Assets/Scripts/CameraShaking.cs @@ -0,0 +1,86 @@ +using UnityEngine; +using System.Collections; + +public class CameraShaking : MonoBehaviour +{ + + public Rigidbody player; + public bool isStoped; + public float magnitude = 0f; + //private float hauteurMax = 0.75f; + private float intesity = 0f; + private float shake = 0.05f; + private float timeShaking = 10f; + private float timeBreathing = 0f; + Vector3 pos; + Transform camera; + + // Use this for initialization + void Awake() + { + if (camera == null) + { + camera = GetComponent(typeof(Transform)) as Transform; + } + } + + void OnEnable() + { + pos = camera.localPosition; + } + + void FixedUpdate() + { + + if (player.velocity.magnitude == 0) + { + timeBreathing += Time.deltaTime; + float y = ((Mathf.Cos(timeBreathing)) / 4) + 0.85f; + + if (y < 0) + { + y = Mathf.Abs(y); + } + else if (y > 1) + { + float temp = y; + y -= (temp - 1) * 2; + } + camera.localPosition = new Vector3(0, y, 0); +// if (timeShaking > 5 && timeShaking < 11) +// { +// timeBreathing += Time.deltaTime; +// float y = ((Mathf.Cos(timeBreathing)) /4) + 0.85f; +// +// if (y < 0) +// { +// y = Mathf.Abs(y); +// } +// else if (y > 1) +// { +// float temp = y; +// y -= (temp - 1)*2; +// } +// camera.localPosition = new Vector3(0, y, 0); +// Debug.LogWarning("y : " + y); +// Debug.Log(camera.localPosition); +// timeShaking -= Time.deltaTime; +// } +// +// else if (timeShaking > 0 && timeShaking < 5) +// { +// camera.localPosition = pos + Random.insideUnitSphere * intesity; +// +// timeShaking -= Time.deltaTime; +// intesity += Time.deltaTime * shake; +// } +// +// else +// { +// timeShaking = 0f; +// camera.localPosition = pos; +// } + } + + } +} diff --git a/Assets/Scripts/JumpingPlayer.cs.meta b/Assets/Scripts/CameraShaking.cs.meta similarity index 76% rename from Assets/Scripts/JumpingPlayer.cs.meta rename to Assets/Scripts/CameraShaking.cs.meta index bf31048..216e9b2 100644 --- a/Assets/Scripts/JumpingPlayer.cs.meta +++ b/Assets/Scripts/CameraShaking.cs.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: eab2a77c206aca744b77408a74d86ceb -timeCreated: 1466884750 +guid: 6337fbb36bad04192a2032952d9a4fca +timeCreated: 1466959395 licenseType: Free MonoImporter: serializedVersion: 2 diff --git a/Assets/Scripts/HeadbobberWalking.cs b/Assets/Scripts/HeadbobberWalking.cs new file mode 100644 index 0000000..470ef25 --- /dev/null +++ b/Assets/Scripts/HeadbobberWalking.cs @@ -0,0 +1,47 @@ +using UnityEngine; +using System.Collections; + +public class HeadbobberWalking : MonoBehaviour +{ + + private float timer = 0.0f; + public float bobbingSpeed = 0.18f; + public float bobbingAmount = 0.2f; + public float midpoint = 0.0f; + + void Update() + { + float waveslice = 0.0f; + float horizontal = Input.GetAxis("Horizontal"); + float vertical = Input.GetAxis("Vertical"); + if (Mathf.Abs(horizontal) == 0 && Mathf.Abs(vertical) == 0) + { + timer = 0.0f; + } + else + { + waveslice = Mathf.Sin(timer); + timer = timer + bobbingSpeed; + if (timer > Mathf.PI * 2) + { + timer = timer - (Mathf.PI * 2); + } + } + + Vector3 v3T = transform.localPosition; + if (waveslice != 0) + { + float translateChange = waveslice * bobbingAmount; + float totalAxes = Mathf.Abs(horizontal) + Mathf.Abs(vertical); + totalAxes = Mathf.Clamp(totalAxes, 0.0f, 1.0f); + translateChange = totalAxes * translateChange; + v3T.y = midpoint + translateChange; + } + else + { + //v3T.y = midpoint; + } + transform.localPosition = v3T; + + } +} \ No newline at end of file diff --git a/Assets/Scripts/HeadbobberWalking.cs.meta b/Assets/Scripts/HeadbobberWalking.cs.meta new file mode 100644 index 0000000..68530e7 --- /dev/null +++ b/Assets/Scripts/HeadbobberWalking.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 229b0de9afbf846fc8b60cc693d99d88 +timeCreated: 1466959395 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/JumpingPlayer.cs b/Assets/Scripts/JumpingPlayer.cs deleted file mode 100644 index 9e72a95..0000000 --- a/Assets/Scripts/JumpingPlayer.cs +++ /dev/null @@ -1,40 +0,0 @@ -using UnityEngine; -using System.Collections; - -public class JumpingPlayer : MonoBehaviour -{ - - public float jump = 0f; - private Rigidbody rb; - private bool isGrounded; - Vector3 up; - - - void Start() - { - up = new Vector3(); - rb = GetComponent(); - } - - void OnCollisionEnter(Collision collision) - { - if (collision.gameObject.tag == "Ground") - { - isGrounded = true; - Debug.Log(isGrounded); - } - } - - // Update is called once per frame - void FixedUpdate() - { - if (Input.GetButtonDown("Jump") && isGrounded) - { - up = rb.velocity; - up.y = jump; - rb.velocity = up; - isGrounded = false; - Debug.Log(isGrounded); - } - } -} diff --git a/Assets/Scripts/PlayerMovement.cs b/Assets/Scripts/PlayerMovement.cs index 34f238b..0a52889 100644 --- a/Assets/Scripts/PlayerMovement.cs +++ b/Assets/Scripts/PlayerMovement.cs @@ -56,7 +56,7 @@ public class PlayerMovement : MonoBehaviour if (Input.GetButtonDown("Jump") && isGrounded) { - characterRigidBody.AddForce(0, jump * boostFactor, 0); + characterRigidBody.velocity += new Vector3(0, jump * boostFactor, 0); isGrounded = false; } } diff --git a/Assets/Sounds/.DS_Store b/Assets/Sounds/.DS_Store new file mode 100644 index 0000000..5c3f25e Binary files /dev/null and b/Assets/Sounds/.DS_Store differ diff --git a/Assets/Textures/.DS_Store b/Assets/Textures/.DS_Store new file mode 100644 index 0000000..980102b Binary files /dev/null and b/Assets/Textures/.DS_Store differ diff --git a/Assets/Textures/ParticleCloudBlack.png b/Assets/Textures/ParticleCloudBlack 1.png similarity index 100% rename from Assets/Textures/ParticleCloudBlack.png rename to Assets/Textures/ParticleCloudBlack 1.png diff --git a/Assets/Textures/ParticleCloudBlack.png.meta b/Assets/Textures/ParticleCloudBlack 1.png.meta similarity index 94% rename from Assets/Textures/ParticleCloudBlack.png.meta rename to Assets/Textures/ParticleCloudBlack 1.png.meta index 25b9572..4f128c4 100644 --- a/Assets/Textures/ParticleCloudBlack.png.meta +++ b/Assets/Textures/ParticleCloudBlack 1.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: f50297ba6a23a42d3be18cbe1d039d47 -timeCreated: 1466953522 +guid: 3480fde259c1946069329b178d8e4217 +timeCreated: 1466965066 licenseType: Free TextureImporter: fileIDToRecycleName: {} diff --git a/Library/CrashedAssetImports.txt b/Library/CrashedAssetImports.txt new file mode 100644 index 0000000..e69de29 diff --git a/Library/CurrentMaximizeLayout.dwlt b/Library/CurrentMaximizeLayout.dwlt index eb83535..4db9cc7 100644 Binary files a/Library/CurrentMaximizeLayout.dwlt and b/Library/CurrentMaximizeLayout.dwlt differ diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index d454352..5270dfa 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 522e27b..30550d1 100755 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb index e8d63fb..ff672aa 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb and b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb differ diff --git a/Library/ShaderCache/0/0a6a9a01a1ae9f9fa5cf5882094a8a66.bin b/Library/ShaderCache/0/0a6a9a01a1ae9f9fa5cf5882094a8a66.bin new file mode 100644 index 0000000..1c06b2b Binary files /dev/null and b/Library/ShaderCache/0/0a6a9a01a1ae9f9fa5cf5882094a8a66.bin differ diff --git a/Library/ShaderCache/3/3f37dc302526e8d81327f29f5c429d23.bin b/Library/ShaderCache/3/3f37dc302526e8d81327f29f5c429d23.bin new file mode 100644 index 0000000..b58e1e9 Binary files /dev/null and b/Library/ShaderCache/3/3f37dc302526e8d81327f29f5c429d23.bin differ diff --git a/Library/ShaderCache/4/412ae1e4999720aa3d27b4077c884e29.bin b/Library/ShaderCache/4/412ae1e4999720aa3d27b4077c884e29.bin new file mode 100644 index 0000000..e4b6733 Binary files /dev/null and b/Library/ShaderCache/4/412ae1e4999720aa3d27b4077c884e29.bin differ diff --git a/Library/ShaderCache/4/4e48ae11f256c24ec65860cb624120b1.bin b/Library/ShaderCache/4/4e48ae11f256c24ec65860cb624120b1.bin new file mode 100644 index 0000000..b82512e Binary files /dev/null and b/Library/ShaderCache/4/4e48ae11f256c24ec65860cb624120b1.bin differ diff --git a/Library/ShaderCache/a/a580f642ec66ade78e61d69569320ed8.bin b/Library/ShaderCache/a/a580f642ec66ade78e61d69569320ed8.bin new file mode 100644 index 0000000..fb8f7fa Binary files /dev/null and b/Library/ShaderCache/a/a580f642ec66ade78e61d69569320ed8.bin differ diff --git a/Library/ShaderCache/a/a8e9902f7ad7072ff3b3f213ac930a46.bin b/Library/ShaderCache/a/a8e9902f7ad7072ff3b3f213ac930a46.bin new file mode 100644 index 0000000..5089760 Binary files /dev/null and b/Library/ShaderCache/a/a8e9902f7ad7072ff3b3f213ac930a46.bin differ diff --git a/Library/ShaderCache/b/b53191f6aa40675f6cbac159e10e3815.bin b/Library/ShaderCache/b/b53191f6aa40675f6cbac159e10e3815.bin new file mode 100644 index 0000000..b58e1e9 Binary files /dev/null and b/Library/ShaderCache/b/b53191f6aa40675f6cbac159e10e3815.bin differ diff --git a/Library/ShaderCache/c/c2a9ce11c01cb575be077c46f615caeb.bin b/Library/ShaderCache/c/c2a9ce11c01cb575be077c46f615caeb.bin new file mode 100644 index 0000000..b58e1e9 Binary files /dev/null and b/Library/ShaderCache/c/c2a9ce11c01cb575be077c46f615caeb.bin differ diff --git a/Library/ShaderCache/d/d30b60246c082ec6b9be43e9eb13d474.bin b/Library/ShaderCache/d/d30b60246c082ec6b9be43e9eb13d474.bin new file mode 100644 index 0000000..c333e27 Binary files /dev/null and b/Library/ShaderCache/d/d30b60246c082ec6b9be43e9eb13d474.bin differ diff --git a/Library/ShaderCache/d/d5cbed700a8bac2e16b083ee7f25d9fc.bin b/Library/ShaderCache/d/d5cbed700a8bac2e16b083ee7f25d9fc.bin new file mode 100644 index 0000000..e8fb1b6 Binary files /dev/null and b/Library/ShaderCache/d/d5cbed700a8bac2e16b083ee7f25d9fc.bin differ diff --git a/Library/assetDatabase3 b/Library/assetDatabase3 index 8707fbe..68f1fc5 100644 Binary files a/Library/assetDatabase3 and b/Library/assetDatabase3 differ diff --git a/Library/metadata/00/00000000000000003000000000000000 b/Library/metadata/00/00000000000000003000000000000000 index 4fb7456..8a9ae5a 100644 Binary files a/Library/metadata/00/00000000000000003000000000000000 and b/Library/metadata/00/00000000000000003000000000000000 differ diff --git a/Library/metadata/00/00000000000000004000000000000000 b/Library/metadata/00/00000000000000004000000000000000 index a6bd227..7562ebf 100644 Binary files a/Library/metadata/00/00000000000000004000000000000000 and b/Library/metadata/00/00000000000000004000000000000000 differ diff --git a/Library/metadata/13/137605d7073654e85b872038c98208ad b/Library/metadata/13/137605d7073654e85b872038c98208ad new file mode 100644 index 0000000..534b481 Binary files /dev/null and b/Library/metadata/13/137605d7073654e85b872038c98208ad differ diff --git a/Library/metadata/13/137605d7073654e85b872038c98208ad.info b/Library/metadata/13/137605d7073654e85b872038c98208ad.info new file mode 100644 index 0000000..92beb20 Binary files /dev/null and b/Library/metadata/13/137605d7073654e85b872038c98208ad.info differ diff --git a/Library/metadata/13/137605d7073654e85b872038c98208ad.resource b/Library/metadata/13/137605d7073654e85b872038c98208ad.resource new file mode 100644 index 0000000..edf697c Binary files /dev/null and b/Library/metadata/13/137605d7073654e85b872038c98208ad.resource differ diff --git a/Library/metadata/ea/eab2a77c206aca744b77408a74d86ceb b/Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88 similarity index 70% rename from Library/metadata/ea/eab2a77c206aca744b77408a74d86ceb rename to Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88 index a014508..f50cb39 100644 Binary files a/Library/metadata/ea/eab2a77c206aca744b77408a74d86ceb and b/Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88 differ diff --git a/Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88.info b/Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88.info new file mode 100644 index 0000000..71fd9f9 Binary files /dev/null and b/Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88.info differ diff --git a/Library/metadata/f5/f50297ba6a23a42d3be18cbe1d039d47 b/Library/metadata/34/3480fde259c1946069329b178d8e4217 similarity index 99% rename from Library/metadata/f5/f50297ba6a23a42d3be18cbe1d039d47 rename to Library/metadata/34/3480fde259c1946069329b178d8e4217 index 9e32001..81ce196 100644 Binary files a/Library/metadata/f5/f50297ba6a23a42d3be18cbe1d039d47 and b/Library/metadata/34/3480fde259c1946069329b178d8e4217 differ diff --git a/Library/metadata/f5/f50297ba6a23a42d3be18cbe1d039d47.info b/Library/metadata/34/3480fde259c1946069329b178d8e4217.info similarity index 98% rename from Library/metadata/f5/f50297ba6a23a42d3be18cbe1d039d47.info rename to Library/metadata/34/3480fde259c1946069329b178d8e4217.info index e4d5c82..8d4f5d9 100644 Binary files a/Library/metadata/f5/f50297ba6a23a42d3be18cbe1d039d47.info and b/Library/metadata/34/3480fde259c1946069329b178d8e4217.info differ diff --git a/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f b/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f index 31df180..fd2525c 100644 Binary files a/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f and b/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f differ diff --git a/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.info b/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.info index 0bd935d..a3f1a11 100644 Binary files a/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.info and b/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.info differ diff --git a/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.resource b/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.resource index 069c8c0..4e57d76 100644 Binary files a/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.resource and b/Library/metadata/5a/5ab91a2740f8b4476a8946f20def321f.resource differ diff --git a/Library/metadata/63/6337fbb36bad04192a2032952d9a4fca b/Library/metadata/63/6337fbb36bad04192a2032952d9a4fca new file mode 100644 index 0000000..a6b6986 Binary files /dev/null and b/Library/metadata/63/6337fbb36bad04192a2032952d9a4fca differ diff --git a/Library/metadata/ea/eab2a77c206aca744b77408a74d86ceb.info b/Library/metadata/63/6337fbb36bad04192a2032952d9a4fca.info similarity index 72% rename from Library/metadata/ea/eab2a77c206aca744b77408a74d86ceb.info rename to Library/metadata/63/6337fbb36bad04192a2032952d9a4fca.info index 1878b76..9dc2665 100644 Binary files a/Library/metadata/ea/eab2a77c206aca744b77408a74d86ceb.info and b/Library/metadata/63/6337fbb36bad04192a2032952d9a4fca.info differ diff --git a/Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0 b/Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0 new file mode 100644 index 0000000..38014a2 Binary files /dev/null and b/Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0 differ diff --git a/Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0.info b/Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0.info new file mode 100644 index 0000000..27b9ae9 Binary files /dev/null and b/Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0.info differ diff --git a/Library/metadata/a3/a311af8d30e8248039087421007391e9 b/Library/metadata/a3/a311af8d30e8248039087421007391e9 deleted file mode 100644 index a2baeee..0000000 Binary files a/Library/metadata/a3/a311af8d30e8248039087421007391e9 and /dev/null differ diff --git a/Library/metadata/a3/a311af8d30e8248039087421007391e9.info b/Library/metadata/a3/a311af8d30e8248039087421007391e9.info deleted file mode 100644 index dbf8971..0000000 Binary files a/Library/metadata/a3/a311af8d30e8248039087421007391e9.info and /dev/null differ diff --git a/Library/metadata/a3/a311af8d30e8248039087421007391e9.resource b/Library/metadata/a3/a311af8d30e8248039087421007391e9.resource deleted file mode 100644 index 4d231fb..0000000 Binary files a/Library/metadata/a3/a311af8d30e8248039087421007391e9.resource and /dev/null differ diff --git a/Library/metadata/c7/c71b1d5a6782e430daf0ebcdf7812735 b/Library/metadata/c4/c479ff957c52c400f919b9d17484cdee similarity index 96% rename from Library/metadata/c7/c71b1d5a6782e430daf0ebcdf7812735 rename to Library/metadata/c4/c479ff957c52c400f919b9d17484cdee index 1683ceb..a82fca3 100644 Binary files a/Library/metadata/c7/c71b1d5a6782e430daf0ebcdf7812735 and b/Library/metadata/c4/c479ff957c52c400f919b9d17484cdee differ diff --git a/Library/metadata/c7/c71b1d5a6782e430daf0ebcdf7812735.info b/Library/metadata/c4/c479ff957c52c400f919b9d17484cdee.info similarity index 91% rename from Library/metadata/c7/c71b1d5a6782e430daf0ebcdf7812735.info rename to Library/metadata/c4/c479ff957c52c400f919b9d17484cdee.info index a46a5b2..01b2c5e 100644 Binary files a/Library/metadata/c7/c71b1d5a6782e430daf0ebcdf7812735.info and b/Library/metadata/c4/c479ff957c52c400f919b9d17484cdee.info differ diff --git a/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652 b/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652 index e367aed..0ee4ce3 100644 Binary files a/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652 and b/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652 differ diff --git a/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.info b/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.info index a37a635..07cd364 100644 Binary files a/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.info and b/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.info differ diff --git a/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.resource b/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.resource index 00a8b42..26061a1 100644 Binary files a/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.resource and b/Library/metadata/ca/ca7a9e4a3d02a46a7ac93ffc34907652.resource differ diff --git a/Library/metadata/d2/d24f7c611b3f04885b58a14afa7e5e87.info b/Library/metadata/d2/d24f7c611b3f04885b58a14afa7e5e87.info index 4a82488..149fada 100644 Binary files a/Library/metadata/d2/d24f7c611b3f04885b58a14afa7e5e87.info and b/Library/metadata/d2/d24f7c611b3f04885b58a14afa7e5e87.info differ diff --git a/Library/metadata/e0/e02d4438d816e344abb40991894780c3 b/Library/metadata/e0/e02d4438d816e344abb40991894780c3 index 20ada08..44dd214 100644 Binary files a/Library/metadata/e0/e02d4438d816e344abb40991894780c3 and b/Library/metadata/e0/e02d4438d816e344abb40991894780c3 differ diff --git a/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263 b/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263 index 2ae3bb0..c0e0844 100644 Binary files a/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263 and b/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263 differ diff --git a/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.info b/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.info index 97fa47f..7045e9b 100644 Binary files a/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.info and b/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.info differ diff --git a/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.resource b/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.resource index 4c38a5a..4e5b2da 100644 Binary files a/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.resource and b/Library/metadata/eb/ebefe735b9b904d4dab6e70b96f6f263.resource differ diff --git a/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57 b/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57 index d955484..038fb7c 100644 Binary files a/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57 and b/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57 differ diff --git a/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.info b/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.info index 67efd8c..34af11c 100644 Binary files a/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.info and b/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.info differ diff --git a/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.resource b/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.resource index 75bf27b..4b5e1ac 100644 Binary files a/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.resource and b/Library/metadata/ec/ec4c9ed8ff0e9482e9bf57fe2474ae57.resource differ diff --git a/Library/shadercompiler-UnityShaderCompiler0.log b/Library/shadercompiler-UnityShaderCompiler0.log index add9b4e..fbbf92d 100644 --- a/Library/shadercompiler-UnityShaderCompiler0.log +++ b/Library/shadercompiler-UnityShaderCompiler0.log @@ -44,3 +44,23 @@ Cmd: compileSnippet api=15 type=0 insize=927 outsize=7615 kw=DIRECTIONAL SHADOWS_OFF _ALPHAPREMULTIPLY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 Cmd: compileSnippet api=15 type=1 insize=927 outsize=0 kw=DIRECTIONAL SHADOWS_OFF _ALPHAPREMULTIPLY_ON pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=0 insize=965 outsize=12711 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=1 insize=965 outsize=0 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=0 insize=923 outsize=7250 kw=DIRECTIONAL SHADOWS_OFF pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=1 insize=923 outsize=0 kw=DIRECTIONAL SHADOWS_OFF pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=0 insize=2773 outsize=6021 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=1 insize=2773 outsize=0 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=0 insize=966 outsize=1149 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=1 insize=966 outsize=0 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=0 insize=1470 outsize=1128 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 +Cmd: compileSnippet + api=15 type=1 insize=1470 outsize=0 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING SHADER_API_DESKTOP ok=1 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset index 3509455..17f46b6 100644 Binary files a/ProjectSettings/TagManager.asset and b/ProjectSettings/TagManager.asset differ diff --git a/Temp/UnityTempFile-03d98af05c5924bd7973949f0e19d663 b/Temp/UnityTempFile-03d98af05c5924bd7973949f0e19d663 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-03d98af05c5924bd7973949f0e19d663 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-087bf67da5dd3416d81a6118fa69041f b/Temp/UnityTempFile-087bf67da5dd3416d81a6118fa69041f new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-087bf67da5dd3416d81a6118fa69041f @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-10cea84df0c8a43deb36b3d95abd3ce0 b/Temp/UnityTempFile-10cea84df0c8a43deb36b3d95abd3ce0 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-10cea84df0c8a43deb36b3d95abd3ce0 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-1becfa20300eb439ba7beed66d1e69b0 b/Temp/UnityTempFile-1becfa20300eb439ba7beed66d1e69b0 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-1becfa20300eb439ba7beed66d1e69b0 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-2787ebd9b6c3c42feb1a379deeab54fd b/Temp/UnityTempFile-2787ebd9b6c3c42feb1a379deeab54fd new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-2787ebd9b6c3c42feb1a379deeab54fd @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-2ee15bcd4d91d4f279611005d3af70b5 b/Temp/UnityTempFile-2ee15bcd4d91d4f279611005d3af70b5 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-2ee15bcd4d91d4f279611005d3af70b5 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-30111edf6c1d2409092ed4d4b03da2c8 b/Temp/UnityTempFile-30111edf6c1d2409092ed4d4b03da2c8 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-30111edf6c1d2409092ed4d4b03da2c8 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-32ae26cb5329240a187886a440f6a80e b/Temp/UnityTempFile-32ae26cb5329240a187886a440f6a80e new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-32ae26cb5329240a187886a440f6a80e @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-53179bc4c53374fdcac07644e39c863d b/Temp/UnityTempFile-53179bc4c53374fdcac07644e39c863d new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-53179bc4c53374fdcac07644e39c863d @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-63dc34d2600be46c98288a9b713e7921 b/Temp/UnityTempFile-63dc34d2600be46c98288a9b713e7921 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-63dc34d2600be46c98288a9b713e7921 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-68f1d0a585afe47829cbc67e235bbeeb b/Temp/UnityTempFile-68f1d0a585afe47829cbc67e235bbeeb new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-68f1d0a585afe47829cbc67e235bbeeb @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-6b7999db79001470a8fe756d9f6fa0c7 b/Temp/UnityTempFile-6b7999db79001470a8fe756d9f6fa0c7 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-6b7999db79001470a8fe756d9f6fa0c7 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-6f91ad747af16471eb2e2b707a59eb09 b/Temp/UnityTempFile-6f91ad747af16471eb2e2b707a59eb09 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-6f91ad747af16471eb2e2b707a59eb09 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-80ea5a6c047d0469ea83536731474aff b/Temp/UnityTempFile-80ea5a6c047d0469ea83536731474aff new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-80ea5a6c047d0469ea83536731474aff @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-8862a94d9d77849d99c84f7228ebf03a b/Temp/UnityTempFile-8862a94d9d77849d99c84f7228ebf03a new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-8862a94d9d77849d99c84f7228ebf03a @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-c8c631018b8a048a5bae0420cfa8fdbd b/Temp/UnityTempFile-c8c631018b8a048a5bae0420cfa8fdbd new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-c8c631018b8a048a5bae0420cfa8fdbd @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-ca2214067551546bdacf566af0ff42e6 b/Temp/UnityTempFile-ca2214067551546bdacf566af0ff42e6 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-ca2214067551546bdacf566af0ff42e6 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-cff92921a2eb34f35b85895c2800420d b/Temp/UnityTempFile-cff92921a2eb34f35b85895c2800420d new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-cff92921a2eb34f35b85895c2800420d @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-d9b34847cddbf4853b225996c92fa994 b/Temp/UnityTempFile-d9b34847cddbf4853b225996c92fa994 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-d9b34847cddbf4853b225996c92fa994 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-e3e798465f76f4c7c9bcaf6f5d5ac62e b/Temp/UnityTempFile-e3e798465f76f4c7c9bcaf6f5d5ac62e new file mode 100644 index 0000000..b468ea5 --- /dev/null +++ b/Temp/UnityTempFile-e3e798465f76f4c7c9bcaf6f5d5ac62e @@ -0,0 +1,94 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/JumpingPlayer.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-e9178e17a15e64854a8e6ba2192ecee4 b/Temp/UnityTempFile-e9178e17a15e64854a8e6ba2192ecee4 new file mode 100644 index 0000000..0c15747 --- /dev/null +++ b/Temp/UnityTempFile-e9178e17a15e64854a8e6ba2192ecee4 @@ -0,0 +1,93 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-f0986bfeda1194501baf738a95e28805 b/Temp/UnityTempFile-f0986bfeda1194501baf738a95e28805 new file mode 100644 index 0000000..b468ea5 --- /dev/null +++ b/Temp/UnityTempFile-f0986bfeda1194501baf738a95e28805 @@ -0,0 +1,94 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/JumpingPlayer.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-f2a245acd72904f9e89b97a9a6e75b30 b/Temp/UnityTempFile-f2a245acd72904f9e89b97a9a6e75b30 new file mode 100644 index 0000000..b468ea5 --- /dev/null +++ b/Temp/UnityTempFile-f2a245acd72904f9e89b97a9a6e75b30 @@ -0,0 +1,94 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/JumpingPlayer.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-f55d81b0bc1e447e2a348d36c160f2ea b/Temp/UnityTempFile-f55d81b0bc1e447e2a348d36c160f2ea new file mode 100644 index 0000000..b468ea5 --- /dev/null +++ b/Temp/UnityTempFile-f55d81b0bc1e447e2a348d36c160f2ea @@ -0,0 +1,94 @@ +-debug +-target:library +-nowarn:0169 +-out:'Temp/Assembly-CSharp.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEngine.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll' +-r:'/Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll' +-r:'/Applications/Unity/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll' +-define:UNITY_5_3_OR_NEWER +-define:UNITY_5_3_5 +-define:UNITY_5_3 +-define:UNITY_5 +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_AUDIO +-define:ENABLE_CACHING +-define:ENABLE_CLOTH +-define:ENABLE_DUCK_TYPING +-define:ENABLE_FRAME_DEBUGGER +-define:ENABLE_GENERICS +-define:ENABLE_HOME_SCREEN +-define:ENABLE_IMAGEEFFECTS +-define:ENABLE_LIGHT_PROBES_LEGACY +-define:ENABLE_MICROPHONE +-define:ENABLE_MULTIPLE_DISPLAYS +-define:ENABLE_PHYSICS +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITERENDERER_FLIPPING +-define:ENABLE_SPRITES +-define:ENABLE_SPRITE_POLYGON +-define:ENABLE_TERRAIN +-define:ENABLE_RAKNET +-define:ENABLE_UNET +-define:ENABLE_UNITYEVENTS +-define:ENABLE_VR +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_CLOUD_SERVICES +-define:ENABLE_CLOUD_SERVICES_ADS +-define:ENABLE_CLOUD_HUB +-define:ENABLE_CLOUD_PROJECT_ID +-define:ENABLE_CLOUD_SERVICES_PURCHASING +-define:ENABLE_CLOUD_SERVICES_ANALYTICS +-define:ENABLE_CLOUD_SERVICES_UNET +-define:ENABLE_CLOUD_SERVICES_BUILD +-define:ENABLE_CLOUD_LICENSE +-define:ENABLE_EDITOR_METRICS +-define:ENABLE_EDITOR_METRICS_CACHING +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:INCLUDE_DIRECTX12 +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:ENABLE_LOCALIZATION +-define:ENABLE_ANDROID_ATLAS_ETC1_COMPRESSION +-define:ENABLE_EDITOR_TESTS_RUNNER +-define:UNITY_STANDALONE_WIN +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +-define:ENABLE_LOG_MIXED_STACKTRACE +-define:ENABLE_UNITYWEBREQUEST +-define:ENABLE_EVENT_QUEUE +-define:ENABLE_CLUSTERINPUT +-define:ENABLE_WEBSOCKET_HOST +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:DEBUG +-define:TRACE +-define:UNITY_ASSERTIONS +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/CameraShaking.cs' +'Assets/Scripts/FloorTileGenerator.cs' +'Assets/Scripts/HeadbobberWalking.cs' +'Assets/Scripts/JumpingPlayer.cs' +'Assets/Scripts/PlayerMovement.cs' +'Assets/Scripts/PostEffectScript.cs' +'Assets/Scripts/SeekerController.cs' +'Assets/Scripts/SphereMover.cs' +'Assets/Scripts/TileController.cs' +'Assets/Scripts/TimeManager.cs' +'Assets/Scripts/ViewControl.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/__Backupscenes/0.backup b/Temp/__Backupscenes/0.backup index fc2d0a6..33c6bb9 100644 Binary files a/Temp/__Backupscenes/0.backup and b/Temp/__Backupscenes/0.backup differ diff --git a/Temp/bin/Debug/Assembly-CSharp.dll b/Temp/bin/Debug/Assembly-CSharp.dll index 2e4f567..687bdb7 100755 Binary files a/Temp/bin/Debug/Assembly-CSharp.dll and b/Temp/bin/Debug/Assembly-CSharp.dll differ diff --git a/Temp/bin/Debug/Assembly-CSharp.dll.mdb b/Temp/bin/Debug/Assembly-CSharp.dll.mdb index 68275ec..1c34208 100644 Binary files a/Temp/bin/Debug/Assembly-CSharp.dll.mdb and b/Temp/bin/Debug/Assembly-CSharp.dll.mdb differ diff --git a/obj/Debug/Assembly-CSharp.dll b/obj/Debug/Assembly-CSharp.dll index 2e4f567..687bdb7 100755 Binary files a/obj/Debug/Assembly-CSharp.dll and b/obj/Debug/Assembly-CSharp.dll differ diff --git a/obj/Debug/Assembly-CSharp.dll.mdb b/obj/Debug/Assembly-CSharp.dll.mdb index 68275ec..1c34208 100644 Binary files a/obj/Debug/Assembly-CSharp.dll.mdb and b/obj/Debug/Assembly-CSharp.dll.mdb differ