emove the "acceleration" entity property from the Create app

This commit is contained in:
David Rowe 2019-11-15 12:11:15 +13:00
parent 1f2deed941
commit 7fbc9f5c5c
2 changed files with 0 additions and 13 deletions

View file

@ -558,9 +558,6 @@
"gravity": {
"tooltip": "The acceleration due to gravity that the entity should move with, in world space."
},
"acceleration": {
"tooltip": "A acceleration that the entity should move with, in world space."
},
"renderLayer": {
"tooltip": "The layer on which this entity is rendered."
},

View file

@ -1545,16 +1545,6 @@ const GROUPS = [
unit: "m/s<sup>2</sup>",
propertyID: "gravity",
},
{
label: "Acceleration",
type: "vec3",
vec3Type: "xyz",
subLabels: [ "x", "y", "z" ],
step: 0.1,
decimals: 4,
unit: "m/s<sup>2</sup>",
propertyID: "acceleration",
},
]
},
];