Fixed particle system

This commit is contained in:
adrenalx 2016-06-26 14:34:46 -04:00
parent 7b40c51101
commit 85411dd0a3
97 changed files with 2418 additions and 48 deletions

View File

@ -45,8 +45,9 @@
</Reference> </Reference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Assets\Scripts\CameraShaking.cs" />
<Compile Include="Assets\Scripts\FloorTileGenerator.cs" /> <Compile Include="Assets\Scripts\FloorTileGenerator.cs" />
<Compile Include="Assets\Scripts\JumpingPlayer.cs" /> <Compile Include="Assets\Scripts\HeadbobberWalking.cs" />
<Compile Include="Assets\Scripts\PlayerMovement.cs" /> <Compile Include="Assets\Scripts\PlayerMovement.cs" />
<Compile Include="Assets\Scripts\PostEffectScript.cs" /> <Compile Include="Assets\Scripts\PostEffectScript.cs" />
<Compile Include="Assets\Scripts\SeekerController.cs" /> <Compile Include="Assets\Scripts\SeekerController.cs" />

BIN
Assets/.DS_Store vendored

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7fd4e376a92c34cd7b737c3b9831c3f0
timeCreated: 1466959647
licenseType: Free
NativeFormatImporter:
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

View File

@ -1,6 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: c71b1d5a6782e430daf0ebcdf7812735 guid: c479ff957c52c400f919b9d17484cdee
timeCreated: 1466954833 timeCreated: 1466963101
licenseType: Free licenseType: Free
NativeFormatImporter: NativeFormatImporter:
userData: userData:

BIN
Assets/Scripts/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -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;
// }
}
}
}

View File

@ -1,6 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: eab2a77c206aca744b77408a74d86ceb guid: 6337fbb36bad04192a2032952d9a4fca
timeCreated: 1466884750 timeCreated: 1466959395
licenseType: Free licenseType: Free
MonoImporter: MonoImporter:
serializedVersion: 2 serializedVersion: 2

View File

@ -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;
}
}

View File

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

View File

@ -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<Rigidbody>();
}
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);
}
}
}

View File

@ -56,7 +56,7 @@ public class PlayerMovement : MonoBehaviour
if (Input.GetButtonDown("Jump") && isGrounded) if (Input.GetButtonDown("Jump") && isGrounded)
{ {
characterRigidBody.AddForce(0, jump * boostFactor, 0); characterRigidBody.velocity += new Vector3(0, jump * boostFactor, 0);
isGrounded = false; isGrounded = false;
} }
} }

BIN
Assets/Sounds/.DS_Store vendored Normal file

Binary file not shown.

BIN
Assets/Textures/.DS_Store vendored Normal file

Binary file not shown.

View File

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 48 KiB

View File

@ -1,6 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: f50297ba6a23a42d3be18cbe1d039d47 guid: 3480fde259c1946069329b178d8e4217
timeCreated: 1466953522 timeCreated: 1466965066
licenseType: Free licenseType: Free
TextureImporter: TextureImporter:
fileIDToRecycleName: {} fileIDToRecycleName: {}

View File

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.5 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -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 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 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 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

Binary file not shown.

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

View File

@ -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'

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.