@@ -133,7 +137,8 @@
pedestals: true,
prints: true,
drones: true,
- props: true
+ props: true,
+ thirdPerson: true
});
const isVisible = computed({
@@ -217,6 +222,8 @@
case 'feature_props_disabled':
D.props = false;
break;
+ case 'feature_third_person_view_disabled':
+ D.thirdPerson = false;
}
});
D.authorTags = authorTags.toString();
@@ -290,6 +297,9 @@
if (!D.props) {
tags.unshift('feature_props_disabled');
}
+ if (!D.thirdPerson) {
+ tags.unshift('feature_third_person_view_disabled');
+ }
worldRequest
.saveWorld({
id: props.worldId,
diff --git a/src/components/dialogs/WorldDialog/WorldDialog.vue b/src/components/dialogs/WorldDialog/WorldDialog.vue
index 6cb82641..c4f9e1d2 100644
--- a/src/components/dialogs/WorldDialog/WorldDialog.vue
+++ b/src/components/dialogs/WorldDialog/WorldDialog.vue
@@ -737,7 +737,7 @@
diff --git a/src/localization/en.json b/src/localization/en.json
index 0e59412a..f3bc93e4 100644
--- a/src/localization/en.json
+++ b/src/localization/en.json
@@ -1339,6 +1339,7 @@
"content_prints": "Prints",
"content_drones": "Drones",
"content_items": "Items",
+ "content_third_person": "Third Person",
"world_id": "World ID",
"instance_id": "Instance ID",
"instance_id_placeholder": "Random",