fix create issue

This commit is contained in:
HifiExperiments 2024-06-21 14:40:40 -07:00
parent c08de914b3
commit 261cb94ff0
2 changed files with 6 additions and 1 deletions

View file

@ -8,6 +8,10 @@
"shapeAlpha": { "shapeAlpha": {
"tooltip": "The opacity of the entity between 0.0 fully transparent and 1.0 completely opaque." "tooltip": "The opacity of the entity between 0.0 fully transparent and 1.0 completely opaque."
}, },
"shapeUnlit": {
"tooltip": "If enabled, the entity will not be lit by the keylight or local lights.",
"jsPropertyName": "unlit"
},
"text": { "text": {
"tooltip": "The text to display on the entity." "tooltip": "The text to display on the entity."
}, },

View file

@ -181,7 +181,8 @@ const GROUPS = [
{ {
label: "Unlit", label: "Unlit",
type: "bool", type: "bool",
propertyID: "unlit", propertyID: "shapeUnlit",
propertyName: "unlit"
} }
] ]
}, },