From 88094024e52e9c04a6cdae3bde2503706622522a Mon Sep 17 00:00:00 2001 From: Martin Allerton Date: Tue, 3 Jan 2023 16:57:40 +0000 Subject: [PATCH 1/8] Remove extraneous padding from the explore app lists --- src/components/overlays/explore/Explore.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/overlays/explore/Explore.vue b/src/components/overlays/explore/Explore.vue index ee4e3e2d..e0a6a762 100644 --- a/src/components/overlays/explore/Explore.vue +++ b/src/components/overlays/explore/Explore.vue @@ -323,7 +323,7 @@ - + - +

Date: Tue, 3 Jan 2023 16:57:47 +0000 Subject: [PATCH 2/8] Evened the spacing on the about items --- src/layouts/MainLayout.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/layouts/MainLayout.vue b/src/layouts/MainLayout.vue index 4d617f1c..8f09ecca 100644 --- a/src/layouts/MainLayout.vue +++ b/src/layouts/MainLayout.vue @@ -393,11 +393,14 @@ About - {{ $store.state.globalConsts.APP_NAME }} {{ $store.state.globalConsts.APP_VERSION_TAG }} + + + + Vircadia Web SDK {{ $store.state.globalConsts.SDK_VERSION_TAG }} From 0aa5be3039350022cd05f4d75fe1a1458ac9c3a7 Mon Sep 17 00:00:00 2001 From: Martin Allerton Date: Tue, 3 Jan 2023 22:23:17 +0000 Subject: [PATCH 3/8] Fix for transparency on PNG image entities --- src/modules/entity/components/components/image.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/modules/entity/components/components/image.ts b/src/modules/entity/components/components/image.ts index c20ebd20..d237525a 100644 --- a/src/modules/entity/components/components/image.ts +++ b/src/modules/entity/components/components/image.ts @@ -122,6 +122,11 @@ export class ImageComponent extends MeshComponent { mat.emissiveTexture = texture; } + if (mat.diffuseTexture !== null && assetURL.fileExtension === "png") { + mat.diffuseTexture.hasAlpha = true; + mat.useAlphaFromDiffuseTexture = true; + } + this._mesh.material = mat; this._mesh.isVisible = entity.visible ?? true; From 4e4553f5982230d88ceca346f12047fa84b027f5 Mon Sep 17 00:00:00 2001 From: Martin Allerton Date: Tue, 3 Jan 2023 22:45:37 +0000 Subject: [PATCH 4/8] Better initial sizing for the Ready Player Me dialog --- src/components/overlays/rpm/ReadyPlayerMe.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/overlays/rpm/ReadyPlayerMe.vue b/src/components/overlays/rpm/ReadyPlayerMe.vue index 8239c298..6d76ff65 100644 --- a/src/components/overlays/rpm/ReadyPlayerMe.vue +++ b/src/components/overlays/rpm/ReadyPlayerMe.vue @@ -17,9 +17,10 @@ icon="face" title="Ready Player Me" :managerProps="propsToPass" - :defaultHeight="600" + :defaultHeight="800" :defaultWidth="800" :defaultLeft="300" + :defaultTop="10" :hoverShowBar="false" :style="{ 'box-shadow': '0 1px 5px rgb(0 0 0 / 20%), 0 2px 2px rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%)', From eec62ffe64aaad91d17535731769625a190cf87b Mon Sep 17 00:00:00 2001 From: Martin Allerton Date: Tue, 3 Jan 2023 22:49:27 +0000 Subject: [PATCH 5/8] Avatar app better default positioning and size --- src/components/overlays/avatar/Avatar.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/overlays/avatar/Avatar.vue b/src/components/overlays/avatar/Avatar.vue index 832407ed..75491fef 100644 --- a/src/components/overlays/avatar/Avatar.vue +++ b/src/components/overlays/avatar/Avatar.vue @@ -72,9 +72,10 @@ icon="directions_run" title="Avatar" :managerProps="propsToPass" - :defaultHeight="450" + :defaultHeight="730" :defaultWidth="380" - :defaultLeft="300" + :defaultLeft="250" + :defaultTop="50" :hoverShowBar="false" :style="{ 'box-shadow': '0 1px 5px rgb(0 0 0 / 20%), 0 2px 2px rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%)', From 153cabe788e8cc78b65cc52321a183b1caf62619 Mon Sep 17 00:00:00 2001 From: Giga Date: Thu, 5 Jan 2023 10:05:51 +1300 Subject: [PATCH 6/8] Add padding to the bottom of the About menu --- src/layouts/MainLayout.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/MainLayout.vue b/src/layouts/MainLayout.vue index 8f09ecca..55767cad 100644 --- a/src/layouts/MainLayout.vue +++ b/src/layouts/MainLayout.vue @@ -263,7 +263,7 @@ - +