diff --git a/scripts/system/create/assets/data/createAppTooltips.json b/scripts/system/create/assets/data/createAppTooltips.json
index 24f443f901..8b160e0630 100644
--- a/scripts/system/create/assets/data/createAppTooltips.json
+++ b/scripts/system/create/assets/data/createAppTooltips.json
@@ -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."
},
diff --git a/scripts/system/create/entityProperties/html/js/entityProperties.js b/scripts/system/create/entityProperties/html/js/entityProperties.js
index e581fbd194..b5a9b77bf4 100644
--- a/scripts/system/create/entityProperties/html/js/entityProperties.js
+++ b/scripts/system/create/entityProperties/html/js/entityProperties.js
@@ -1545,16 +1545,6 @@ const GROUPS = [
unit: "m/s2",
propertyID: "gravity",
},
- {
- label: "Acceleration",
- type: "vec3",
- vec3Type: "xyz",
- subLabels: [ "x", "y", "z" ],
- step: 0.1,
- decimals: 4,
- unit: "m/s2",
- propertyID: "acceleration",
- },
]
},
];