-
diff --git a/app/components/NDS3D.vue b/app/components/NDS3D.vue
index 7173368..85a6332 100644
--- a/app/components/NDS3D.vue
+++ b/app/components/NDS3D.vue
@@ -614,6 +614,10 @@ const handleTouchEnd = (event: TouchEvent) => {
onMounted(() => {
app.ready = true;
+ if (app.userHasInteracted) {
+ animateIntro();
+ }
+
if (renderer) {
renderer.instance.domElement.addEventListener("mousedown", handleMouseDown);
renderer.instance.domElement.addEventListener("click", handleClick);
diff --git a/app/pages/index.vue b/app/pages/index.vue
index cde8f1d..f4314bc 100644
--- a/app/pages/index.vue
+++ b/app/pages/index.vue
@@ -154,7 +154,7 @@ useKeyDown(async ({ key, repeated }) => {
-
+
{
const app = useAppStore();
diff --git a/i18n/locales/en.json b/i18n/locales/en.json
index cd7c4e0..91797ad 100644
--- a/i18n/locales/en.json
+++ b/i18n/locales/en.json
@@ -44,11 +44,9 @@
"settings": {
"title": "Settings",
"description": "Change system settings here. Select\nthe settings you'd like to change.",
-
"options": {
"title": "Options",
"description": "Change other settings.",
-
"renderingMode": {
"title": "Rendering",
"description": "Change the app rendering mode\nbetween 2D and 3D.",
@@ -77,7 +75,6 @@
"clock": {
"title": "Clock",
"description": "Change date, time, and achievement\nsettings.",
-
"achievements": {
"title": "Achievements",
"description": "Manage your achievements.",
@@ -87,7 +84,6 @@
"obtained": "Obtained",
"total": "Total"
},
-
"date": {
"title": "Date",
"description": "Today's date.",
@@ -95,7 +91,6 @@
"day": "Day",
"year": "Year"
},
-
"time": {
"title": "Time",
"description": "Current time.",
@@ -106,7 +101,6 @@
"user": {
"title": "User",
"description": "Enter user informations.",
-
"color": {
"title": "Color",
"description": "Select your favorite color.",
@@ -181,5 +175,9 @@
"no": "no",
"text": "Open {url}?"
}
+ },
+ "loadingScreen": {
+ "loading": "Loading...",
+ "clickToStart": "Click to start"
}
}