mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 20:06:02 +02:00
Merge pull request #630 from AleziaKurdis/WebTransparencyUIforPR605
New "useBackground" property for pr605
This commit is contained in:
commit
d4bfce831f
2 changed files with 8 additions and 0 deletions
|
@ -607,6 +607,9 @@
|
||||||
"webAlpha": {
|
"webAlpha": {
|
||||||
"tooltip": "The opacity of the web entity between 0.0 fully transparent and 1.0 completely opaque."
|
"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": {
|
"maxFPS": {
|
||||||
"tooltip": "The FPS at which to render the web entity. Higher values will have a performance impact."
|
"tooltip": "The FPS at which to render the web entity. Higher values will have a performance impact."
|
||||||
},
|
},
|
||||||
|
|
|
@ -762,6 +762,11 @@ const GROUPS = [
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 1,
|
max: 1,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: "Use Background",
|
||||||
|
type: "bool",
|
||||||
|
propertyID: "useBackground",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: "Max FPS",
|
label: "Max FPS",
|
||||||
type: "number-draggable",
|
type: "number-draggable",
|
||||||
|
|
Loading…
Reference in a new issue