Merge pull request #16497 from ctrlaltdavid/DEV-2769

DEV-2769: Remove the "acceleration" entity property from Create app
This commit is contained in:
Shannon Romano 2019-11-15 09:26:33 -08:00 committed by GitHub
commit bcc058ba5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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",
},
]
},
];