diff --git a/scripts/system/assets/data/createAppTooltips.json b/scripts/system/assets/data/createAppTooltips.json index cc622c2184..b59797fca7 100644 --- a/scripts/system/assets/data/createAppTooltips.json +++ b/scripts/system/assets/data/createAppTooltips.json @@ -492,6 +492,9 @@ "canCastShadow": { "tooltip": "If enabled, this geometry of this entity casts shadows when a shadow-casting light source shines on it." }, + "ignorePickIntersection": { + "tooltip": "If enabled, this entity will not be considered for ray picks, and will also not occlude other entities when picking." + }, "parentID": { "tooltip": "The ID of the entity or avatar that this entity is parented to." }, diff --git a/scripts/system/html/js/entityProperties.js b/scripts/system/html/js/entityProperties.js index d7800ada5d..e64543d41f 100644 --- a/scripts/system/html/js/entityProperties.js +++ b/scripts/system/html/js/entityProperties.js @@ -1329,7 +1329,7 @@ const GROUPS = [ propertyID: "grab.grabFollowsController", }, { - label: "Cast shadows", + label: "Cast Shadows", type: "bool", propertyID: "canCastShadow", }, @@ -1339,6 +1339,11 @@ const GROUPS = [ propertyID: "href", placeholder: "URL", }, + { + label: "Ignore Pick Intersection", + type: "bool", + propertyID: "ignorePickIntersection", + }, { label: "Script", type: "string",