Add the new property "renderWithZones"

This adds the Tooltip for new property "renderWithZones"
(Required for PR#78)
This commit is contained in:
Alezia Kurdis 2020-04-03 23:32:45 -04:00 committed by GitHub
parent 0338d8a9f4
commit 0afca55e18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,10 @@
"tooltip": "The shape of this entity's geometry." "tooltip": "The shape of this entity's geometry."
}, },
"color": { "color": {
"tooltip": "The RGB value of this entity." "tooltip": "The color of this entity."
},
"shapeAlpha": {
"tooltip": "Set the opacity of the entity between 0.0 fully transparent and 1.0 completely opaque."
}, },
"text": { "text": {
"tooltip": "The text to display on the entity." "tooltip": "The text to display on the entity."
@ -12,17 +15,29 @@
"tooltip": "The color of the text." "tooltip": "The color of the text."
}, },
"textAlpha": { "textAlpha": {
"tooltip": "The alpha of the text." "tooltip": "Set the opacity of the text between 0.0 fully transparent and 1.0 completely opaque."
}, },
"backgroundColor": { "backgroundColor": {
"tooltip": "The color of the background." "tooltip": "The color of the background."
}, },
"backgroundAlpha": { "backgroundAlpha": {
"tooltip": "The alpha of the background." "tooltip": "Set the opacity of the background between 0.0 fully transparent and 1.0 completely opaque."
}, },
"lineHeight": { "lineHeight": {
"tooltip": "The height of each line of text. This determines the size of the text." "tooltip": "The height of each line of text. This determines the size of the text."
}, },
"font": {
"tooltip": "The font to render the text. Supported values: \"Courier\", \"Inconsolata\", \"Roboto\", \"Timeless\", or a URL to a .sdff file."
},
"textEffect": {
"tooltip": "The effect that is applied to the text."
},
"textEffectColor": {
"tooltip": "The color of the text effect."
},
"textEffectThickness": {
"tooltip": "The magnitude of the text effect."
},
"textBillboardMode": { "textBillboardMode": {
"tooltip": "If enabled, determines how the entity will face the camera.", "tooltip": "If enabled, determines how the entity will face the camera.",
"jsPropertyName": "billboardMode" "jsPropertyName": "billboardMode"
@ -196,6 +211,9 @@
"tooltip": "The tint to be applied to the image.", "tooltip": "The tint to be applied to the image.",
"jsPropertyName": "color" "jsPropertyName": "color"
}, },
"imageAlpha": {
"tooltip": "Set the opacity of the image between 0.0 fully transparent and 1.0 completely opaque."
},
"emissive": { "emissive": {
"tooltip": "If enabled, the image will display at full brightness." "tooltip": "If enabled, the image will display at full brightness."
}, },
@ -215,6 +233,16 @@
"dpi": { "dpi": {
"tooltip": "The resolution to display the page at, in pixels per inch. Use this to resize your web source in the frame." "tooltip": "The resolution to display the page at, in pixels per inch. Use this to resize your web source in the frame."
}, },
"webBillboardMode": {
"tooltip": "If enabled, determines how the entity will face the camera.",
"jsPropertyName": "billboardMode"
},
"inputMode": {
"tooltip": "The user input mode to use."
},
"showKeyboardFocusHighlight": {
"tooltip": "If enabled, highlights when it has keyboard focus."
},
"isEmitting": { "isEmitting": {
"tooltip": "If enabled, then particles are emitted." "tooltip": "If enabled, then particles are emitted."
}, },
@ -291,20 +319,20 @@
"tooltip": "The spread in color that each particle is given, resulting in a variety of colors." "tooltip": "The spread in color that each particle is given, resulting in a variety of colors."
}, },
"particleAlphaTriple": { "particleAlphaTriple": {
"tooltip": "The alpha of each particle.", "tooltip": "Set the opacity of the each particle between 0.0 fully transparent and 1.0 completely opaque.",
"jsPropertyName": "alpha" "jsPropertyName": "alpha"
}, },
"alpha": { "alpha": {
"tooltip": "The alpha of each particle." "tooltip": "Set the opacity of the each particle between 0.0 fully transparent and 1.0 completely opaque."
}, },
"alphaStart": { "alphaStart": {
"tooltip": "The start alpha of each particle." "tooltip": "Set the initial opacity level of the each particle between 0.0 fully transparent and 1.0 completely opaque."
}, },
"alphaFinish": { "alphaFinish": {
"tooltip": "The finish alpha of each particle." "tooltip": "Set the final opacity level of the each particle between 0.0 fully transparent and 1.0 completely opaque."
}, },
"alphaSpread": { "alphaSpread": {
"tooltip": "The spread in alpha that each particle is given, resulting in a variety of alphas." "tooltip": "The spread in opacity that each particle is given, resulting in a variety of opacity levels."
}, },
"emitAcceleration": { "emitAcceleration": {
"tooltip": "The acceleration that is applied to each particle during its lifetime." "tooltip": "The acceleration that is applied to each particle during its lifetime."
@ -567,6 +595,9 @@
"primitiveMode": { "primitiveMode": {
"tooltip": "The mode in which to draw an entity, either \"Solid\" or \"Wireframe\"." "tooltip": "The mode in which to draw an entity, either \"Solid\" or \"Wireframe\"."
}, },
"renderWithZones": {
"tooltip": "This entity will be rendered only from the specified zones. If not specified, the entity will be always rendered."
},
"groupCulled": { "groupCulled": {
"tooltip": "If false, individual pieces of the entity may be culled by the render engine. If true, either the entire entity will be culled, or it won't at all." "tooltip": "If false, individual pieces of the entity may be culled by the render engine. If true, either the entire entity will be culled, or it won't at all."
}, },
@ -574,7 +605,7 @@
"tooltip": "The tint of the web entity." "tooltip": "The tint of the web entity."
}, },
"webAlpha": { "webAlpha": {
"tooltip": "The alpha of the web entity." "tooltip": "Set the opacity of the web entity between 0.0 fully transparent and 1.0 completely opaque."
}, },
"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."