From b3b170e404ec43bb8bc08ec1f6072812005ebad3 Mon Sep 17 00:00:00 2001 From: Aga Date: Tue, 9 Jul 2024 16:22:36 +0100 Subject: [PATCH 1/4] chore: update the auto assign review config (#6233) --- .github/auto_assign_config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/auto_assign_config.yml b/.github/auto_assign_config.yml index 567418c250..4bc99fe26b 100644 --- a/.github/auto_assign_config.yml +++ b/.github/auto_assign_config.yml @@ -10,11 +10,12 @@ reviewGroups: - lorux0 - davidejensen - popuz - - mikhail-dcl - pravusjif + - mikhail-dcl + - dalkia + - AlejandroAlvarezMelucciDCL qa: - Ludmilafantaniella - - LucasLioyQA - anicalbano filterLabels: From 4fc34f2bb5d033f88e94168c8122fe9da2ddcbdf Mon Sep 17 00:00:00 2001 From: Gon Pombo Date: Wed, 24 Jul 2024 14:57:01 -0300 Subject: [PATCH 2/4] ignore e@ preview messages (#6238) --- browser-interface/packages/entryPoints/startPreview.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/browser-interface/packages/entryPoints/startPreview.ts b/browser-interface/packages/entryPoints/startPreview.ts index 7a919b828c..780e2731f2 100644 --- a/browser-interface/packages/entryPoints/startPreview.ts +++ b/browser-interface/packages/entryPoints/startPreview.ts @@ -35,8 +35,7 @@ export async function startPreview(unityInterface: IUnityInterface) { const ws = new WebSocket(`${location.protocol === 'https:' ? 'wss' : 'ws'}://${document.location.host}`) ws.addEventListener('message', (msg) => { - if (msg.data.startsWith('{')) { - logger.log('Update message from CLI', msg.data) + if (typeof msg.data === 'string' && msg.data.startsWith('{')) { const message: sdk.Messages = JSON.parse(msg.data) handleServerMessage(message) } From 3f36ad15100f14b86bc99b14558656a29aa97d4d Mon Sep 17 00:00:00 2001 From: Romina Marchetti <51088292+RominaMarchetti@users.noreply.github.com> Date: Thu, 25 Jul 2024 10:39:28 -0300 Subject: [PATCH 3/4] style: emotes icon (#6237) * Update textures * Update PlayerPassport.prefab * Update EmotesIcn.png * Update EmotesWheelHUD.prefab * Update EmoteCard.prefab * Update EmoteSlotCard.prefab * Update Taskbar.prefab --- .../EmotesCustomization/EmoteCard.prefab | 4 +- .../EmotesCustomization/EmoteSlotCard.prefab | 4 +- .../Resources/EmotesWheelHUD.prefab | 65 ++++++++++--------- .../Passport/Resources/PlayerPassport.prefab | 6 +- .../HUD/TaskbarHUD/Resources/Taskbar.prefab | 17 +++-- .../Assets/Textures/UI/Common/EmotesIcon.png | 4 +- .../Assets/Textures/UI/Common/EmotesOff.png | 4 +- .../Assets/Textures/UI/Common/EmotesOn.png | 4 +- .../UI/Passport/PassportIcons/EmotesIcn.png | 4 +- 9 files changed, 58 insertions(+), 54 deletions(-) mode change 100644 => 100755 unity-renderer/Assets/Textures/UI/Common/EmotesIcon.png diff --git a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteCard.prefab b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteCard.prefab index d58e0a3cba..48bc6d89ae 100644 --- a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteCard.prefab +++ b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteCard.prefab @@ -1002,8 +1002,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -2.3} - m_SizeDelta: {x: 20, y: 20} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 18, y: 18} m_Pivot: {x: 0, y: 1} --- !u!222 &1067968680794964267 CanvasRenderer: diff --git a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteSlotCard.prefab b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteSlotCard.prefab index ab2f9e9611..7094530fde 100644 --- a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteSlotCard.prefab +++ b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/AvatarEditorHUD/Resources/EmotesCustomization/EmoteSlotCard.prefab @@ -455,8 +455,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 2, y: -2} - m_SizeDelta: {x: 11, y: 11} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0, y: 1} --- !u!222 &4850818203974739451 CanvasRenderer: diff --git a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/EmotesWheelHUD/Resources/EmotesWheelHUD.prefab b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/EmotesWheelHUD/Resources/EmotesWheelHUD.prefab index dd2d06283b..1eaab35214 100644 --- a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/EmotesWheelHUD/Resources/EmotesWheelHUD.prefab +++ b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/EmotesWheelHUD/Resources/EmotesWheelHUD.prefab @@ -723,8 +723,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &2707474641924863602 CanvasRenderer: @@ -754,7 +754,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1218,8 +1218,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5574777437422997797 CanvasRenderer: @@ -1249,7 +1249,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1925,8 +1925,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &7583685785367040411 CanvasRenderer: @@ -1956,7 +1956,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -2589,8 +2589,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &112968691304925994 CanvasRenderer: @@ -2620,7 +2620,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -3709,8 +3709,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &841014662171704921 CanvasRenderer: @@ -3740,7 +3740,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -4450,8 +4450,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5775258425258294350 CanvasRenderer: @@ -4481,7 +4481,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -5154,8 +5154,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &6486707974257334458 CanvasRenderer: @@ -5185,7 +5185,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -5627,8 +5627,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &5392225803950969162 CanvasRenderer: @@ -5658,7 +5658,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -6454,8 +6454,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4386616069319312971 CanvasRenderer: @@ -6485,7 +6485,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -7756,8 +7756,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -6.0276356, y: 5.97242} - m_SizeDelta: {x: 7, y: 7} + m_AnchoredPosition: {x: -5, y: 5} + m_SizeDelta: {x: 10, y: 10} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &1771334870392521315 CanvasRenderer: @@ -7787,7 +7787,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 444dfe6ea294f4c22b1620698d4ce011, type: 3} + m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -10707,6 +10707,11 @@ PrefabInstance: propertyPath: m_Name value: Thumbnail objectReference: {fileID: 0} + - target: {fileID: 6719010960977733696, guid: 4849d2ed3b5a18948bf3cd46256869a4, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] diff --git a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Passport/Resources/PlayerPassport.prefab b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Passport/Resources/PlayerPassport.prefab index a690f50ce1..cc74ab883b 100644 --- a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Passport/Resources/PlayerPassport.prefab +++ b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/Passport/Resources/PlayerPassport.prefab @@ -9183,7 +9183,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 32, y: -28} - m_SizeDelta: {x: 23.2504, y: 20.0978} + m_SizeDelta: {x: 23.2504, y: 28} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &9085653859322830480 CanvasRenderer: @@ -20432,7 +20432,7 @@ PrefabInstance: - target: {fileID: 1616525665509150121, guid: 59dab406fb0f74972a9f59906589040d, type: 3} propertyPath: m_IsActive - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 1659266317040970982, guid: 59dab406fb0f74972a9f59906589040d, type: 3} @@ -20542,7 +20542,7 @@ PrefabInstance: - target: {fileID: 3255177139748142192, guid: 59dab406fb0f74972a9f59906589040d, type: 3} propertyPath: m_IsActive - value: 1 + value: 0 objectReference: {fileID: 0} - target: {fileID: 3355408138738260923, guid: 59dab406fb0f74972a9f59906589040d, type: 3} diff --git a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/TaskbarHUD/Resources/Taskbar.prefab b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/TaskbarHUD/Resources/Taskbar.prefab index f9377b0e03..a2981a83c7 100644 --- a/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/TaskbarHUD/Resources/Taskbar.prefab +++ b/unity-renderer/Assets/Scripts/MainScripts/DCL/Controllers/HUD/TaskbarHUD/Resources/Taskbar.prefab @@ -1003,8 +1003,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0} m_AnchorMax: {x: 0.5, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 40, y: 40} + m_AnchoredPosition: {x: 0, y: 3} + m_SizeDelta: {x: 34, y: 34} m_Pivot: {x: 0.5, y: 0} --- !u!222 &8871550248471926608 CanvasRenderer: @@ -1072,7 +1072,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 21300000, guid: 05bc7d6b12857fb4b9b7634bf2a4f440, type: 3} + m_Sprite: {fileID: 21300000, guid: c6cb56bd6fdab4d49879218fffcfc7f7, type: 3} m_Type: 0 m_PreserveAspect: 1 m_FillCenter: 1 @@ -1247,11 +1247,10 @@ MonoBehaviour: m_EditorClassIdentifier: showHideAnimator: {fileID: 0} contentModerationButton: {fileID: 6832325096302936748} - contentModerationRatingText: {fileID: 3902808279478684175} - contentModerationRatingBackground: {fileID: 0} - backgroundColorForTeen: {r: 0, g: 0, b: 0, a: 0} - backgroundColorForAdult: {r: 0, g: 0, b: 0, a: 0} - backgroundColorForRestricted: {r: 0, g: 0, b: 0, a: 0} + flagImage: {fileID: 0} + teenFlagIcon: {fileID: 0} + adultFlagIcon: {fileID: 0} + restrictedFlagIcon: {fileID: 0} --- !u!1 &3080350646182386195 GameObject: m_ObjectHideFlags: 0 @@ -3743,7 +3742,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 1} m_AnchorMax: {x: 0.5, y: 1} - m_AnchoredPosition: {x: 0, y: 9.199982} + m_AnchoredPosition: {x: 0, y: 12} m_SizeDelta: {x: 100, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!222 &4319298365752353504 diff --git a/unity-renderer/Assets/Textures/UI/Common/EmotesIcon.png b/unity-renderer/Assets/Textures/UI/Common/EmotesIcon.png old mode 100644 new mode 100755 index 05f15b8f26..de3230e95e --- a/unity-renderer/Assets/Textures/UI/Common/EmotesIcon.png +++ b/unity-renderer/Assets/Textures/UI/Common/EmotesIcon.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:61ea0d42cd0acbb85ddf3beab2dbe7d353cee86540011962c08420f74283efa0 -size 389 +oid sha256:07e0f4f88813880d6267e54d702bae9676e42e269a8835f186b89e43cc9ac8bb +size 497 diff --git a/unity-renderer/Assets/Textures/UI/Common/EmotesOff.png b/unity-renderer/Assets/Textures/UI/Common/EmotesOff.png index 76b9ad5bb0..c951684324 100755 --- a/unity-renderer/Assets/Textures/UI/Common/EmotesOff.png +++ b/unity-renderer/Assets/Textures/UI/Common/EmotesOff.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3b0f424d74dd81d7664d24ee9989fe8366d31c99407f1b6800dc81a40e0a9573 -size 558 +oid sha256:f115931d0c6accc983bd1643910f796fbbf51c70b31f7a7258c3d1446f002f10 +size 733 diff --git a/unity-renderer/Assets/Textures/UI/Common/EmotesOn.png b/unity-renderer/Assets/Textures/UI/Common/EmotesOn.png index aad356f8c7..3a2acd77a4 100755 --- a/unity-renderer/Assets/Textures/UI/Common/EmotesOn.png +++ b/unity-renderer/Assets/Textures/UI/Common/EmotesOn.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:36ba9714083c0818bb6451bbd0a849172f5ec06f3ea57f5dd481f8c611aa79b8 -size 1366 +oid sha256:5fa532e6bce4e86f205f12aea87bcb83b51c5eb7b3792afd251a559a669c25bb +size 1818 diff --git a/unity-renderer/Assets/Textures/UI/Passport/PassportIcons/EmotesIcn.png b/unity-renderer/Assets/Textures/UI/Passport/PassportIcons/EmotesIcn.png index 4d2c013d0d..dcc5f30cfe 100755 --- a/unity-renderer/Assets/Textures/UI/Passport/PassportIcons/EmotesIcn.png +++ b/unity-renderer/Assets/Textures/UI/Passport/PassportIcons/EmotesIcn.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1a944116498276e4c5468402e8e20aec8c2f767be1931e16d73b82a3ada08a10 -size 588 +oid sha256:8e4dc1d157997e4cc89db5ca8f7fdedb0acd3e053e094f59286f098de401e0fc +size 3052 From 4a2f0ecba4235cf481eebbfccc7d664fea96fc4d Mon Sep 17 00:00:00 2001 From: Aga Date: Fri, 26 Jul 2024 16:26:53 +0200 Subject: [PATCH 4/4] chore: disable sentry (#6240) --- unity-renderer/Assets/Resources/Sentry/SentryOptions.asset | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unity-renderer/Assets/Resources/Sentry/SentryOptions.asset b/unity-renderer/Assets/Resources/Sentry/SentryOptions.asset index 8f6524de35..86babb385d 100644 --- a/unity-renderer/Assets/Resources/Sentry/SentryOptions.asset +++ b/unity-renderer/Assets/Resources/Sentry/SentryOptions.asset @@ -12,7 +12,7 @@ MonoBehaviour: m_Script: {fileID: -668357930, guid: 43ec428a58422470fa764bdba9d9bc19, type: 3} m_Name: SentryOptions m_EditorClassIdentifier: - k__BackingField: 1 + k__BackingField: 0 k__BackingField: https://dsn.dsn/ k__BackingField: 1 k__BackingField: 1