diff --git a/CMPUT 250 W24 Lab 3/Assets/47-476794_white-dvd-logo-png-dvd-logo-no-png.png b/CMPUT 250 W24 Lab 3/Assets/47-476794_white-dvd-logo-png-dvd-logo-no-png.png new file mode 100644 index 000000000..c8f7fd0a5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Assets/47-476794_white-dvd-logo-png-dvd-logo-no-png.png differ diff --git a/CMPUT 250 W24 Lab 3/Assets/47-476794_white-dvd-logo-png-dvd-logo-no-png.png.meta b/CMPUT 250 W24 Lab 3/Assets/47-476794_white-dvd-logo-png-dvd-logo-no-png.png.meta new file mode 100644 index 000000000..edfe3a67f --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Assets/47-476794_white-dvd-logo-png-dvd-logo-no-png.png.meta @@ -0,0 +1,128 @@ +fileFormatVersion: 2 +guid: 71e3f7df99f9a4e509ccafe48b85b988 +TextureImporter: + internalIDToNameTable: + - first: + 213: 1809748587983926915 + second: dvdLogo + 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 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: dvdLogo + rect: + serializedVersion: 2 + x: 0 + y: 81 + width: 320 + height: 158 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 386fb8790c48d1910800000000000000 + internalID: 1809748587983926915 + 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/Assets/DVDLogo.cs b/CMPUT 250 W24 Lab 3/Assets/DVDLogo.cs index ce0322575..362ffb184 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 = 5; + SpriteRenderer sprite; //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; @@ -17,6 +18,7 @@ public class DVDLogo : MonoBehaviour void Start() { //Randomly initialize direction + sprite = GetComponentInChildren(); direction = new Vector3(Random.Range(-1f,1f), Random.Range(-1f,1f)); direction.Normalize(); @@ -46,17 +48,21 @@ void Update() //See if a bounce needs to happen before moving if (newPosition.x>X_Max){ FlipDirectionX(); + sprite.color = new Color (0, 1, 0, 1); } else if (newPosition.x<-1*X_Max){ FlipDirectionX(); + sprite.color = new Color (0, 0, 1, 1); } if (newPosition.y>Y_Max){ FlipDirectionY(); + sprite.color = new Color (1, 0, 1, 1); } else if (newPosition.y<-1*Y_Max){ FlipDirectionY(); + sprite.color = new Color (1, 0, 1, 1); } transform.position += direction*Time.deltaTime*speed; diff --git a/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity b/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity index edc272572..677941e4f 100644 --- a/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity +++ b/CMPUT 250 W24 Lab 3/Assets/Scenes/SampleScene.unity @@ -132,7 +132,7 @@ GameObject: - component: {fileID: 421997421} - component: {fileID: 421997422} m_Layer: 0 - m_Name: Bouncing Ball + m_Name: Logo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -262,7 +262,7 @@ GameObject: - component: {fileID: 755472558} - component: {fileID: 755472559} m_Layer: 0 - m_Name: Circle + m_Name: DVDLogo m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -277,7 +277,7 @@ Transform: 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_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] m_Father: {fileID: 421997421} m_RootOrder: 0 @@ -321,7 +321,8 @@ SpriteRenderer: m_SortingLayerID: 0 m_SortingLayer: 0 m_SortingOrder: 0 - m_Sprite: {fileID: 21300000, guid: 6e7069a7db07f489a87c0797b3ff2165, type: 3} + m_Sprite: {fileID: 1809748587983926915, guid: 71e3f7df99f9a4e509ccafe48b85b988, + type: 3} m_Color: {r: 1, g: 1, b: 1, a: 1} m_FlipX: 0 m_FlipY: 0 @@ -566,7 +567,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: This is a bouncing ball + m_Text: It will neber hit the corner. --- !u!222 &2098954804 CanvasRenderer: m_ObjectHideFlags: 0 diff --git a/CMPUT 250 W24 Lab 3/Library/ArtifactDB b/CMPUT 250 W24 Lab 3/Library/ArtifactDB index 957140ffc..f08e8a507 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..2ee7b5f8c 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/08/0887d477fa99df469bc536f01a6ee4c1 b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/0887d477fa99df469bc536f01a6ee4c1 new file mode 100644 index 000000000..6c1bc68a5 Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/08/0887d477fa99df469bc536f01a6ee4c1 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/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/08/084ad153c2407af7d1224c24651c06e5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/5e/5e10089ead49eeb57af73807bd8ddb0e similarity index 92% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/08/084ad153c2407af7d1224c24651c06e5 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/5e/5e10089ead49eeb57af73807bd8ddb0e index a4208dc60..920216b56 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/08/084ad153c2407af7d1224c24651c06e5 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/5e/5e10089ead49eeb57af73807bd8ddb0e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 b/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 deleted file mode 100644 index d4653b689..000000000 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/64/648477200d1df033aaa57fc2e9b52be5 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/73/7357109d0cedae1b4ace4cf6e31c416e b/CMPUT 250 W24 Lab 3/Library/Artifacts/73/7357109d0cedae1b4ace4cf6e31c416e new file mode 100644 index 000000000..a3b8c54ac Binary files /dev/null and b/CMPUT 250 W24 Lab 3/Library/Artifacts/73/7357109d0cedae1b4ace4cf6e31c416e differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 b/CMPUT 250 W24 Lab 3/Library/Artifacts/8b/8ba4f7128728b8e14d9b8d6691d757e2 similarity index 83% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/8b/8ba4f7128728b8e14d9b8d6691d757e2 index fd988326a..1dca46f94 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f750e82374aa24af6c8ab9c6adc07740 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/8b/8ba4f7128728b8e14d9b8d6691d757e2 differ diff --git a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 b/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f70462a09111f93cc2481fd7d5986eb0 similarity index 81% rename from CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 rename to CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f70462a09111f93cc2481fd7d5986eb0 index 93b84d99f..546244709 100644 Binary files a/CMPUT 250 W24 Lab 3/Library/Artifacts/eb/ebf2ccfb17978bf24cdf582131fb2989 and b/CMPUT 250 W24 Lab 3/Library/Artifacts/f7/f70462a09111f93cc2481fd7d5986eb0 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..e7ac61462 100644 --- a/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt +++ b/CMPUT 250 W24 Lab 3/Library/CurrentLayout-default.dwlt @@ -20,7 +20,7 @@ MonoBehaviour: height: 631 m_ShowMode: 0 m_Title: - m_RootView: {fileID: 5} + m_RootView: {fileID: 4} m_MinSize: {x: 100, y: 121} m_MaxSize: {x: 4000, y: 4021} m_Maximized: 0 @@ -38,39 +38,17 @@ MonoBehaviour: m_EditorClassIdentifier: m_PixelRect: serializedVersion: 2 - x: 19 - y: 53 - width: 1440 + x: 222 + y: 66 + width: 1248 height: 750 m_ShowMode: 4 m_Title: - m_RootView: {fileID: 6} - m_MinSize: {x: 875, y: 471} + m_RootView: {fileID: 5} + m_MinSize: {x: 875, y: 492} m_MaxSize: {x: 10000, y: 10000} m_Maximized: 0 --- !u!114 &3 -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: 0 - m_Script: {fileID: 12060, guid: 0000000000000000e000000000000000, type: 0} - m_Name: GameView - 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} ---- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -89,14 +67,14 @@ MonoBehaviour: y: 0 width: 1298 height: 631 - m_MinSize: {x: 100, y: 121} - m_MaxSize: {x: 4000, y: 4021} - m_ActualView: {fileID: 9} + m_MinSize: {x: 100, y: 100} + m_MaxSize: {x: 4000, y: 4000} + m_ActualView: {fileID: 15} m_Panes: - - {fileID: 9} + - {fileID: 15} m_Selected: 0 m_LastSelected: 0 ---- !u!114 &5 +--- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -109,7 +87,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 4} + - {fileID: 3} m_Position: serializedVersion: 2 x: 0 @@ -119,8 +97,8 @@ MonoBehaviour: m_MinSize: {x: 100, y: 121} m_MaxSize: {x: 4000, y: 4021} vertical: 0 - controlID: 416 ---- !u!114 &6 + controlID: 102 +--- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -133,18 +111,18 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Children: - - {fileID: 7} - - {fileID: 3} + - {fileID: 6} - {fileID: 8} + - {fileID: 7} m_Position: serializedVersion: 2 x: 0 y: 0 - width: 1440 + width: 1248 height: 750 - m_MinSize: {x: 875, y: 471} + m_MinSize: {x: 875, y: 492} m_MaxSize: {x: 10000, y: 10000} ---- !u!114 &7 +--- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -161,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1440 + width: 1248 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} m_LastLoadedLayoutName: ---- !u!114 &8 +--- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -183,11 +161,194 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 730 - width: 1440 + width: 1248 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} +--- !u!114 &8 +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: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 9} + - {fileID: 12} + - {fileID: 13} + - {fileID: 14} + m_Position: + serializedVersion: 2 + x: 0 + y: 30 + width: 1248 + height: 700 + m_MinSize: {x: 908, y: 442} + m_MaxSize: {x: 22003, y: 10021} + vertical: 0 + controlID: 984 --- !u!114 &9 +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: 12010, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: + - {fileID: 10} + - {fileID: 11} + m_Position: + serializedVersion: 2 + x: 0 + y: 0 + width: 535 + height: 700 + m_MinSize: {x: 201, y: 442} + m_MaxSize: {x: 4001, y: 8042} + vertical: 1 + controlID: 985 +--- !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: 0 + y: 0 + width: 535 + height: 359 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 17} + m_Panes: + - {fileID: 17} + 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: GameView + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 0 + y: 359 + width: 535 + height: 341 + m_MinSize: {x: 201, y: 221} + 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} + 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: 535 + y: 0 + width: 202 + height: 700 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} + m_ActualView: {fileID: 18} + m_Panes: + - {fileID: 18} + m_Selected: 0 + m_LastSelected: 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: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 737 + y: 0 + width: 232 + height: 700 + m_MinSize: {x: 232, y: 271} + m_MaxSize: {x: 10002, y: 10021} + m_ActualView: {fileID: 19} + m_Panes: + - {fileID: 19} + m_Selected: 0 + m_LastSelected: 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: 12006, guid: 0000000000000000e000000000000000, type: 0} + m_Name: InspectorWindow + m_EditorClassIdentifier: + m_Children: [] + m_Position: + serializedVersion: 2 + x: 969 + y: 0 + width: 279 + height: 700 + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} + m_ActualView: {fileID: 20} + m_Panes: + - {fileID: 20} + - {fileID: 21} + m_Selected: 0 + m_LastSelected: 1 +--- !u!114 &15 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -213,7 +374,7 @@ MonoBehaviour: width: 1298 height: 610 m_ViewDataDictionary: {fileID: 0} ---- !u!114 &10 +--- !u!114 &16 MonoBehaviour: m_ObjectHideFlags: 52 m_CorrespondingSourceObject: {fileID: 0} @@ -234,10 +395,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 19 - y: 83 - width: 1440 - height: 681 + x: 222 + y: 455 + width: 534 + height: 320 m_ViewDataDictionary: {fileID: 0} m_SerializedViewNames: [] m_SerializedViewValues: [] @@ -247,7 +408,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 @@ -256,16 +417,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 @@ -283,25 +444,400 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1440 - height: 660 - m_Scale: {x: 2, y: 2} - m_Translation: {x: 720, y: 330} + width: 534 + height: 299 + m_Scale: {x: 0.7786458, y: 0.7786458} + m_Translation: {x: 267, y: 149.5} 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: -342.903 + y: -192 + width: 685.806 + height: 384 m_MinimalGUI: 1 - m_defaultScale: 2 - m_LastWindowPixelSize: {x: 2880, y: 1362} + m_defaultScale: 0.7786458 + m_LastWindowPixelSize: {x: 1068, y: 640} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 m_XRRenderMode: 0 m_RenderTexture: {fileID: 0} +--- !u!114 &17 +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: 222 + y: 96 + width: 534 + height: 338 + 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 &18 +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: 757 + y: 96 + width: 200 + height: 679 + m_ViewDataDictionary: {fileID: 0} + m_SceneHierarchy: + m_TreeViewState: + scrollPos: {x: 0, y: 0} + m_SelectedIDs: 66320000 + m_LastClickedID: 0 + m_ExpandedIDs: 64fbffff0e3900002a390000 + 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: 12} + m_SearchString: + m_ExpandedScenes: [] + m_CurrenRootInstanceID: 0 + m_LockTracker: + m_IsLocked: 0 + m_CurrentSortingName: TransformSorting + m_WindowGUID: a0e2d077c3ae142578f10c4587073557 +--- !u!114 &19 +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: 959 + y: 96 + width: 230 + height: 679 + 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/diyakhajuria/Desktop/school/CMPUT 250/Lab 3/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: ffffffff000000003e3900006e390000 + 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: ffffffff000000003e3900006e390000 + 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 &20 +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: 1191 + y: 96 + width: 278 + height: 679 + 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 +--- !u!114 &21 +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: 0 + m_Script: {fileID: 12157, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Services + m_Image: {fileID: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 1191 + y: 96 + width: 278 + height: 679 + m_ViewDataDictionary: {fileID: 0} + m_InitialOpenURL: https://public-cdn.cloud.unity3d.com/editor/production/cloud/hub + m_GlobalObjectTypeName: + m_RegisteredViewURLs: + - https://public-cdn.cloud.unity3d.com/editor/production/cloud/hub + m_RegisteredViewInstances: + - {fileID: 0} diff --git a/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt b/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt index 4a7a56213..40df5ac09 100644 --- a/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt +++ b/CMPUT 250 W24 Lab 3/Library/CurrentMaximizeLayout.dwlt @@ -21,12 +21,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 30 - width: 1440 + width: 1248 height: 700 - m_MinSize: {x: 911, y: 421} - m_MaxSize: {x: 22006, y: 10021} + m_MinSize: {x: 908, y: 442} + m_MaxSize: {x: 22003, y: 10021} vertical: 0 - controlID: -1 + controlID: 836 --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -48,9 +48,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 19 - y: 442 - width: 654 + x: 222 + y: 455 + width: 534 height: 320 m_ViewDataDictionary: {fileID: 0} m_SerializedViewNames: [] @@ -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 @@ -97,23 +97,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 654 + width: 534 height: 299 - m_Scale: {x: 0.934375, y: 0.934375} - m_Translation: {x: 327, y: 149.5} + m_Scale: {x: 0.7786458, y: 0.7786458} + m_Translation: {x: 267, y: 149.5} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -349.96655 - y: -160 - width: 699.9331 - height: 320 + x: -342.903 + y: -192 + width: 685.806 + height: 384 m_MinimalGUI: 1 - m_defaultScale: 0.934375 - m_LastWindowPixelSize: {x: 1308, y: 640} + m_defaultScale: 0.7786458 + m_LastWindowPixelSize: {x: 1068, y: 640} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -138,12 +138,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 655 + width: 535 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: 790 --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -161,7 +161,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 655 + width: 535 height: 359 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} @@ -191,9 +191,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 19 - y: 83 - width: 654 + x: 222 + y: 96 + width: 534 height: 338 m_ViewDataDictionary: {fileID: 0} m_ShowContextualTools: 0 @@ -302,7 +302,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 359 - width: 655 + width: 535 height: 341 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} @@ -326,12 +326,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 655 + x: 535 y: 0 - width: 231 + width: 202 height: 700 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 8} m_Panes: - {fileID: 8} @@ -358,9 +358,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 674 - y: 83 - width: 229 + x: 757 + y: 96 + width: 200 height: 679 m_ViewDataDictionary: {fileID: 0} m_SceneHierarchy: @@ -368,7 +368,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: d8f7ffff44f9ffff62fbffff + m_ExpandedIDs: 64fbffff0e3900002a390000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -407,12 +407,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 886 + x: 737 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,8 +439,8 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 905 - y: 83 + x: 959 + y: 96 width: 230 height: 679 m_ViewDataDictionary: {fileID: 0} @@ -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/diyakhajuria/Desktop/school/CMPUT 250/Lab 3/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: ffffffff000000003e3900006e390000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -494,9 +496,9 @@ MonoBehaviour: m_ResourceFile: m_AssetTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: - m_LastClickedID: 0 - m_ExpandedIDs: ffffffff9a4d0000 + m_SelectedIDs: 66320000 + m_LastClickedID: 12902 + m_ExpandedIDs: ffffffff000000003e3900006e390000 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: 66320000 + m_LastClickedInstanceID: 12902 m_HadKeyboardFocusLastEvent: 0 m_ExpandedInstanceIDs: m_RenameOverlay: @@ -562,22 +564,23 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: + m_Name: InspectorWindow m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 1118 + x: 969 y: 0 - width: 322 + width: 279 height: 700 m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 12} m_Panes: - {fileID: 12} + - {fileID: 13} m_Selected: 0 - m_LastSelected: 0 + m_LastSelected: 1 --- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 @@ -599,9 +602,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1137 - y: 83 - width: 321 + x: 1191 + y: 96 + width: 278 height: 679 m_ViewDataDictionary: {fileID: 0} m_OpenAddComponentMenu: 0 @@ -614,5 +617,36 @@ MonoBehaviour: m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview m_PreviewWindow: {fileID: 0} - m_LastInspectedObjectInstanceID: -1 + m_LastInspectedObjectInstanceID: 12902 m_LastVerticalScrollValue: 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: 0 + m_Script: {fileID: 12157, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_MinSize: {x: 275, y: 50} + m_MaxSize: {x: 4000, y: 4000} + m_TitleContent: + m_Text: Services + m_Image: {fileID: 0} + m_Tooltip: + m_Pos: + serializedVersion: 2 + x: 1191 + y: 96 + width: 278 + height: 679 + m_ViewDataDictionary: {fileID: 0} + m_InitialOpenURL: https://public-cdn.cloud.unity3d.com/editor/production/cloud/hub + m_GlobalObjectTypeName: + m_RegisteredViewURLs: + - https://public-cdn.cloud.unity3d.com/editor/production/cloud/hub + m_RegisteredViewInstances: + - {fileID: 0} 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..a2511d64f 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..61b160896 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 +08dd3693f5e50d80.08dd3693f5e50d80 \ 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..066cbfa2d 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..5c68ab72c 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..225ee7bf2 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..9a2512853 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..691298015 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..579a29f05 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..a27d631fb 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..d055d6f46 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..07fadeb64 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..b83a44577 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..2b2c68afd 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..fbbea43f8 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..b9457b09c 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..9534cab9a 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..c82a9ebc2 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..371e5b6cb 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..8472d31dc 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..c07976e49 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..942809f50 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..30191d9b2 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..7358aeaf9 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..876a828f5 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..0763ebb5e 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..e3dd88eb2 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..ecba72c6f 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..6197ddc95 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..26e88dd69 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..9a9accdfa 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..0d80711f4 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..d3a938ee4 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..fbdc003c8 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..4461fa5f1 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":[],"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..95e4dd0c8 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..9e517da05 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' +Base path: '/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents', plugins path '/Applications/Unity/Hub/Editor/2019.4.18f1/Unity.app/Contents/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..d61868c0e --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler1.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/Unity.app/Contents/PlaybackEngines' +Cmd: initializeCompiler + +Quitting shader compiler process 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..d61868c0e --- /dev/null +++ b/CMPUT 250 W24 Lab 3/Library/shadercompiler-UnityShaderCompiler2.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/Unity.app/Contents/PlaybackEngines' +Cmd: initializeCompiler + +Quitting shader compiler process 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..d61868c0e --- /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/Unity.app/Contents/PlaybackEngines' +Cmd: initializeCompiler + +Quitting shader compiler process