Merge pull request #215 from AleziaKurdis/feature/shape-alpha

Feature/shape alpha
This commit is contained in:
kasenvr 2020-05-08 16:32:05 -04:00 committed by GitHub
commit ac38455d13
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": "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": "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": "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"
@ -149,7 +164,7 @@
}, },
"screenshare": { "screenshare": {
"tooltip": "Enable screen-sharing within this zone" "tooltip": "Enable screen-sharing within this zone"
}, },
"modelURL": { "modelURL": {
"tooltip": "A mesh model from an FBX or OBJ file." "tooltip": "A mesh model from an FBX or OBJ file."
}, },
@ -199,6 +214,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": "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."
}, },
@ -218,6 +236,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."
}, },
@ -294,20 +322,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": "The opacity of 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": "The opacity of each particle between 0.0 fully transparent and 1.0 completely opaque."
}, },
"alphaStart": { "alphaStart": {
"tooltip": "The start alpha of each particle." "tooltip": "The initial opacity level of each particle between 0.0 fully transparent and 1.0 completely opaque."
}, },
"alphaFinish": { "alphaFinish": {
"tooltip": "The finish alpha of each particle." "tooltip": "The final opacity level of 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": "If set, this entity will only render when your avatar is inside of a zone in this list."
},
"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": "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."