diff --git a/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs b/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs index ce0322575..7d0d72952 100644 --- a/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs +++ b/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs @@ -5,7 +5,8 @@ public class DVDLogo : MonoBehaviour { //Speed it moves at - public float speed = 3; + public float speed = 2; + public float speed_increase = 2; //Bounds of the screen (could get these with camera bounds but we can do this since it's a fixed camera) public float X_Max = 5, Y_Max = 4; @@ -13,12 +14,22 @@ public class DVDLogo : MonoBehaviour //Current direction private Vector3 direction; + // color of the sprite + SpriteRenderer sprite; // to be able to change the color of the sprite + + public Color flashColor = Color.red; // The sprite with flash red + public float flashDuration = 0.01f; // How long to show the change of color + public int flashCount = 1; // How many times to flash + private Color originalColor; // will store the original color + // Start is called before the first frame update void Start() { //Randomly initialize direction direction = new Vector3(Random.Range(-1f,1f), Random.Range(-1f,1f)); direction.Normalize(); + sprite = GetComponent(); // creates game object to be able to change color of sprite + originalColor = sprite.color; // here actually stores the original color of the sprite } @@ -36,29 +47,47 @@ private void FlipDirectionY(){ direction.Normalize(); } - // Update is called once per frame - void Update() + private IEnumerator Flashing() // function to be able to flash the color of the sprite + // IEnumerator supports interation without affecting game play + // here stops and resumes over multiple frames without affecting the main game + // help from chatgpt { - //Move in direction unless we'd go out of bounds, if so bounce with some randomness - Vector3 newPosition = transform.position + direction*Time.deltaTime*speed; + for (int i = 0; i < flashCount; i++) // for loop that changes back and forth from flash color back to original color + { + sprite.color = flashColor; // Change to the flash color + yield return new WaitForSeconds(flashDuration); // pauses for the flash duration + sprite.color = originalColor; // Change back to the original color + yield return new WaitForSeconds(flashDuration); // Wait before flashing again + + } + } +// Update is called once per frame +void Update() + { + //Move in direction unless we'd go out of bounds, if so bounce with some randomness + Vector3 newPosition = transform.position + direction*Time.deltaTime*(speed* speed_increase); + //See if a bounce needs to happen before moving if (newPosition.x>X_Max){ + StartCoroutine(Flashing()); FlipDirectionX(); - } else if (newPosition.x<-1*X_Max){ + StartCoroutine(Flashing()); FlipDirectionX(); } if (newPosition.y>Y_Max){ + StartCoroutine(Flashing()); FlipDirectionY(); } else if (newPosition.y<-1*Y_Max){ + StartCoroutine(Flashing()); FlipDirectionY(); } - transform.position += direction*Time.deltaTime*speed; + transform.position += direction*Time.deltaTime*(speed* speed_increase); } } diff --git a/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity b/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity index edc272572..194662c12 100644 --- a/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity +++ b/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity @@ -131,6 +131,7 @@ GameObject: m_Component: - component: {fileID: 421997421} - component: {fileID: 421997422} + - component: {fileID: 421997423} m_Layer: 0 m_Name: Bouncing Ball m_TagString: Untagged @@ -147,9 +148,8 @@ Transform: m_GameObject: {fileID: 421997420} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 755472558} + m_LocalScale: {x: 4, y: 4, z: 4} + m_Children: [] m_Father: {fileID: 0} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -166,8 +166,60 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: speed: 3 + speed_increase: 2 X_Max: 5 Y_Max: 4 +--- !u!212 &421997423 +SpriteRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421997420} + m_Enabled: 1 + m_CastShadows: 0 + m_ReceiveShadows: 0 + m_DynamicOccludee: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_RayTracingMode: 0 + m_RenderingLayerMask: 1 + m_RendererPriority: 0 + m_Materials: + - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_ReceiveGI: 1 + m_PreserveUVs: 0 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + m_StitchLightmapSeams: 1 + m_SelectedEditorRenderState: 0 + m_MinimumChartSize: 4 + m_AutoUVMaxDistance: 0.5 + m_AutoUVMaxAngle: 89 + m_LightmapParameters: {fileID: 0} + m_SortingLayerID: 0 + m_SortingLayer: 0 + m_SortingOrder: 0 + m_Sprite: {fileID: 3410133999492175255, guid: 12eb88e81c2e64e858662a4485b1aec7, + type: 3} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_FlipX: 0 + m_FlipY: 0 + m_DrawMode: 0 + m_Size: {x: 0.34, y: 0.32} + m_AdaptiveModeThreshold: 0.5 + m_SpriteTileMode: 0 + m_WasSpriteAssigned: 1 + m_MaskInteraction: 0 + m_SpriteSortPoint: 0 --- !u!1 &519420028 GameObject: m_ObjectHideFlags: 0 @@ -251,87 +303,6 @@ Transform: m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &755472557 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 755472558} - - component: {fileID: 755472559} - m_Layer: 0 - m_Name: Circle - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &755472558 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 755472557} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 0.2, y: 0.2, z: 1} - m_Children: [] - m_Father: {fileID: 421997421} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!212 &755472559 -SpriteRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 755472557} - m_Enabled: 1 - m_CastShadows: 0 - m_ReceiveShadows: 0 - m_DynamicOccludee: 1 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 0 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: 6e7069a7db07f489a87c0797b3ff2165, type: 3} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_FlipX: 0 - m_FlipY: 0 - m_DrawMode: 0 - m_Size: {x: 5, y: 5} - m_AdaptiveModeThreshold: 0.5 - m_SpriteTileMode: 0 - m_WasSpriteAssigned: 1 - m_MaskInteraction: 0 - m_SpriteSortPoint: 0 --- !u!1 &957195930 GameObject: m_ObjectHideFlags: 0 @@ -566,7 +537,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: This is a bouncing ball + m_Text: Oh no the Fish!!! --- !u!222 &2098954804 CanvasRenderer: m_ObjectHideFlags: 0 diff --git a/CMPUT 250 W24 Lab 3/Assets/spriteOutput.png b/CMPUT 250 W24 Lab 3/Assets/spriteOutput.png new file mode 100644 index 000000000..462904c88 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Assets/spriteOutput.png differ diff --git a/CMPUT 250 W24 Lab 3/Assets/spriteOutput.png.meta b/CMPUT 250 W24 Lab 3/Assets/spriteOutput.png.meta new file mode 100644 index 000000000..9ed9bda26 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Assets/spriteOutput.png.meta @@ -0,0 +1,236 @@ +fileFormatVersion: 2 +guid: 12eb88e81c2e64e858662a4485b1aec7 +TextureImporter: + internalIDToNameTable: + - first: + 213: -8284215156013177658 + second: spriteOutput_0 + - first: + 213: 6276593393424870353 + second: spriteOutput_1 + - first: + 213: 3410133999492175255 + second: spriteOutput_2 + externalObjects: {} + serializedVersion: 11 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -100 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + applyGammaDecoding: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: tvOS + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: iPhone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Lumin + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Android + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: WebGL + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: spriteOutput_0 + rect: + serializedVersion: 2 + x: 120 + y: 41 + width: 34 + height: 32 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c46dee053e880d80800000000000000 + internalID: -8284215156013177658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: spriteOutput_1 + rect: + serializedVersion: 2 + x: 81 + y: 41 + width: 34 + height: 32 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1db27aebf60fa1750800000000000000 + internalID: 6276593393424870353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: spriteOutput_2 + rect: + serializedVersion: 2 + x: 42 + y: 42 + width: 34 + height: 32 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 795963c0eca335f20800000000000000 + internalID: 3410133999492175255 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/CMPUT 250 W24 Lab 3/Library/ArtifactDB b/CMPUT 250 W24 Lab 3/Library/ArtifactDB index 957140ffc..5c8580763 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/ArtifactDB and b/CMPUT 250 W24 Lab 3/Library/ArtifactDB differ diff --git a/CMPUT 250 W24 Lab 3/Library/ArtifactDB-lock b/CMPUT 250 W24 Lab 3/Library/ArtifactDB-lock index 72d1b1957..8c8e80767 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/ArtifactDB-lock and b/CMPUT 250 W24 Lab 3/Library/ArtifactDB-lock differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/16/168a0e8a0a0c90c42f586f17cea29bed b/CMPUT 250 W24 Lab 3/Library/Artifacts/16/168a0e8a0a0c90c42f586f17cea29bed deleted file mode 100644 index 7614169e0..000000000 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/16/168a0e8a0a0c90c42f586f17cea29bed and /dev/null differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/3f/3f4333f167856d10847f900a432b7bd7 b/CMPUT 250 W24 Lab 3/Library/Artifacts/3f/3f4333f167856d10847f900a432b7bd7 new file mode 100644 index 000000000..bcf3fc064 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/3f/3f4333f167856d10847f900a432b7bd7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/42/42578bdd0ca25e65d509c1b6826575e0 b/CMPUT 250 W24 Lab 3/Library/Artifacts/42/42578bdd0ca25e65d509c1b6826575e0 new file mode 100644 index 000000000..baaa6cfc3 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/42/42578bdd0ca25e65d509c1b6826575e0 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/47/470ff420875c33c476732bd7d13e2e3a similarity index 65% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/47/470ff420875c33c476732bd7d13e2e3a index d4653b689..49cde9988 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/47/470ff420875c33c476732bd7d13e2e3a differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d6fd5cd0e32c772bad719cd262ed937 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d6fd5cd0e32c772bad719cd262ed937 deleted file mode 100644 index fc92fdce1..000000000 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/5d/5d6fd5cd0e32c772bad719cd262ed937 and /dev/null differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/66/66eae3044343eb392c4379a1cc363673 b/CMPUT 250 W24 Lab 3/Library/Artifacts/66/66eae3044343eb392c4379a1cc363673 deleted file mode 100644 index 00d69a7fc..000000000 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/66/66eae3044343eb392c4379a1cc363673 and /dev/null differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 b/CMPUT 250 W24 Lab 3/Library/Artifacts/75/7542a185b762187a8d9d8aaf502e3a17 similarity index 68% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/75/7542a185b762187a8d9d8aaf502e3a17 index fd988326a..63b6237c1 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/75/7542a185b762187a8d9d8aaf502e3a17 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/08/084ad153c2407af7d1224c24651c06e5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/75/757dcbaa20779855eb711605277ab499 similarity index 84% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/08/084ad153c2407af7d1224c24651c06e5 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/75/757dcbaa20779855eb711605277ab499 index a4208dc60..cb53b3d1e 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/08/084ad153c2407af7d1224c24651c06e5 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/75/757dcbaa20779855eb711605277ab499 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 b/CMPUT 250 W24 Lab 3/Library/Artifacts/7b/7b75ffd6e1a071123447a24c55cedfd7 similarity index 66% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/7b/7b75ffd6e1a071123447a24c55cedfd7 index 93b84d99f..96122f50d 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/7b/7b75ffd6e1a071123447a24c55cedfd7 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8fadd8d67d87d3f773cfcf1945470f72 b/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8fadd8d67d87d3f773cfcf1945470f72 new file mode 100644 index 000000000..39195e8f6 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/8f/8fadd8d67d87d3f773cfcf1945470f72 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/bb/bbd4e2ff722240d1c25d5f55b5b66991 b/CMPUT 250 W24 Lab 3/Library/Artifacts/bb/bbd4e2ff722240d1c25d5f55b5b66991 new file mode 100644 index 000000000..37629e736 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/bb/bbd4e2ff722240d1c25d5f55b5b66991 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/c0/c0a618527a3030810c650dcb6747ca7f b/CMPUT 250 W24 Lab 3/Library/Artifacts/c0/c0a618527a3030810c650dcb6747ca7f new file mode 100644 index 000000000..dd003083e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/c0/c0a618527a3030810c650dcb6747ca7f differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca50c3eb7ab57513c764bc97d8cbc491 b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca50c3eb7ab57513c764bc97d8cbc491 new file mode 100644 index 000000000..af3362dc6 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/ca/ca50c3eb7ab57513c764bc97d8cbc491 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/cb/cb261f9fa77a3e97eef023aa3efbe23d b/CMPUT 250 W24 Lab 3/Library/Artifacts/cb/cb261f9fa77a3e97eef023aa3efbe23d new file mode 100644 index 000000000..428fdba2f Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/cb/cb261f9fa77a3e97eef023aa3efbe23d differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/e0/e08988f68f13cdd8557f1ee19ca796dc b/CMPUT 250 W24 Lab 3/Library/Artifacts/e0/e08988f68f13cdd8557f1ee19ca796dc new file mode 100644 index 000000000..5467e6e0d Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/e0/e08988f68f13cdd8557f1ee19ca796dc differ diff --git a/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt b/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt index 0c3980e59..5a38360f0 100644 --- a/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt +++ b/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt @@ -8,21 +8,21 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 + m_EditorHideFlags: 1 m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 x: 142 - y: 172 - width: 1298 - height: 631 - m_ShowMode: 0 + y: 53 + width: 1420 + height: 824 + m_ShowMode: 4 m_Title: - m_RootView: {fileID: 5} - m_MinSize: {x: 100, y: 121} - m_MaxSize: {x: 4000, y: 4021} + m_RootView: {fileID: 2} + m_MinSize: {x: 875, y: 492} + m_MaxSize: {x: 10000, y: 10000} m_Maximized: 0 --- !u!114 &2 MonoBehaviour: @@ -33,21 +33,21 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_PixelRect: + m_Children: + - {fileID: 3} + - {fileID: 5} + - {fileID: 4} + m_Position: serializedVersion: 2 - x: 19 - y: 53 - width: 1440 - height: 750 - m_ShowMode: 4 - m_Title: - m_RootView: {fileID: 6} - m_MinSize: {x: 875, y: 471} + x: 0 + y: 0 + width: 1420 + height: 824 + m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} - m_Maximized: 0 --- !u!114 &3 MonoBehaviour: m_ObjectHideFlags: 52 @@ -56,20 +56,20 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12060, guid: 0000000000000000e000000000000000, type: 0} - m_Name: GameView + m_EditorHideFlags: 1 + m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} + m_Name: m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 - y: 30 - width: 1440 - height: 700 - m_MinSize: {x: 200, y: 223} - m_MaxSize: {x: 4000, y: 4023} - m_ActualView: {fileID: 10} + y: 0 + width: 1420 + height: 30 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} + m_LastLoadedLayoutName: --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -78,24 +78,19 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ConsoleWindow + m_EditorHideFlags: 1 + m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} + m_Name: m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 - y: 0 - width: 1298 - height: 631 - m_MinSize: {x: 100, y: 121} - m_MaxSize: {x: 4000, y: 4021} - m_ActualView: {fileID: 9} - m_Panes: - - {fileID: 9} - m_Selected: 0 - m_LastSelected: 0 + y: 804 + width: 1420 + height: 20 + m_MinSize: {x: 0, y: 0} + m_MaxSize: {x: 0, y: 0} --- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 @@ -104,22 +99,25 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 + m_EditorHideFlags: 1 m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 4} + - {fileID: 6} + - {fileID: 9} + - {fileID: 10} + - {fileID: 11} m_Position: serializedVersion: 2 x: 0 - y: 0 - width: 1298 - height: 631 - m_MinSize: {x: 100, y: 121} - m_MaxSize: {x: 4000, y: 4021} + y: 30 + width: 1420 + height: 774 + m_MinSize: {x: 910, y: 442} + m_MaxSize: {x: 22005, y: 10021} vertical: 0 - controlID: 416 + controlID: 5217 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -129,21 +127,22 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0} + m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: m_Children: - {fileID: 7} - - {fileID: 3} - {fileID: 8} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1440 - height: 750 - m_MinSize: {x: 875, y: 471} - m_MaxSize: {x: 10000, y: 10000} + width: 635 + height: 774 + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} + vertical: 1 + controlID: 5218 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -153,19 +152,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: SceneView m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1440 - height: 30 - m_MinSize: {x: 0, y: 0} - m_MaxSize: {x: 0, y: 0} - m_LastLoadedLayoutName: + width: 635 + height: 396 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 13} + m_Panes: + - {fileID: 13} + m_Selected: 0 + m_LastSelected: 0 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -175,18 +178,23 @@ MonoBehaviour: m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 1 - m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: GameView m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 x: 0 - y: 730 - width: 1440 - height: 20 - m_MinSize: {x: 0, y: 0} - m_MaxSize: {x: 0, y: 0} + y: 396 + width: 635 + height: 378 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 12} + m_Panes: + - {fileID: 12} + m_Selected: 0 + m_LastSelected: 0 --- !u!114 &9 MonoBehaviour: m_ObjectHideFlags: 52 @@ -195,25 +203,77 @@ MonoBehaviour: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0} + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} - m_TitleContent: - m_Text: Console - m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, - type: 0} - m_Tooltip: - m_Pos: + m_Children: [] + m_Position: serializedVersion: 2 - x: 142 - y: 172 - width: 1298 - height: 610 - m_ViewDataDictionary: {fileID: 0} + x: 635 + y: 0 + width: 231 + height: 774 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 14} + m_Panes: + - {fileID: 14} + m_Selected: 0 + m_LastSelected: 0 --- !u!114 &10 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 866 + y: 0 + width: 232 + height: 774 + m_MinSize: {x: 232, y: 271} + m_MaxSize: {x: 10002, y: 10021} + m_ActualView: {fileID: 15} + m_Panes: + - {fileID: 15} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &11 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 1098 + y: 0 + width: 322 + height: 774 + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 16} + m_Panes: + - {fileID: 16} + m_Selected: 0 + m_LastSelected: 0 +--- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -234,10 +294,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 19 - y: 83 - width: 1440 - height: 681 + x: 142 + y: 479 + width: 634 + height: 357 m_ViewDataDictionary: {fileID: 0} m_SerializedViewNames: [] m_SerializedViewValues: [] @@ -247,25 +307,25 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 960, y: 640} + m_TargetSize: {x: 1024, y: 768} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 - m_MaximizeOnPlay: 1 + m_MaximizeOnPlay: 0 m_UseMipMap: 0 m_VSyncEnabled: 0 m_Gizmos: 0 m_Stats: 0 - m_SelectedSizes: 08000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_SelectedSizes: 06000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: m_HRangeLocked: 0 m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -240 - m_HBaseRangeMax: 240 - m_VBaseRangeMin: -160 - m_VBaseRangeMax: 160 + m_HBaseRangeMin: -256 + m_HBaseRangeMax: 256 + m_VBaseRangeMin: -192 + m_VBaseRangeMax: 192 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -283,25 +343,369 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1440 - height: 660 - m_Scale: {x: 2, y: 2} - m_Translation: {x: 720, y: 330} + width: 634 + height: 336 + m_Scale: {x: 0.875, y: 0.875} + m_Translation: {x: 317, y: 168} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -360 - y: -165 - width: 720 - height: 330 + x: -362.2857 + y: -192 + width: 724.5714 + height: 384 m_MinimalGUI: 1 - m_defaultScale: 2 - m_LastWindowPixelSize: {x: 2880, y: 1362} + m_defaultScale: 0.875 + m_LastWindowPixelSize: {x: 1268, y: 714} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 m_XRRenderMode: 0 m_RenderTexture: {fileID: 0} +--- !u!114 &13 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Scene + m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 142 + y: 83 + width: 634 + height: 375 + m_ViewDataDictionary: {fileID: 0} + m_ShowContextualTools: 0 + m_WindowGUID: 173a87bfcd91a409a986c8d7ee5123ce + m_Gizmos: 1 + m_SceneIsLit: 1 + m_SceneLighting: 1 + m_2DMode: 1 + m_isRotationLocked: 0 + m_PlayAudio: 0 + m_AudioPlay: 0 + m_Position: + m_Target: {x: 0, y: 0, z: 0} + speed: 2 + m_Value: {x: 0, y: 0, z: 0} + m_RenderMode: 0 + m_CameraMode: + drawMode: 0 + name: Shaded + section: Shading Mode + m_ValidateTrueMetals: 0 + m_DoValidateTrueMetals: 0 + m_ExposureSliderValue: 0 + m_ExposureSliderMax: 10 + m_SceneViewState: + showFog: 1 + showMaterialUpdate: 0 + showSkybox: 1 + showFlares: 1 + showImageEffects: 1 + showParticleSystems: 1 + m_Grid: + xGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 0, y: 0} + yGrid: + m_Fade: + m_Target: 0 + speed: 2 + m_Value: 0 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + zGrid: + m_Fade: + m_Target: 1 + speed: 2 + m_Value: 1 + m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} + m_Pivot: {x: 0, y: 0, z: 0} + m_Size: {x: 1, y: 1} + m_ShowGrid: 1 + m_GridAxis: 1 + m_gridOpacity: 0.5 + m_Rotation: + m_Target: {x: 0, y: 0, z: 0, w: 1} + speed: 2 + m_Value: {x: 0, y: 0, z: 0, w: 1} + m_Size: + m_Target: 10 + speed: 2 + m_Value: 10 + m_Ortho: + m_Target: 1 + speed: 2 + m_Value: 1 + m_CameraSettings: + m_Speed: 1 + m_SpeedNormalized: 0.5 + m_SpeedMin: 0.01 + m_SpeedMax: 2 + m_EasingEnabled: 1 + m_EasingDuration: 0.4 + m_AccelerationEnabled: 1 + m_FieldOfViewHorizontalOrVertical: 60 + m_NearClip: 0.03 + m_FarClip: 10000 + m_DynamicClip: 1 + m_OcclusionCulling: 0 + m_LastSceneViewRotation: {x: -0.08717229, y: 0.89959055, z: -0.21045254, w: -0.3726226} + m_LastSceneViewOrtho: 0 + m_ReplacementShader: {fileID: 0} + m_ReplacementString: + m_SceneVisActive: 1 + m_LastLockedObject: {fileID: 0} + m_ViewIsLockedToObject: 0 +--- !u!114 &14 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Hierarchy + m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 777 + y: 83 + width: 229 + height: 753 + m_ViewDataDictionary: {fileID: 0} + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 0e390000 + m_LastClickedID: 14606 + m_ExpandedIDs: 00faffff1cfbffff0e3900002a390000 + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 0 + m_ClientGUIView: {fileID: 9} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: a0e2d077c3ae142578f10c4587073557 +--- !u!114 &15 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} + m_TitleContent: + m_Text: Project + m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 1008 + y: 83 + width: 230 + height: 753 + m_ViewDataDictionary: {fileID: 0} + m_SearchFilter: + m_NameFilter: + m_ClassNames: [] + m_AssetLabels: [] + m_AssetBundleNames: [] + m_VersionControlStates: [] + m_SoftLockControlStates: [] + m_ReferencingInstanceIDs: + m_SceneHandles: + m_ShowAllHits: 0 + m_SkipHidden: 0 + m_SearchArea: 1 + m_Folders: + - Assets + m_ViewMode: 0 + m_StartGridSize: 64 + m_LastFolders: [] + m_LastFoldersGridSize: -1 + m_LastProjectPath: /Users/alyshavanbibber/CMPUT-250-F24-Lab-3/CMPUT 250 W24 Lab + 3 + m_LockTracker: + m_IsLocked: 0 + m_FolderTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: da3b0000 + m_LastClickedID: 15322 + m_ExpandedIDs: ffffffff000000003e39000070390000a4390000ffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_AssetTreeState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: ffffffff000000003e39000070390000a4390000ffffff7f + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_SearchString: + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_ListAreaState: + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 0 + m_ExpandedInstanceIDs: + m_RenameOverlay: + m_UserAcceptedRename: 0 + m_Name: + m_OriginalName: + m_EditFieldRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 0 + height: 0 + m_UserData: 0 + m_IsWaitingForDelay: 0 + m_IsRenaming: 0 + m_OriginalEventType: 11 + m_IsRenamingFilename: 1 + m_ClientGUIView: {fileID: 0} + m_CreateAssetUtility: + m_EndAction: {fileID: 0} + m_InstanceID: 0 + m_Path: + m_Icon: {fileID: 0} + m_ResourceFile: + m_NewAssetIndexInList: -1 + m_ScrollPosition: {x: 0, y: 0} + m_GridSize: 64 + m_SkipHiddenPackages: 0 + m_DirectoriesAreaWidth: 115 +--- !u!114 &16 +MonoBehaviour: + m_ObjectHideFlags: 52 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 1 + m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Inspector + m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, + type: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 1240 + y: 83 + width: 321 + height: 753 + m_ViewDataDictionary: {fileID: 0} + m_OpenAddComponentMenu: 0 + m_ObjectsLockedBeforeSerialization: [] + m_InstanceIDsLockedBeforeSerialization: + m_LockTracker: + m_IsLocked: 0 + m_PreviewResizer: + m_CachedPref: -160 + m_ControlHash: -371814159 + m_PrefName: Preview_InspectorPreview + m_PreviewWindow: {fileID: 0} + m_LastInspectedObjectInstanceID: -1 + m_LastVerticalScrollValue: 0 diff --git a/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt b/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt index 4a7a56213..29b6b7499 100644 --- a/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt +++ b/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt @@ -23,10 +23,10 @@ MonoBehaviour: y: 30 width: 1440 height: 700 - m_MinSize: {x: 911, y: 421} - m_MaxSize: {x: 22006, y: 10021} + m_MinSize: {x: 910, y: 442} + m_MaxSize: {x: 22005, y: 10021} vertical: 0 - controlID: -1 + controlID: 5035 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -48,7 +48,7 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 19 + x: 122 y: 442 width: 654 height: 320 @@ -61,7 +61,7 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 960, y: 640} + m_TargetSize: {x: 1024, y: 768} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -70,16 +70,16 @@ MonoBehaviour: m_VSyncEnabled: 0 m_Gizmos: 0 m_Stats: 0 - m_SelectedSizes: 08000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_SelectedSizes: 06000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: m_HRangeLocked: 0 m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -240 - m_HBaseRangeMax: 240 - m_VBaseRangeMin: -160 - m_VBaseRangeMax: 160 + m_HBaseRangeMin: -256 + m_HBaseRangeMax: 256 + m_VBaseRangeMin: -192 + m_VBaseRangeMax: 192 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -99,7 +99,7 @@ MonoBehaviour: y: 21 width: 654 height: 299 - m_Scale: {x: 0.934375, y: 0.934375} + m_Scale: {x: 0.7786458, y: 0.7786458} m_Translation: {x: 327, y: 149.5} m_MarginLeft: 0 m_MarginRight: 0 @@ -107,12 +107,12 @@ MonoBehaviour: m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -349.96655 - y: -160 - width: 699.9331 - height: 320 + x: -419.95987 + y: -192 + width: 839.91974 + height: 384 m_MinimalGUI: 1 - m_defaultScale: 0.934375 + m_defaultScale: 0.7786458 m_LastWindowPixelSize: {x: 1308, y: 640} m_ClearInEditMode: 1 m_NoCameraWarning: 1 @@ -140,10 +140,10 @@ MonoBehaviour: y: 0 width: 655 height: 700 - m_MinSize: {x: 201, y: 421} - m_MaxSize: {x: 4001, y: 8021} + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} vertical: 1 - controlID: -1 + controlID: 4964 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -154,7 +154,7 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Name: SceneView m_EditorClassIdentifier: m_Children: [] m_Position: @@ -191,7 +191,7 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 19 + x: 122 y: 83 width: 654 height: 338 @@ -358,7 +358,7 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 674 + x: 777 y: 83 width: 229 height: 679 @@ -368,7 +368,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: d8f7ffff44f9ffff62fbffff + m_ExpandedIDs: 00faffff1cfbffff0e3900002a390000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -411,8 +411,8 @@ MonoBehaviour: y: 0 width: 232 height: 700 - m_MinSize: {x: 232, y: 271} - m_MaxSize: {x: 10002, y: 10021} + m_MinSize: {x: 230, y: 250} + m_MaxSize: {x: 10000, y: 10000} m_ActualView: {fileID: 10} m_Panes: - {fileID: 10} @@ -439,7 +439,7 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 905 + x: 1008 y: 83 width: 230 height: 679 @@ -456,19 +456,21 @@ MonoBehaviour: m_ShowAllHits: 0 m_SkipHidden: 0 m_SearchArea: 1 - m_Folders: [] + m_Folders: + - Assets m_ViewMode: 0 m_StartGridSize: 64 m_LastFolders: [] m_LastFoldersGridSize: -1 - m_LastProjectPath: /Users/guzdial/Downloads/CMPUT 250 W24 Lab 3 + m_LastProjectPath: /Users/alyshavanbibber/CMPUT-250-F24-Lab-3/CMPUT 250 W24 Lab + 3 m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} m_SelectedIDs: da3b0000 m_LastClickedID: 15322 - m_ExpandedIDs: ffffffff9a4d0000 + m_ExpandedIDs: ffffffff000000003e39000070390000a4390000ffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -494,9 +496,9 @@ MonoBehaviour: m_ResourceFile: m_AssetTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: + m_SelectedIDs: 0af9ffff m_LastClickedID: 0 - m_ExpandedIDs: ffffffff9a4d0000 + m_ExpandedIDs: ffffffff000000003e39000070390000a4390000ffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -521,8 +523,8 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: - m_LastClickedInstanceID: 0 + m_SelectedInstanceIDs: 0af9ffff + m_LastClickedInstanceID: -1782 m_HadKeyboardFocusLastEvent: 0 m_ExpandedInstanceIDs: m_RenameOverlay: @@ -571,8 +573,8 @@ MonoBehaviour: y: 0 width: 322 height: 700 - m_MinSize: {x: 276, y: 71} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 12} m_Panes: - {fileID: 12} @@ -599,7 +601,7 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1137 + x: 1240 y: 83 width: 321 height: 679 @@ -614,5 +616,5 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_PreviewWindow: {fileID: 0} - m_LastInspectedObjectInstanceID: -1 + m_LastInspectedObjectInstanceID: -1782 m_LastVerticalScrollValue: 0 diff --git a/CMPUT 250 W24 Lab 3/Library/EditorInstance.json b/CMPUT 250 W24 Lab 3/Library/EditorInstance.json new file mode 100644 index 000000000..e1a387c95 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/EditorInstance.json @@ -0,0 +1,6 @@ +{ + "process_id" : 29748, + "version" : "2019.4.18f1", + "app_path" : "/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app", + "app_contents_path" : "/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents" +} \ No newline at end of file diff --git a/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset b/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset index 891e52f99..7e2c9bc23 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset and b/CMPUT 250 W24 Lab 3/Library/EditorUserBuildSettings.asset differ diff --git a/CMPUT 250 W24 Lab 3/Library/InspectorExpandedItems.asset b/CMPUT 250 W24 Lab 3/Library/InspectorExpandedItems.asset index fb4b2d580..c2dd74039 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/InspectorExpandedItems.asset and b/CMPUT 250 W24 Lab 3/Library/InspectorExpandedItems.asset differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll index 056c4ac86..4d5bcf05c 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp index 0f89ddf75..12c47de28 100644 --- a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp +++ b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/BuiltinAssemblies.stamp @@ -1 +1 @@ -08d8c0e334456f00.08d8c0e334456f00 \ No newline at end of file +08dd366f16e73780.08dd366f16e73780 \ No newline at end of file diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll index c208b4af6..ce5f7493e 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/PsdPlugin.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll index df6dab487..71e03aa88 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll index a4dd70ed6..1ce447ded 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll index 40ea5bb2d..08aa256dd 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll index 613b2d985..f924aa936 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll index 1c5d55977..a2265f3e5 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll index e1afc3997..190cfcff9 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Path.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll index 8df8d1076..790420ea5 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll index 570598698..1e63fdc29 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll index 32709b32b..14b5a72e7 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll index 0b814f600..c09555fed 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll index 16d62e048..3e806d1ea 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll index 3149d026f..bfdc5b450 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll index e1b46787d..446b8a2fe 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll index 84a9762aa..d1788595f 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll index 3b6c5ef89..f80d6fc78 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll index 225b94032..e90b382f0 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll index 336af934c..360c07989 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll index e37f27898..16ca2a5e0 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Mathematics.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll index 6bac6ae6c..690fc285f 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Rider.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll index 8d3849f54..d8c166278 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll index c4541dd33..09f2e2c62 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.TextMeshPro.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll index 935b925c8..a283b9e50 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll index 6eefd869c..1886c7932 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.Timeline.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll index b57b34afc..46719285f 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/Unity.VSCode.Editor.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll index ac4bf1486..17cbc0ee2 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.TestRunner.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll index e952ef5de..ab35e3758 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEditor.UI.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll index 8d8e3f837..648236cf6 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.TestRunner.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll index 6407729d6..511a8b0e7 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll and b/CMPUT 250 W24 Lab 3/Library/ScriptAssemblies/UnityEngine.UI.dll differ diff --git a/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants b/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants index 38117e95c..65c0fbdeb 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants and b/CMPUT 250 W24 Lab 3/Library/ShaderCache/EditorEncounteredVariants differ diff --git a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB index 3be50cff3..9d9ac2563 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB and b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB differ diff --git a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock index de130a9a0..288b57305 100755 Binary files a/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock and b/CMPUT 250 W24 Lab 3/Library/SourceAssetDB-lock differ diff --git a/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json b/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json index a140c34ad..4dbb850ef 100644 --- a/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json +++ b/CMPUT 250 W24 Lab 3/Library/StateCache/Hierarchy/a0e2d0-mainStage.json @@ -1 +1 @@ -{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-2088,-1724,-1182],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file +{"m_ExpandedPrefabGameObjectFileIDs":[],"m_ExpandedSceneGameObjectInstanceIDs":[-1180],"m_ScrollY":0.0,"m_LastClickedFileID":0,"m_LastClickedInstanceID":0} \ No newline at end of file diff --git a/CMPUT 250 W24 Lab 3/Library/expandedItems b/CMPUT 250 W24 Lab 3/Library/expandedItems index e917ba501..07769cd18 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/expandedItems and b/CMPUT 250 W24 Lab 3/Library/expandedItems differ diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler0.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler0.log index 09140b05c..b40d9a7c3 100644 --- a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler0.log +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler0.log @@ -1,67 +1,2 @@ Base path: '/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileSnippet - api=14 type=0 insize=1582 outsize=1546 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1582 outsize=951 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=5029 outsize=2525 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=5029 outsize=6410 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=5029 outsize=2525 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=5029 outsize=6410 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=7853 outsize=2525 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=7853 outsize=8690 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=7853 outsize=2525 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=7853 outsize=8690 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1341 outsize=1657 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1341 outsize=920 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1341 outsize=1657 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1341 outsize=920 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1878 outsize=2441 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1878 outsize=1828 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1878 outsize=2441 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1878 outsize=1828 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1842 outsize=2441 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1842 outsize=1834 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1842 outsize=2441 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1842 outsize=1834 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1701 outsize=2478 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1701 outsize=1246 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=1701 outsize=2478 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=1701 outsize=1246 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=4140 outsize=3151 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=4140 outsize=2835 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: initializeCompiler -Cmd: compileSnippet - api=14 type=0 insize=2984 outsize=2718 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=2984 outsize=1050 kw= pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=0 insize=731 outsize=1755 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 -Cmd: compileSnippet - api=14 type=1 insize=731 outsize=1407 kw=ETC1_EXTERNAL_ALPHA pd=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_COLORSPACE_GAMMA UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR ok=1 diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler1.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler1.log new file mode 100644 index 000000000..b40d9a7c3 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler1.log @@ -0,0 +1,2 @@ +Base path: '/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines' +Cmd: initializeCompiler diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler2.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler2.log new file mode 100644 index 000000000..b40d9a7c3 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler2.log @@ -0,0 +1,2 @@ +Base path: '/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines' +Cmd: initializeCompiler diff --git a/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler3.log b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler3.log new file mode 100644 index 000000000..490239e22 --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler3.log @@ -0,0 +1,4 @@ +Base path: '/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines' +Cmd: initializeCompiler + +Quitting shader compiler process diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityLockfile b/CMPUT 250 W24 Lab 3/Temp/UnityLockfile new file mode 100644 index 000000000..e69de29bb diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-04fdfb9949e884914951c7ddeaae3471 b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-04fdfb9949e884914951c7ddeaae3471 new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-04fdfb9949e884914951c7ddeaae3471 @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-12f690ef859324a3d8243962b5527818 b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-12f690ef859324a3d8243962b5527818 new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-12f690ef859324a3d8243962b5527818 @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-407b1f8eb97a343d1b677556f589d33b b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-407b1f8eb97a343d1b677556f589d33b new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-407b1f8eb97a343d1b677556f589d33b @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-5bc7b8f146fd54654862a8b38ecaf05a b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-5bc7b8f146fd54654862a8b38ecaf05a new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-5bc7b8f146fd54654862a8b38ecaf05a @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-77a2484a4357a417692b1b1110426080 b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-77a2484a4357a417692b1b1110426080 new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-77a2484a4357a417692b1b1110426080 @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-97aed4b93b92046abad7c435200835e2 b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-97aed4b93b92046abad7c435200835e2 new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-97aed4b93b92046abad7c435200835e2 @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-9c928255b0dd0433c83869c53af9437e b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-9c928255b0dd0433c83869c53af9437e new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-9c928255b0dd0433c83869c53af9437e @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-eeced7ee85bde4cb79dddfbe676c3718 b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-eeced7ee85bde4cb79dddfbe676c3718 new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-eeced7ee85bde4cb79dddfbe676c3718 @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-f9294845f970c45ec96dd1f63e4f5c64 b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-f9294845f970c45ec96dd1f63e4f5c64 new file mode 100644 index 000000000..c095116ae --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Temp/UnityTempFile-f9294845f970c45ec96dd1f63e4f5c64 @@ -0,0 +1,315 @@ +/target:library +/nowarn:0169 +/nowarn:0649 +/out:"Temp/Assembly-CSharp.dll" +/debug:portable +/optimize- +/nostdlib+ +/preferreduilang:en-US +/langversion:latest +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ARModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AccessibilityModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AndroidJNIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AnimationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.AudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClothModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterInputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ClusterRendererModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.CrashReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DSPGraphModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.DirectorModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GameCenterModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.GridModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.HotReloadModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.IMGUIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ImageConversionModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.InputLegacyModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.JSONSerializeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.LocalizationModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ParticleSystemModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PerformanceReportingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.PhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.Physics2DModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ProfilerModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.ScreenCaptureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SharedInternalsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteMaskModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SpriteShapeModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.StreamingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubstanceModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.SubsystemsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TLSModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TerrainPhysicsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextCoreModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TextRenderingModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.TilemapModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UIElementsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UNETModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UmbraModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityAnalyticsModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityConnectModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityTestProtocolModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAssetBundleModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestAudioModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestTextureModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.UnityWebRequestWWWModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VFXModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VehiclesModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.VideoModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.WindModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEngine/UnityEngine.XRModule.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/Managed/UnityEditor.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.VSCode.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Path.Editor.dll" +/reference:"Library/ScriptAssemblies/UnityEngine.UI.dll" +/reference:"Library/ScriptAssemblies/Unity.Timeline.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Triangle.Runtime.dll" +/reference:"Library/ScriptAssemblies/PsdPlugin.dll" +/reference:"Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Rider.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Psdimporter.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEngineBridge.001.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Tilemap.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.SpriteShape.Runtime.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.PixelPerfect.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Animation.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.TextMeshPro.dll" +/reference:"Library/ScriptAssemblies/Unity.2D.Common.Editor.dll" +/reference:"Library/ScriptAssemblies/Unity.InternalAPIEditorBridge.001.dll" +/reference:"Library/ScriptAssemblies/UnityEditor.UI.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/AppleTVSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Xcode.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/PlaybackEngines/iOSSupport/UnityEditor.iOS.Extensions.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/ref/2.0.0/netstandard.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/Microsoft.Win32.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.AppContext.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Concurrent.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.NonGeneric.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.Specialized.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Collections.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.EventBasedAsync.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.TypeConverter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ComponentModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Console.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Data.Common.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Contracts.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Debug.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.FileVersionInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Process.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.StackTrace.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TextWriterTraceListener.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tools.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.TraceSource.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Diagnostics.Tracing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Drawing.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Dynamic.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Calendars.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Globalization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.ZipFile.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Compression.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.DriveInfo.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.Watcher.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.IsolatedStorage.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.MemoryMappedFiles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.Pipes.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.UnmanagedMemoryStream.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.IO.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Expressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.Queryable.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Http.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NameResolution.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.NetworkInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Ping.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Requests.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Security.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.Sockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebHeaderCollection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.Client.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Net.WebSockets.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ObjectModel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Reflection.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Reader.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.ResourceManager.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Resources.Writer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.CompilerServices.VisualC.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Handles.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.RuntimeInformation.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.InteropServices.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Formatters.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Json.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.Serialization.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Runtime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Claims.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Algorithms.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Csp.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.Primitives.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Cryptography.X509Certificates.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.Principal.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Security.SecureString.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.Extensions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.Encoding.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Text.RegularExpressions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Overlapped.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.Parallel.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Tasks.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Thread.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.ThreadPool.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.Timer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Threading.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.ValueTuple.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.ReaderWriter.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.XDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XPath.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlDocument.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netstandard/System.Xml.XmlSerializer.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Numerics.Vectors.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/Extensions/2.0.0/System.Runtime.InteropServices.WindowsRuntime.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ComponentModel.Composition.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Core.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Data.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Drawing.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.IO.Compression.FileSystem.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Net.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Numerics.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Runtime.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.ServiceModel.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Transactions.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Web.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Windows.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Linq.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.Serialization.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.Xml.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/System.dll" +/reference:"/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/NetStandard/compat/2.0.0/shims/netfx/mscorlib.dll" +/define:UNITY_2019_4_18 +/define:UNITY_2019_4 +/define:UNITY_2019 +/define:UNITY_5_3_OR_NEWER +/define:UNITY_5_4_OR_NEWER +/define:UNITY_5_5_OR_NEWER +/define:UNITY_5_6_OR_NEWER +/define:UNITY_2017_1_OR_NEWER +/define:UNITY_2017_2_OR_NEWER +/define:UNITY_2017_3_OR_NEWER +/define:UNITY_2017_4_OR_NEWER +/define:UNITY_2018_1_OR_NEWER +/define:UNITY_2018_2_OR_NEWER +/define:UNITY_2018_3_OR_NEWER +/define:UNITY_2018_4_OR_NEWER +/define:UNITY_2019_1_OR_NEWER +/define:UNITY_2019_2_OR_NEWER +/define:UNITY_2019_3_OR_NEWER +/define:UNITY_2019_4_OR_NEWER +/define:PLATFORM_ARCH_64 +/define:UNITY_64 +/define:UNITY_INCLUDE_TESTS +/define:ENABLE_AR +/define:ENABLE_AUDIO +/define:ENABLE_CACHING +/define:ENABLE_CLOTH +/define:ENABLE_MICROPHONE +/define:ENABLE_MULTIPLE_DISPLAYS +/define:ENABLE_PHYSICS +/define:ENABLE_TEXTURE_STREAMING +/define:ENABLE_UNET +/define:ENABLE_LZMA +/define:ENABLE_UNITYEVENTS +/define:ENABLE_VR +/define:ENABLE_WEBCAM +/define:ENABLE_UNITYWEBREQUEST +/define:ENABLE_WWW +/define:ENABLE_CLOUD_SERVICES +/define:ENABLE_CLOUD_SERVICES_COLLAB +/define:ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS +/define:ENABLE_CLOUD_SERVICES_ADS +/define:ENABLE_CLOUD_SERVICES_USE_WEBREQUEST +/define:ENABLE_CLOUD_SERVICES_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_NATIVE_CRASH_REPORTING +/define:ENABLE_CLOUD_SERVICES_PURCHASING +/define:ENABLE_CLOUD_SERVICES_ANALYTICS +/define:ENABLE_CLOUD_SERVICES_UNET +/define:ENABLE_CLOUD_SERVICES_BUILD +/define:ENABLE_CLOUD_LICENSE +/define:ENABLE_EDITOR_HUB_LICENSE +/define:ENABLE_WEBSOCKET_CLIENT +/define:ENABLE_DIRECTOR_AUDIO +/define:ENABLE_DIRECTOR_TEXTURE +/define:ENABLE_MANAGED_JOBS +/define:ENABLE_MANAGED_TRANSFORM_JOBS +/define:ENABLE_MANAGED_ANIMATION_JOBS +/define:ENABLE_MANAGED_AUDIO_JOBS +/define:INCLUDE_DYNAMIC_GI +/define:ENABLE_MONO_BDWGC +/define:ENABLE_SCRIPTING_GC_WBARRIERS +/define:PLATFORM_SUPPORTS_MONO +/define:RENDER_SOFTWARE_CURSOR +/define:ENABLE_VIDEO +/define:PLATFORM_STANDALONE +/define:PLATFORM_STANDALONE_OSX +/define:UNITY_STANDALONE_OSX +/define:UNITY_STANDALONE +/define:ENABLE_GAMECENTER +/define:ENABLE_RUNTIME_GI +/define:ENABLE_MOVIES +/define:ENABLE_NETWORK +/define:ENABLE_CRUNCH_TEXTURE_COMPRESSION +/define:ENABLE_CLUSTER_SYNC +/define:ENABLE_CLUSTERINPUT +/define:ENABLE_SPATIALTRACKING +/define:ENABLE_WEBSOCKET_HOST +/define:ENABLE_MONO +/define:NET_STANDARD_2_0 +/define:ENABLE_PROFILER +/define:DEBUG +/define:TRACE +/define:UNITY_ASSERTIONS +/define:UNITY_EDITOR +/define:UNITY_EDITOR_64 +/define:UNITY_EDITOR_OSX +/define:ENABLE_UNITY_COLLECTIONS_CHECKS +/define:ENABLE_BURST_AOT +/define:UNITY_TEAM_LICENSE +/define:ENABLE_VSTU +/define:ENABLE_CUSTOM_RENDER_TEXTURE +/define:ENABLE_DIRECTOR +/define:ENABLE_LOCALIZATION +/define:ENABLE_SPRITES +/define:ENABLE_TERRAIN +/define:ENABLE_TILEMAP +/define:ENABLE_TIMELINE +/define:ENABLE_LEGACY_INPUT_MANAGER +/define:CSHARP_7_OR_LATER +/define:CSHARP_7_3_OR_NEWER +"Assets/DVDLogo.cs" diff --git a/CMPUT 250 W24 Lab 3/Temp/__Backupscenes/0.backup b/CMPUT 250 W24 Lab 3/Temp/__Backupscenes/0.backup new file mode 100644 index 000000000..7a0bf8d8e Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Temp/__Backupscenes/0.backup differ diff --git a/CMPUT 250 W24 Lab 3/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache b/CMPUT 250 W24 Lab 3/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache new file mode 100644 index 000000000..79f93c0f0 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/obj/Debug/Assembly-CSharp.csproj.AssemblyReference.cache differ