diff --git a/scripts/system/create/assets/data/createAppTooltips.json b/scripts/system/create/assets/data/createAppTooltips.json index 4efd0593fb..31ff158223 100644 --- a/scripts/system/create/assets/data/createAppTooltips.json +++ b/scripts/system/create/assets/data/createAppTooltips.json @@ -607,6 +607,9 @@ "webAlpha": { "tooltip": "The opacity of the web entity between 0.0 fully transparent and 1.0 completely opaque." }, + "useBackground": { + "tooltip": "If disabled, this web entity will support a transparent background for the webpage if the CSS property of the 'body' is set with 'background-color: transparent;'" + }, "maxFPS": { "tooltip": "The FPS at which to render the web entity. Higher values will have a performance impact." }, diff --git a/scripts/system/create/entityProperties/html/js/entityProperties.js b/scripts/system/create/entityProperties/html/js/entityProperties.js index 182dddf817..7b524ad8d1 100644 --- a/scripts/system/create/entityProperties/html/js/entityProperties.js +++ b/scripts/system/create/entityProperties/html/js/entityProperties.js @@ -762,6 +762,11 @@ const GROUPS = [ min: 0, max: 1, }, + { + label: "Use Background", + type: "bool", + propertyID: "useBackground", + }, { label: "Max FPS", type: "number-draggable",