mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 19:12:28 +02:00
Add ignorePickIntersection to Create
This commit is contained in:
parent
bd3881ef14
commit
1894951f54
2 changed files with 9 additions and 1 deletions
|
@ -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."
|
||||
},
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue