Fixed particle system
@ -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
BIN
Assets/Materials/FrictionForce.physicMaterial
Normal file
8
Assets/Materials/FrictionForce.physicMaterial.meta
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 7fd4e376a92c34cd7b737c3b9831c3f0
|
||||||
|
timeCreated: 1466959647
|
||||||
|
licenseType: Free
|
||||||
|
NativeFormatImporter:
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@ -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
86
Assets/Scripts/CameraShaking.cs
Normal 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;
|
||||||
|
// }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -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
|
||||||
47
Assets/Scripts/HeadbobberWalking.cs
Normal 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;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
12
Assets/Scripts/HeadbobberWalking.cs.meta
Normal 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:
|
||||||
@ -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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -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
BIN
Assets/Textures/.DS_Store
vendored
Normal file
|
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
@ -1,6 +1,6 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f50297ba6a23a42d3be18cbe1d039d47
|
guid: 3480fde259c1946069329b178d8e4217
|
||||||
timeCreated: 1466953522
|
timeCreated: 1466965066
|
||||||
licenseType: Free
|
licenseType: Free
|
||||||
TextureImporter:
|
TextureImporter:
|
||||||
fileIDToRecycleName: {}
|
fileIDToRecycleName: {}
|
||||||
0
Library/CrashedAssetImports.txt
Normal file
BIN
Library/ShaderCache/0/0a6a9a01a1ae9f9fa5cf5882094a8a66.bin
Normal file
BIN
Library/ShaderCache/3/3f37dc302526e8d81327f29f5c429d23.bin
Normal file
BIN
Library/ShaderCache/4/412ae1e4999720aa3d27b4077c884e29.bin
Normal file
BIN
Library/ShaderCache/4/4e48ae11f256c24ec65860cb624120b1.bin
Normal file
BIN
Library/ShaderCache/a/a580f642ec66ade78e61d69569320ed8.bin
Normal file
BIN
Library/ShaderCache/a/a8e9902f7ad7072ff3b3f213ac930a46.bin
Normal file
BIN
Library/ShaderCache/b/b53191f6aa40675f6cbac159e10e3815.bin
Normal file
BIN
Library/ShaderCache/c/c2a9ce11c01cb575be077c46f615caeb.bin
Normal file
BIN
Library/ShaderCache/d/d30b60246c082ec6b9be43e9eb13d474.bin
Normal file
BIN
Library/ShaderCache/d/d5cbed700a8bac2e16b083ee7f25d9fc.bin
Normal file
BIN
Library/metadata/13/137605d7073654e85b872038c98208ad
Normal file
BIN
Library/metadata/13/137605d7073654e85b872038c98208ad.info
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
Library/metadata/13/137605d7073654e85b872038c98208ad.resource
Normal file
BIN
Library/metadata/22/229b0de9afbf846fc8b60cc693d99d88.info
Normal file
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
BIN
Library/metadata/63/6337fbb36bad04192a2032952d9a4fca
Normal file
BIN
Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0
Normal file
BIN
Library/metadata/7f/7fd4e376a92c34cd7b737c3b9831c3f0.info
Normal file
|
Before Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 9.5 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
@ -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
|
||||||
|
|||||||
93
Temp/UnityTempFile-03d98af05c5924bd7973949f0e19d663
Normal 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'
|
||||||
93
Temp/UnityTempFile-087bf67da5dd3416d81a6118fa69041f
Normal 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'
|
||||||
93
Temp/UnityTempFile-10cea84df0c8a43deb36b3d95abd3ce0
Normal 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'
|
||||||
93
Temp/UnityTempFile-1becfa20300eb439ba7beed66d1e69b0
Normal 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'
|
||||||
93
Temp/UnityTempFile-2787ebd9b6c3c42feb1a379deeab54fd
Normal 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'
|
||||||
93
Temp/UnityTempFile-2ee15bcd4d91d4f279611005d3af70b5
Normal 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'
|
||||||
93
Temp/UnityTempFile-30111edf6c1d2409092ed4d4b03da2c8
Normal 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'
|
||||||
93
Temp/UnityTempFile-32ae26cb5329240a187886a440f6a80e
Normal 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'
|
||||||
93
Temp/UnityTempFile-53179bc4c53374fdcac07644e39c863d
Normal 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'
|
||||||
93
Temp/UnityTempFile-63dc34d2600be46c98288a9b713e7921
Normal 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'
|
||||||
93
Temp/UnityTempFile-68f1d0a585afe47829cbc67e235bbeeb
Normal 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'
|
||||||
93
Temp/UnityTempFile-6b7999db79001470a8fe756d9f6fa0c7
Normal 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'
|
||||||
93
Temp/UnityTempFile-6f91ad747af16471eb2e2b707a59eb09
Normal 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'
|
||||||
93
Temp/UnityTempFile-80ea5a6c047d0469ea83536731474aff
Normal 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'
|
||||||
93
Temp/UnityTempFile-8862a94d9d77849d99c84f7228ebf03a
Normal 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'
|
||||||
93
Temp/UnityTempFile-c8c631018b8a048a5bae0420cfa8fdbd
Normal 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'
|
||||||
93
Temp/UnityTempFile-ca2214067551546bdacf566af0ff42e6
Normal 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'
|
||||||
93
Temp/UnityTempFile-cff92921a2eb34f35b85895c2800420d
Normal 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'
|
||||||
93
Temp/UnityTempFile-d9b34847cddbf4853b225996c92fa994
Normal 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'
|
||||||
94
Temp/UnityTempFile-e3e798465f76f4c7c9bcaf6f5d5ac62e
Normal 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'
|
||||||
93
Temp/UnityTempFile-e9178e17a15e64854a8e6ba2192ecee4
Normal 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'
|
||||||
94
Temp/UnityTempFile-f0986bfeda1194501baf738a95e28805
Normal 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'
|
||||||
94
Temp/UnityTempFile-f2a245acd72904f9e89b97a9a6e75b30
Normal 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'
|
||||||
94
Temp/UnityTempFile-f55d81b0bc1e447e2a348d36c160f2ea
Normal 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'
|
||||||