diff --git a/Assembly-CSharp-vs.csproj b/Assembly-CSharp-vs.csproj index 840497d..e4cb81a 100644 --- a/Assembly-CSharp-vs.csproj +++ b/Assembly-CSharp-vs.csproj @@ -47,6 +47,7 @@ + /Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll diff --git a/Assembly-CSharp.csproj b/Assembly-CSharp.csproj index 840497d..e4cb81a 100644 --- a/Assembly-CSharp.csproj +++ b/Assembly-CSharp.csproj @@ -47,6 +47,7 @@ + /Applications/Unity/Unity.app/Contents/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll diff --git a/Assets/Class2.unity b/Assets/Class2.unity new file mode 100644 index 0000000..1ec6dc0 Binary files /dev/null and b/Assets/Class2.unity differ diff --git a/Assets/Class2.unity.meta b/Assets/Class2.unity.meta new file mode 100644 index 0000000..e7eec20 --- /dev/null +++ b/Assets/Class2.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a26334d6d86a4486b916b83308d569c +timeCreated: 1441735720 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Fonts.meta b/Assets/Fonts.meta new file mode 100644 index 0000000..09a6d1c --- /dev/null +++ b/Assets/Fonts.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 5c72e5484893b4c55aad488fd9107b89 +folderAsset: yes +timeCreated: 1441823652 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Fonts/OpenSans-ExtraBold.ttf b/Assets/Fonts/OpenSans-ExtraBold.ttf new file mode 100755 index 0000000..21f6f84 Binary files /dev/null and b/Assets/Fonts/OpenSans-ExtraBold.ttf differ diff --git a/Assets/Fonts/OpenSans-ExtraBold.ttf.meta b/Assets/Fonts/OpenSans-ExtraBold.ttf.meta new file mode 100644 index 0000000..b72259c --- /dev/null +++ b/Assets/Fonts/OpenSans-ExtraBold.ttf.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 9d96f8a0df5694a059aa391a69461d1a +timeCreated: 1441823665 +licenseType: Free +TrueTypeFontImporter: + serializedVersion: 2 + fontSize: 16 + forceTextureCase: -2 + characterSpacing: 1 + characterPadding: 0 + includeFontData: 1 + use2xBehaviour: 0 + fontNames: [] + customCharacters: + fontRenderingMode: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Fonts/nevis.ttf b/Assets/Fonts/nevis.ttf new file mode 100755 index 0000000..b167912 Binary files /dev/null and b/Assets/Fonts/nevis.ttf differ diff --git a/Assets/Fonts/nevis.ttf.meta b/Assets/Fonts/nevis.ttf.meta new file mode 100644 index 0000000..4921ed1 --- /dev/null +++ b/Assets/Fonts/nevis.ttf.meta @@ -0,0 +1,18 @@ +fileFormatVersion: 2 +guid: 4daaba64f8a654f05b175b4954096be3 +timeCreated: 1441823657 +licenseType: Free +TrueTypeFontImporter: + serializedVersion: 2 + fontSize: 16 + forceTextureCase: -2 + characterSpacing: 1 + characterPadding: 0 + includeFontData: 1 + use2xBehaviour: 0 + fontNames: [] + customCharacters: + fontRenderingMode: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Materials/Background.mat b/Assets/Materials/Background.mat new file mode 100644 index 0000000..1aff0f1 Binary files /dev/null and b/Assets/Materials/Background.mat differ diff --git a/Assets/Materials/Background.mat.meta b/Assets/Materials/Background.mat.meta new file mode 100644 index 0000000..782d4fc --- /dev/null +++ b/Assets/Materials/Background.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7d5d220c98884c89a7e80d89d604851 +timeCreated: 1441824086 +licenseType: Free +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/HelloWorld.cs b/Assets/Scripts/HelloWorld.cs index ebcf339..4e85106 100644 --- a/Assets/Scripts/HelloWorld.cs +++ b/Assets/Scripts/HelloWorld.cs @@ -3,9 +3,31 @@ using System.Collections; public class HelloWorld : MonoBehaviour { + public bool isDead = false; + public int startingHealth = 100; + public int currentHealth; + public float dmg = 3.14f; + public string Name = "Terrence the Terrible"; + public GameObject Camera; + public int strength = 0; + public int RandomNum = 0; + public string theText; + //public Text constText; + + private Texture txtRef; + //public GameObject ConstText: + //public void + // Use this for initialization void Start () { - Debug.Log ("Hello World"); + RandomNum = Random.Range (1, 8); + + theText = RandomNum.ToString (); + + Debug.Log (theText); + + + //Texture.text } // Update is called once per frame diff --git a/Assets/TextBox.cs b/Assets/TextBox.cs new file mode 100755 index 0000000..09ed624 --- /dev/null +++ b/Assets/TextBox.cs @@ -0,0 +1,164 @@ +using UnityEngine; + + +//YOU MUST USE THIS LINE TO GET ACCESS TO UI STUFF +using UnityEngine.UI; + + + +using System.Collections; + +public class TextBox : MonoBehaviour { + + public float Str; + public string StrString; + public float Dex; + public string DexString; + public float Con; + public string ConString; + public float Int; + public string IntString; + public float Wis; + public string WisString; + public float Chr; + public string ChrString; + public int Damage; + public string MinDamageString; + public string MaxDamageString; + public int MinDamage; + public int MaxDamage; + public int HP; + public string HPString; + public int EnemyHP; + public int EnemyHPString; + public float Hit; + public string HitString; + + public Text textRef; + + private float ConValuef; + + + + + // Use this for initialization + void Start () { + Str = 0; + Dex = 0; + Con = 0; + Int = 0; + Wis = 0; + Chr = 0; + Damage = 0; + EnemyHP = 0; + Hit = 0; + } + + // Update is called once per frame + void Update () { + + } + //----------------------------Hit Points-------------------------------- + + public void ClickTestHP(string text){ + Debug.Log (text); + HP = Random.Range (1, 8); //+ ((ConValuef *10)/100); + HPString = HP.ToString (); + textRef.text = HPString; + } + + //----------------------------Attributes-------------------------------- + + public void ClickTestStr(string text){ + Debug.Log (text); + Str = Random.Range (1, 6) + Random.Range (1, 6) + Random.Range (1, 6); + StrString = Str.ToString (); + textRef.text = StrString; + } + + public void ClickTestDex(string text){ + Debug.Log (text); + Dex = Random.Range (1, 6) + Random.Range (1, 6) + Random.Range (1, 6); + DexString = Dex.ToString (); + textRef.text = DexString; + + } + + public void ClickTestCon(string text){ + Debug.Log (text); + Con = Random.Range (1, 6) + Random.Range (1, 6) + Random.Range (1, 6); + ConString = Con.ToString (); + textRef.text = ConString; + } + + public void ClickTestInt(string text){ + Debug.Log (text); + Int = Random.Range (1, 6) + Random.Range (1, 6) + Random.Range (1, 6); + IntString = Int.ToString (); + textRef.text = IntString; + } + + public void ClickTestWis(string text){ + Debug.Log (text); + Wis = Random.Range (1, 6) + Random.Range (1, 6) + Random.Range (1, 6); + WisString = Wis.ToString (); + textRef.text = WisString; + } + + public void ClickTestChr(string text){ + Debug.Log (text); + Chr = Random.Range (1, 6) + Random.Range (1, 6) + Random.Range (1, 6); + ChrString = Chr.ToString (); + textRef.text = ChrString; + } + + //----------------------------Damage---------------------------------- + //Minimum + public void MinDamageButtonDown(){ + MinDamage--; + MinDamageString = MinDamage.ToString (); + textRef.text = MinDamageString; + + } + public void MinDamageButtonUp(){ + MinDamage++; + MinDamageString = MinDamage.ToString (); + textRef.text = MinDamageString; + + } + //Maximum + public void MaxDamageButtonDown(){ + MaxDamage--; + MaxDamageString = MaxDamage.ToString (); + textRef.text = MaxDamageString; + + } + public void MaxDamageButtonUp(){ + MaxDamage++; + MaxDamageString = MaxDamage.ToString (); + textRef.text = MaxDamageString; + + } + + +//----------------------------Enemy---------------------------------- + + public void ClickTestEnemyHP(string text){ + Debug.Log (text); + EnemyHP = Random.Range (1, 10); //+ ((ConValuef *10)/100); + HPString = HP.ToString (); + textRef.text = HPString; + } + + //----------------------------Fight------------------------------- + + public void Clicktest(string text){ + Debug.Log (text); + Hit = Mathf.Round (Random.Range (0f, 100f)); + HitString = Hit.ToString (); + textRef.text = HitString + "%"; + } +} +//percentToHit +//HitTrue +//if( \ No newline at end of file diff --git a/Assets/TextBox.cs.meta b/Assets/TextBox.cs.meta new file mode 100644 index 0000000..aa37244 --- /dev/null +++ b/Assets/TextBox.cs.meta @@ -0,0 +1,12 @@ +fileFormatVersion: 2 +guid: 9c06ef1492d0947f3b186e1910c7dbbd +timeCreated: 1441920716 +licenseType: Free +MonoImporter: + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Textures/tileable_wood_planks_texture_DIFFUSE.jpg b/Assets/Textures/tileable_wood_planks_texture_DIFFUSE.jpg deleted file mode 100644 index e02f8ff..0000000 Binary files a/Assets/Textures/tileable_wood_planks_texture_DIFFUSE.jpg and /dev/null differ diff --git a/Assets/Textures/tileable_wood_planks_texture_DIFFUSE.jpg.meta b/Assets/Textures/tileable_wood_planks_texture_DIFFUSE.jpg.meta deleted file mode 100644 index 7452bde..0000000 --- a/Assets/Textures/tileable_wood_planks_texture_DIFFUSE.jpg.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 33d0dc660942b4315aa5b95dbd2426b5 -timeCreated: 1441301489 -licenseType: Free -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 0 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 0 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: -1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Textures/tileable_wood_planks_texture_NORMAL.jpg b/Assets/Textures/tileable_wood_planks_texture_NORMAL.jpg deleted file mode 100644 index 71cb922..0000000 Binary files a/Assets/Textures/tileable_wood_planks_texture_NORMAL.jpg and /dev/null differ diff --git a/Assets/Textures/tileable_wood_planks_texture_NORMAL.jpg.meta b/Assets/Textures/tileable_wood_planks_texture_NORMAL.jpg.meta deleted file mode 100644 index 547f8da..0000000 --- a/Assets/Textures/tileable_wood_planks_texture_NORMAL.jpg.meta +++ /dev/null @@ -1,55 +0,0 @@ -fileFormatVersion: 2 -guid: 3a896b15c07e3448d9a8a7195aea06cd -timeCreated: 1441301502 -licenseType: Free -TextureImporter: - fileIDToRecycleName: {} - serializedVersion: 2 - mipmaps: - mipMapMode: 0 - enableMipMap: 1 - linearTexture: 1 - correctGamma: 0 - fadeOut: 0 - borderMipMap: 0 - mipMapFadeDistanceStart: 1 - mipMapFadeDistanceEnd: 3 - bumpmap: - convertToNormalMap: 0 - externalNormalMap: 1 - heightScale: .25 - normalMapFilter: 0 - isReadable: 0 - grayScaleToAlpha: 0 - generateCubemap: 0 - cubemapConvolution: 0 - cubemapConvolutionSteps: 8 - cubemapConvolutionExponent: 1.5 - seamlessCubemap: 0 - textureFormat: -1 - maxTextureSize: 2048 - textureSettings: - filterMode: -1 - aniso: -1 - mipBias: -1 - wrapMode: -1 - nPOTScale: 1 - lightmap: 0 - rGBM: 0 - compressionQuality: 50 - spriteMode: 0 - spriteExtrude: 1 - spriteMeshType: 1 - alignment: 0 - spritePivot: {x: .5, y: .5} - spriteBorder: {x: 0, y: 0, z: 0, w: 0} - spritePixelsToUnits: 100 - alphaIsTransparency: 0 - textureType: 1 - buildTargetSettings: [] - spriteSheet: - sprites: [] - spritePackingTag: - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/WriteText.unity b/Assets/WriteText.unity new file mode 100755 index 0000000..513aad6 Binary files /dev/null and b/Assets/WriteText.unity differ diff --git a/Assets/WriteText.unity.meta b/Assets/WriteText.unity.meta new file mode 100755 index 0000000..483756c --- /dev/null +++ b/Assets/WriteText.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a0a2011e795927489ecc480c9521982 +timeCreated: 1441920697 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/WriteText2.unity b/Assets/WriteText2.unity new file mode 100644 index 0000000..7060aab Binary files /dev/null and b/Assets/WriteText2.unity differ diff --git a/Assets/WriteText2.unity.meta b/Assets/WriteText2.unity.meta new file mode 100644 index 0000000..8f9643f --- /dev/null +++ b/Assets/WriteText2.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af66d04236f064e88949bfe18c5f6213 +timeCreated: 1442238895 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/combatSystem.unity b/Assets/combatSystem.unity new file mode 100644 index 0000000..fc4e304 Binary files /dev/null and b/Assets/combatSystem.unity differ diff --git a/Assets/combatSystem.unity.meta b/Assets/combatSystem.unity.meta new file mode 100644 index 0000000..c058ecd --- /dev/null +++ b/Assets/combatSystem.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0f155cf1c9d44fe7bb426757562e13b +timeCreated: 1441832375 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/combatSystem2.unity b/Assets/combatSystem2.unity new file mode 100644 index 0000000..a7e38c1 Binary files /dev/null and b/Assets/combatSystem2.unity differ diff --git a/Assets/combatSystem2.unity.meta b/Assets/combatSystem2.unity.meta new file mode 100644 index 0000000..e842090 --- /dev/null +++ b/Assets/combatSystem2.unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 227edf2549b504ff4a1b2d785df23217 +timeCreated: 1442259008 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Library/AssetServerCacheV3 b/Library/AssetServerCacheV3 index 9f12eb4..d524301 100644 Binary files a/Library/AssetServerCacheV3 and b/Library/AssetServerCacheV3 differ diff --git a/Library/CurrentLayout.dwlt b/Library/CurrentLayout.dwlt index d5e49db..0c5b705 100644 Binary files a/Library/CurrentLayout.dwlt and b/Library/CurrentLayout.dwlt differ diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 2479259..0128b45 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index bcd7266..6dc824d 100755 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb index ceb7665..e62d415 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb and b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb differ diff --git a/Library/ShaderCache/3/341ea000cb9e7a1441361600d79e383a.bin b/Library/ShaderCache/3/341ea000cb9e7a1441361600d79e383a.bin new file mode 100644 index 0000000..7078eb8 Binary files /dev/null and b/Library/ShaderCache/3/341ea000cb9e7a1441361600d79e383a.bin differ diff --git a/Library/ShaderCache/4/40504ea45851533eb65f9f0b22bced9b.bin b/Library/ShaderCache/4/40504ea45851533eb65f9f0b22bced9b.bin new file mode 100644 index 0000000..780f0a9 Binary files /dev/null and b/Library/ShaderCache/4/40504ea45851533eb65f9f0b22bced9b.bin differ diff --git a/Library/ShaderCache/6/6114d69871b1853717b48f14c5b90a72.bin b/Library/ShaderCache/6/6114d69871b1853717b48f14c5b90a72.bin new file mode 100644 index 0000000..7078eb8 Binary files /dev/null and b/Library/ShaderCache/6/6114d69871b1853717b48f14c5b90a72.bin differ diff --git a/Library/ShaderCache/9/916ec3d937cb01da16d32444b9094b85.bin b/Library/ShaderCache/9/916ec3d937cb01da16d32444b9094b85.bin new file mode 100644 index 0000000..e37e5a7 Binary files /dev/null and b/Library/ShaderCache/9/916ec3d937cb01da16d32444b9094b85.bin differ diff --git a/Library/ShaderCache/9/9e1c12687bbd3f1e1a751b1092abcf40.bin b/Library/ShaderCache/9/9e1c12687bbd3f1e1a751b1092abcf40.bin new file mode 100644 index 0000000..e90daaf Binary files /dev/null and b/Library/ShaderCache/9/9e1c12687bbd3f1e1a751b1092abcf40.bin differ diff --git a/Library/ShaderCache/b/b0b72e5f0cce8e9855f106d8c65a3181.bin b/Library/ShaderCache/b/b0b72e5f0cce8e9855f106d8c65a3181.bin new file mode 100644 index 0000000..d92e662 Binary files /dev/null and b/Library/ShaderCache/b/b0b72e5f0cce8e9855f106d8c65a3181.bin differ diff --git a/Library/ShaderCache/b/bad29e567cac713566820606b79d51f3.bin b/Library/ShaderCache/b/bad29e567cac713566820606b79d51f3.bin new file mode 100644 index 0000000..a60ea32 Binary files /dev/null and b/Library/ShaderCache/b/bad29e567cac713566820606b79d51f3.bin differ diff --git a/Library/ShaderCache/d/ddb1ea21411cd06f2cc8536571e1c352.bin b/Library/ShaderCache/d/ddb1ea21411cd06f2cc8536571e1c352.bin new file mode 100644 index 0000000..5527e3e Binary files /dev/null and b/Library/ShaderCache/d/ddb1ea21411cd06f2cc8536571e1c352.bin differ diff --git a/Library/ShaderCache/d/de056ced8e4b61b309d7d4217dfd611a.bin b/Library/ShaderCache/d/de056ced8e4b61b309d7d4217dfd611a.bin new file mode 100644 index 0000000..df84842 Binary files /dev/null and b/Library/ShaderCache/d/de056ced8e4b61b309d7d4217dfd611a.bin differ diff --git a/Library/ShaderCache/e/eba53a0b11a1a722585d25f4b3c216c0.bin b/Library/ShaderCache/e/eba53a0b11a1a722585d25f4b3c216c0.bin new file mode 100644 index 0000000..ff3b21d Binary files /dev/null and b/Library/ShaderCache/e/eba53a0b11a1a722585d25f4b3c216c0.bin differ diff --git a/Library/assetDatabase3 b/Library/assetDatabase3 index 2430772..f97fb18 100644 Binary files a/Library/assetDatabase3 and b/Library/assetDatabase3 differ diff --git a/Library/expandedItems b/Library/expandedItems index 4cd2da5..ab14a4f 100644 Binary files a/Library/expandedItems and b/Library/expandedItems differ diff --git a/Library/guidmapper b/Library/guidmapper index 72e0d25..a70e18a 100644 Binary files a/Library/guidmapper and b/Library/guidmapper differ diff --git a/Library/metadata/00/00000000000000004000000000000000 b/Library/metadata/00/00000000000000004000000000000000 index 0f3164c..7faf54b 100644 Binary files a/Library/metadata/00/00000000000000004000000000000000 and b/Library/metadata/00/00000000000000004000000000000000 differ diff --git a/Library/metadata/00/00000000000000009000000000000000 b/Library/metadata/00/00000000000000009000000000000000 index 75e0066..0de2661 100644 Binary files a/Library/metadata/00/00000000000000009000000000000000 and b/Library/metadata/00/00000000000000009000000000000000 differ diff --git a/Library/metadata/22/227edf2549b504ff4a1b2d785df23217 b/Library/metadata/22/227edf2549b504ff4a1b2d785df23217 new file mode 100644 index 0000000..9d29b31 Binary files /dev/null and b/Library/metadata/22/227edf2549b504ff4a1b2d785df23217 differ diff --git a/Library/metadata/22/227edf2549b504ff4a1b2d785df23217.info b/Library/metadata/22/227edf2549b504ff4a1b2d785df23217.info new file mode 100644 index 0000000..ae09f82 Binary files /dev/null and b/Library/metadata/22/227edf2549b504ff4a1b2d785df23217.info differ diff --git a/Library/metadata/33/33d0dc660942b4315aa5b95dbd2426b5 b/Library/metadata/33/33d0dc660942b4315aa5b95dbd2426b5 deleted file mode 100644 index cdea037..0000000 Binary files a/Library/metadata/33/33d0dc660942b4315aa5b95dbd2426b5 and /dev/null differ diff --git a/Library/metadata/33/33d0dc660942b4315aa5b95dbd2426b5.info b/Library/metadata/33/33d0dc660942b4315aa5b95dbd2426b5.info deleted file mode 100644 index ab0c3e5..0000000 Binary files a/Library/metadata/33/33d0dc660942b4315aa5b95dbd2426b5.info and /dev/null differ diff --git a/Library/metadata/3a/3a896b15c07e3448d9a8a7195aea06cd b/Library/metadata/3a/3a896b15c07e3448d9a8a7195aea06cd deleted file mode 100644 index 2b66388..0000000 Binary files a/Library/metadata/3a/3a896b15c07e3448d9a8a7195aea06cd and /dev/null differ diff --git a/Library/metadata/3a/3a896b15c07e3448d9a8a7195aea06cd.info b/Library/metadata/3a/3a896b15c07e3448d9a8a7195aea06cd.info deleted file mode 100644 index 7cfa906..0000000 Binary files a/Library/metadata/3a/3a896b15c07e3448d9a8a7195aea06cd.info and /dev/null differ diff --git a/Library/metadata/4a/4a0a2011e795927489ecc480c9521982 b/Library/metadata/4a/4a0a2011e795927489ecc480c9521982 new file mode 100644 index 0000000..a58fef8 Binary files /dev/null and b/Library/metadata/4a/4a0a2011e795927489ecc480c9521982 differ diff --git a/Library/metadata/4a/4a0a2011e795927489ecc480c9521982.info b/Library/metadata/4a/4a0a2011e795927489ecc480c9521982.info new file mode 100644 index 0000000..7d7dc48 Binary files /dev/null and b/Library/metadata/4a/4a0a2011e795927489ecc480c9521982.info differ diff --git a/Library/metadata/4d/4daaba64f8a654f05b175b4954096be3 b/Library/metadata/4d/4daaba64f8a654f05b175b4954096be3 new file mode 100644 index 0000000..d72d491 Binary files /dev/null and b/Library/metadata/4d/4daaba64f8a654f05b175b4954096be3 differ diff --git a/Library/metadata/4d/4daaba64f8a654f05b175b4954096be3.info b/Library/metadata/4d/4daaba64f8a654f05b175b4954096be3.info new file mode 100644 index 0000000..ee546a1 Binary files /dev/null and b/Library/metadata/4d/4daaba64f8a654f05b175b4954096be3.info differ diff --git a/Library/metadata/5a/5a26334d6d86a4486b916b83308d569c b/Library/metadata/5a/5a26334d6d86a4486b916b83308d569c new file mode 100644 index 0000000..84767ca Binary files /dev/null and b/Library/metadata/5a/5a26334d6d86a4486b916b83308d569c differ diff --git a/Library/metadata/5a/5a26334d6d86a4486b916b83308d569c.info b/Library/metadata/5a/5a26334d6d86a4486b916b83308d569c.info new file mode 100644 index 0000000..fad4528 Binary files /dev/null and b/Library/metadata/5a/5a26334d6d86a4486b916b83308d569c.info differ diff --git a/Library/metadata/5c/5c72e5484893b4c55aad488fd9107b89 b/Library/metadata/5c/5c72e5484893b4c55aad488fd9107b89 new file mode 100644 index 0000000..01a97f0 Binary files /dev/null and b/Library/metadata/5c/5c72e5484893b4c55aad488fd9107b89 differ diff --git a/Library/metadata/5c/5c72e5484893b4c55aad488fd9107b89.info b/Library/metadata/5c/5c72e5484893b4c55aad488fd9107b89.info new file mode 100644 index 0000000..5992b79 Binary files /dev/null and b/Library/metadata/5c/5c72e5484893b4c55aad488fd9107b89.info differ diff --git a/Library/metadata/85/85e70972179a34161bdc1fa54ed9c0f5 b/Library/metadata/85/85e70972179a34161bdc1fa54ed9c0f5 index c5d6998..3389f8f 100644 Binary files a/Library/metadata/85/85e70972179a34161bdc1fa54ed9c0f5 and b/Library/metadata/85/85e70972179a34161bdc1fa54ed9c0f5 differ diff --git a/Library/metadata/9c/9c06ef1492d0947f3b186e1910c7dbbd b/Library/metadata/9c/9c06ef1492d0947f3b186e1910c7dbbd new file mode 100644 index 0000000..fdfa905 Binary files /dev/null and b/Library/metadata/9c/9c06ef1492d0947f3b186e1910c7dbbd differ diff --git a/Library/metadata/9c/9c06ef1492d0947f3b186e1910c7dbbd.info b/Library/metadata/9c/9c06ef1492d0947f3b186e1910c7dbbd.info new file mode 100644 index 0000000..4b5a8b7 Binary files /dev/null and b/Library/metadata/9c/9c06ef1492d0947f3b186e1910c7dbbd.info differ diff --git a/Library/metadata/9d/9d96f8a0df5694a059aa391a69461d1a b/Library/metadata/9d/9d96f8a0df5694a059aa391a69461d1a new file mode 100644 index 0000000..4b24480 Binary files /dev/null and b/Library/metadata/9d/9d96f8a0df5694a059aa391a69461d1a differ diff --git a/Library/metadata/9d/9d96f8a0df5694a059aa391a69461d1a.info b/Library/metadata/9d/9d96f8a0df5694a059aa391a69461d1a.info new file mode 100644 index 0000000..3587677 Binary files /dev/null and b/Library/metadata/9d/9d96f8a0df5694a059aa391a69461d1a.info differ diff --git a/Library/metadata/af/af66d04236f064e88949bfe18c5f6213 b/Library/metadata/af/af66d04236f064e88949bfe18c5f6213 new file mode 100644 index 0000000..21e161c Binary files /dev/null and b/Library/metadata/af/af66d04236f064e88949bfe18c5f6213 differ diff --git a/Library/metadata/af/af66d04236f064e88949bfe18c5f6213.info b/Library/metadata/af/af66d04236f064e88949bfe18c5f6213.info new file mode 100644 index 0000000..6ae5e17 Binary files /dev/null and b/Library/metadata/af/af66d04236f064e88949bfe18c5f6213.info differ diff --git a/Library/metadata/b7/b7d5d220c98884c89a7e80d89d604851 b/Library/metadata/b7/b7d5d220c98884c89a7e80d89d604851 new file mode 100644 index 0000000..9006441 Binary files /dev/null and b/Library/metadata/b7/b7d5d220c98884c89a7e80d89d604851 differ diff --git a/Library/metadata/b7/b7d5d220c98884c89a7e80d89d604851.info b/Library/metadata/b7/b7d5d220c98884c89a7e80d89d604851.info new file mode 100644 index 0000000..911db9a Binary files /dev/null and b/Library/metadata/b7/b7d5d220c98884c89a7e80d89d604851.info differ diff --git a/Library/metadata/d0/d0f155cf1c9d44fe7bb426757562e13b b/Library/metadata/d0/d0f155cf1c9d44fe7bb426757562e13b new file mode 100644 index 0000000..712ef73 Binary files /dev/null and b/Library/metadata/d0/d0f155cf1c9d44fe7bb426757562e13b differ diff --git a/Library/metadata/d0/d0f155cf1c9d44fe7bb426757562e13b.info b/Library/metadata/d0/d0f155cf1c9d44fe7bb426757562e13b.info new file mode 100644 index 0000000..e03e6b9 Binary files /dev/null and b/Library/metadata/d0/d0f155cf1c9d44fe7bb426757562e13b.info differ diff --git a/Library/shadercompiler-64bit-1.log b/Library/shadercompiler-64bit-1.log index 4796010..55a3fa7 100644 --- a/Library/shadercompiler-64bit-1.log +++ b/Library/shadercompiler-64bit-1.log @@ -1,3 +1,19 @@ Base path: /Applications/Unity/Unity.app/Contents -Pipe name: \\.\pipe\UnityShaderCompiler-64bit-1-1915450112 +Pipe name: \\.\pipe\UnityShaderCompiler-64bit-1-2039259904 Cmd: getPlatforms +Cmd: compileSnippet + api=0 type=0 insize=9591 outsize=6532 kw= ok=1 +Cmd: compileSnippet + api=0 type=1 insize=9591 outsize=6 kw= ok=1 +Cmd: compileSnippet + api=0 type=0 insize=751 outsize=2236 kw=SHADOWS_DEPTH _ALPHATEST_ON ok=1 +Cmd: compileSnippet + api=0 type=1 insize=751 outsize=6 kw=SHADOWS_DEPTH _ALPHATEST_ON ok=1 +Cmd: compileSnippet + api=0 type=0 insize=982 outsize=9905 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _ALPHATEST_ON ok=1 +Cmd: compileSnippet + api=0 type=1 insize=982 outsize=6 kw=DIRECTIONAL SHADOWS_OFF LIGHTMAP_OFF DIRLIGHTMAP_OFF DYNAMICLIGHTMAP_OFF _ALPHATEST_ON ok=1 +Cmd: compileSnippet + api=0 type=0 insize=938 outsize=5775 kw=DIRECTIONAL SHADOWS_OFF _ALPHATEST_ON ok=1 +Cmd: compileSnippet + api=0 type=1 insize=938 outsize=6 kw=DIRECTIONAL SHADOWS_OFF _ALPHATEST_ON ok=1 diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset index 61ea64e..7887dc8 100644 Binary files a/ProjectSettings/QualitySettings.asset and b/ProjectSettings/QualitySettings.asset differ diff --git a/Script_1-csharp.sln b/Script_1-csharp.sln index 63071ba..74cd811 100644 --- a/Script_1-csharp.sln +++ b/Script_1-csharp.sln @@ -17,7 +17,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection - GlobalSection(MonoDevelopProperties) = preSolution + GlobalSection(MonoDevelopProperties) = preSolution StartupItem = Assembly-CSharp.csproj Policies = $0 $0.TextStylePolicy = $1 diff --git a/Script_1.sln b/Script_1.sln index 4d8d9d8..6275e86 100644 --- a/Script_1.sln +++ b/Script_1.sln @@ -17,7 +17,7 @@ Global GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection - GlobalSection(MonoDevelopProperties) = preSolution + GlobalSection(MonoDevelopProperties) = preSolution StartupItem = Assembly-CSharp.csproj Policies = $0 $0.TextStylePolicy = $1 diff --git a/Script_1.userprefs b/Script_1.userprefs new file mode 100644 index 0000000..5a6ef86 --- /dev/null +++ b/Script_1.userprefs @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Temp/ProcessJobs/e9a6970f79cd12d8b075e7d72f1b07cb.bakert b/Temp/ProcessJobs/e9a6970f79cd12d8b075e7d72f1b07cb.bakert index 4a4f1c8..7efe08e 100644 Binary files a/Temp/ProcessJobs/e9a6970f79cd12d8b075e7d72f1b07cb.bakert and b/Temp/ProcessJobs/e9a6970f79cd12d8b075e7d72f1b07cb.bakert differ diff --git a/Temp/UnityTempFile-0c4cab94494db47e2b123adc5dd37150 b/Temp/UnityTempFile-0c4cab94494db47e2b123adc5dd37150 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-0c4cab94494db47e2b123adc5dd37150 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-10d19b09449f040b3848c539f1acbac0 b/Temp/UnityTempFile-10d19b09449f040b3848c539f1acbac0 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-10d19b09449f040b3848c539f1acbac0 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-118c2f330770345edabcd8bb593e2070 b/Temp/UnityTempFile-118c2f330770345edabcd8bb593e2070 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-118c2f330770345edabcd8bb593e2070 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-14881ab2abeae45d78164bd1f1f87e0e b/Temp/UnityTempFile-14881ab2abeae45d78164bd1f1f87e0e new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-14881ab2abeae45d78164bd1f1f87e0e @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-14c66017c155744b6a9f1d0be97c147b b/Temp/UnityTempFile-14c66017c155744b6a9f1d0be97c147b new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-14c66017c155744b6a9f1d0be97c147b @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-1c69e1d565dca4213b80aeb744a05ca4 b/Temp/UnityTempFile-1c69e1d565dca4213b80aeb744a05ca4 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-1c69e1d565dca4213b80aeb744a05ca4 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-1c964b47f34bb4489baf9fed5f33a0a5 b/Temp/UnityTempFile-1c964b47f34bb4489baf9fed5f33a0a5 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-1c964b47f34bb4489baf9fed5f33a0a5 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-271b49459ede3423dbed0f005bb8cb72 b/Temp/UnityTempFile-271b49459ede3423dbed0f005bb8cb72 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-271b49459ede3423dbed0f005bb8cb72 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-2bbc7a112d43e4daf98dabe8e4a81138 b/Temp/UnityTempFile-2bbc7a112d43e4daf98dabe8e4a81138 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-2bbc7a112d43e4daf98dabe8e4a81138 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-2be7f0976177c4392b7d2810ed0a6c6c b/Temp/UnityTempFile-2be7f0976177c4392b7d2810ed0a6c6c new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-2be7f0976177c4392b7d2810ed0a6c6c @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-3dc31bf20060e40e7a7ed72844c11451 b/Temp/UnityTempFile-3dc31bf20060e40e7a7ed72844c11451 new file mode 100644 index 0000000..b028458 --- /dev/null +++ b/Temp/UnityTempFile-3dc31bf20060e40e7a7ed72844c11451 @@ -0,0 +1,62 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/EnemyScript.cs' +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-4548d4f09b3e64cff8234527ef2226be b/Temp/UnityTempFile-4548d4f09b3e64cff8234527ef2226be new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-4548d4f09b3e64cff8234527ef2226be @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-46670314b8b20433dac520fa7e05ccb8 b/Temp/UnityTempFile-46670314b8b20433dac520fa7e05ccb8 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-46670314b8b20433dac520fa7e05ccb8 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-4f70f892164df49b0b66f1d7ed6f545e b/Temp/UnityTempFile-4f70f892164df49b0b66f1d7ed6f545e new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-4f70f892164df49b0b66f1d7ed6f545e @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-569577ea92eb04de6b54164067847b9d b/Temp/UnityTempFile-569577ea92eb04de6b54164067847b9d new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-569577ea92eb04de6b54164067847b9d @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-5ac00361502a840c484f356a3147c52c b/Temp/UnityTempFile-5ac00361502a840c484f356a3147c52c new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-5ac00361502a840c484f356a3147c52c @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-68ab141fb6a074f5c8b5ed2edfedb6f5 b/Temp/UnityTempFile-68ab141fb6a074f5c8b5ed2edfedb6f5 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-68ab141fb6a074f5c8b5ed2edfedb6f5 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-6a023a5d2f4a340a591116b915e6a30a b/Temp/UnityTempFile-6a023a5d2f4a340a591116b915e6a30a new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-6a023a5d2f4a340a591116b915e6a30a @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-6c6dab9cf3b2f4b67983f8ed33531810 b/Temp/UnityTempFile-6c6dab9cf3b2f4b67983f8ed33531810 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-6c6dab9cf3b2f4b67983f8ed33531810 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-70e32f8f64ffd42d18fd0a9475f86543 b/Temp/UnityTempFile-70e32f8f64ffd42d18fd0a9475f86543 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-70e32f8f64ffd42d18fd0a9475f86543 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-722d01f02bd4e4bc1b1f5ab18986ca2c b/Temp/UnityTempFile-722d01f02bd4e4bc1b1f5ab18986ca2c new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-722d01f02bd4e4bc1b1f5ab18986ca2c @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-72fcbd187e6d443de9d9f276b116c948 b/Temp/UnityTempFile-72fcbd187e6d443de9d9f276b116c948 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-72fcbd187e6d443de9d9f276b116c948 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-751fd5064119d4be59e74b2993ffb542 b/Temp/UnityTempFile-751fd5064119d4be59e74b2993ffb542 new file mode 100644 index 0000000..b028458 --- /dev/null +++ b/Temp/UnityTempFile-751fd5064119d4be59e74b2993ffb542 @@ -0,0 +1,62 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/EnemyScript.cs' +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-7a3033660b65f491195896ad00f30caf b/Temp/UnityTempFile-7a3033660b65f491195896ad00f30caf new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-7a3033660b65f491195896ad00f30caf @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-7f7e18859b66147589bd738bd2defceb b/Temp/UnityTempFile-7f7e18859b66147589bd738bd2defceb new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-7f7e18859b66147589bd738bd2defceb @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-81e0b3bdc1ea44a8e8abc76a5bf862fa b/Temp/UnityTempFile-81e0b3bdc1ea44a8e8abc76a5bf862fa new file mode 100644 index 0000000..2b25e7b --- /dev/null +++ b/Temp/UnityTempFile-81e0b3bdc1ea44a8e8abc76a5bf862fa @@ -0,0 +1,62 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/Scripts/TextBox.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-8320068130cb74a0cbf92971f73cc7c3 b/Temp/UnityTempFile-8320068130cb74a0cbf92971f73cc7c3 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-8320068130cb74a0cbf92971f73cc7c3 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-844214380e22b45219cdc338b1c6b639 b/Temp/UnityTempFile-844214380e22b45219cdc338b1c6b639 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-844214380e22b45219cdc338b1c6b639 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-85115bee55be74c54993e748eb809a3a b/Temp/UnityTempFile-85115bee55be74c54993e748eb809a3a new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-85115bee55be74c54993e748eb809a3a @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-88681e4c80bdd45b7a37f94e8ab156b2 b/Temp/UnityTempFile-88681e4c80bdd45b7a37f94e8ab156b2 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-88681e4c80bdd45b7a37f94e8ab156b2 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-8a953a200d565419fa81eeb5f2eab3f0 b/Temp/UnityTempFile-8a953a200d565419fa81eeb5f2eab3f0 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-8a953a200d565419fa81eeb5f2eab3f0 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-a41d9303d5b724f73a6de582af1ec9b2 b/Temp/UnityTempFile-a41d9303d5b724f73a6de582af1ec9b2 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-a41d9303d5b724f73a6de582af1ec9b2 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-b084a1b03b36b423aaceb8501f9b2d84 b/Temp/UnityTempFile-b084a1b03b36b423aaceb8501f9b2d84 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-b084a1b03b36b423aaceb8501f9b2d84 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-b628a519d30fe4a69be449813a888bfc b/Temp/UnityTempFile-b628a519d30fe4a69be449813a888bfc new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-b628a519d30fe4a69be449813a888bfc @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-b8d730f55eb2b4a3d8d9299864159d19 b/Temp/UnityTempFile-b8d730f55eb2b4a3d8d9299864159d19 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-b8d730f55eb2b4a3d8d9299864159d19 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-bbd63b01d98fa46378343a323f38c879 b/Temp/UnityTempFile-bbd63b01d98fa46378343a323f38c879 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-bbd63b01d98fa46378343a323f38c879 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-d529a1fd5f73149bdaa5b1d883498662 b/Temp/UnityTempFile-d529a1fd5f73149bdaa5b1d883498662 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-d529a1fd5f73149bdaa5b1d883498662 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-d75acdefa76094ad2be62bb5df6b6661 b/Temp/UnityTempFile-d75acdefa76094ad2be62bb5df6b6661 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-d75acdefa76094ad2be62bb5df6b6661 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-e0751c38be1474f4597e12fd00229fe8 b/Temp/UnityTempFile-e0751c38be1474f4597e12fd00229fe8 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-e0751c38be1474f4597e12fd00229fe8 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-e6473583aadc5467db9927ab3b3432ea b/Temp/UnityTempFile-e6473583aadc5467db9927ab3b3432ea new file mode 100644 index 0000000..b028458 --- /dev/null +++ b/Temp/UnityTempFile-e6473583aadc5467db9927ab3b3432ea @@ -0,0 +1,62 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/EnemyScript.cs' +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-e8d032f5cf62d46f483170b156bd51b7 b/Temp/UnityTempFile-e8d032f5cf62d46f483170b156bd51b7 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-e8d032f5cf62d46f483170b156bd51b7 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-eb5a92542c88a4e059141b53f33dd9e0 b/Temp/UnityTempFile-eb5a92542c88a4e059141b53f33dd9e0 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-eb5a92542c88a4e059141b53f33dd9e0 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-f25bcddb21f0448a3af956efddd03b9f b/Temp/UnityTempFile-f25bcddb21f0448a3af956efddd03b9f new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-f25bcddb21f0448a3af956efddd03b9f @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-f7b4894c50a8d4e1c933dca2df57075e b/Temp/UnityTempFile-f7b4894c50a8d4e1c933dca2df57075e new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-f7b4894c50a8d4e1c933dca2df57075e @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-fb1980be4d8b742ccae2639f31964210 b/Temp/UnityTempFile-fb1980be4d8b742ccae2639f31964210 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-fb1980be4d8b742ccae2639f31964210 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-fb6db5784c92545b8821dd5b52ee2865 b/Temp/UnityTempFile-fb6db5784c92545b8821dd5b52ee2865 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-fb6db5784c92545b8821dd5b52ee2865 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/UnityTempFile-fecec8c4c56904768aa4717d7fa0ef86 b/Temp/UnityTempFile-fecec8c4c56904768aa4717d7fa0ef86 new file mode 100644 index 0000000..c3aa314 --- /dev/null +++ b/Temp/UnityTempFile-fecec8c4c56904768aa4717d7fa0ef86 @@ -0,0 +1,61 @@ +-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/GUISystem/UnityEngine.UI.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Managed/UnityEditor.dll' +-r:'/Applications/Unity/Unity.app/Contents/PlaybackEngines/iossupport/UnityEditor.iOS.Extensions.Xcode.dll' +-define:UNITY_5_0_0 +-define:UNITY_5_0 +-define:UNITY_5 +-define:ENABLE_LICENSE_RENAME +-define:ENABLE_NEW_BUGREPORTER +-define:ENABLE_2D_PHYSICS +-define:ENABLE_4_6_FEATURES +-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_NEW_HIERARCHY +-define:ENABLE_PHYSICS +-define:ENABLE_PHYSICS_PHYSX3 +-define:ENABLE_PLUGIN_INSPECTOR +-define:ENABLE_SHADOWS +-define:ENABLE_SINGLE_INSTANCE_BUILD_SETTING +-define:ENABLE_SPRITES +-define:ENABLE_TERRAIN +-define:ENABLE_UNITYEVENTS +-define:ENABLE_WEBCAM +-define:ENABLE_WWW +-define:ENABLE_AUDIOMIXER_SUSPEND +-define:ENABLE_NONPRO +-define:INCLUDE_DYNAMIC_GI +-define:INCLUDE_GI +-define:INCLUDE_IL2CPP +-define:PLATFORM_SUPPORTS_MONO +-define:RENDER_SOFTWARE_CURSOR +-define:UNITY_STANDALONE_OSX +-define:UNITY_STANDALONE +-define:ENABLE_SUBSTANCE +-define:ENABLE_GAMECENTER +-define:ENABLE_TEXTUREID_MAP +-define:ENABLE_RUNTIME_GI +-define:ENABLE_MOVIES +-define:ENABLE_NETWORK +-define:ENABLE_MONO +-define:ENABLE_PROFILER +-define:UNITY_EDITOR +-define:UNITY_EDITOR_64 +-define:UNITY_EDITOR_OSX +'Assets/Scripts/HelloWorld.cs' +'Assets/TextBox.cs' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Runtime.Serialization.dll' +-r:'/Applications/Unity/Unity.app/Contents/Frameworks/Mono/lib/mono/unity/System.Xml.Linq.dll' diff --git a/Temp/__EditModeScene b/Temp/__EditModeScene new file mode 100644 index 0000000..a7e38c1 Binary files /dev/null and b/Temp/__EditModeScene differ