commit 9b61405f917c4310303d04d9630f134d4c45fe23
Author: Benjamin Adovasio <111182300+Benjamin-Adovasio@users.noreply.github.com>
Date: Fri Sep 5 09:40:42 2025 -0400
Add files via upload
diff --git a/2.html b/2.html
new file mode 100644
index 0000000..fb81e17
--- /dev/null
+++ b/2.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+
+
+
+
diff --git a/3.html b/3.html
new file mode 100644
index 0000000..fb81e17
--- /dev/null
+++ b/3.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+
+
+
+
diff --git a/4.html b/4.html
new file mode 100644
index 0000000..fb81e17
--- /dev/null
+++ b/4.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+
+
+
+
diff --git a/5.html b/5.html
new file mode 100644
index 0000000..fb81e17
--- /dev/null
+++ b/5.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+
+
+
+
diff --git a/6.html b/6.html
new file mode 100644
index 0000000..fb81e17
--- /dev/null
+++ b/6.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+
+
+
+
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..445f78e
--- /dev/null
+++ b/index.html
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+
+
+
+
diff --git a/options.html b/options.html
new file mode 100644
index 0000000..84e8359
--- /dev/null
+++ b/options.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+ Final Project
+
+
+
+
+
+ Options:
+
+
+
+ | Current Scenes: |
+
+
+ | Scene 1 |
+
+
+
+
+
+ Type a new name and click enter to save
+
+
+
+
+
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..1e892b2
--- /dev/null
+++ b/script.js
@@ -0,0 +1,74 @@
+let sceneArray = ['Scene 2','Scene 3'] ;
+array_str = JSON.stringify(sceneArray);
+setCookie("sceneArray",array_str, 5);
+let sceneCount = 1;
+
+function addScene() {
+ sceneCount++;
+ let newScene = "Scene " + sceneCount;
+ sceneArray.push(newScene);
+ setCookie("sceneArray",array_str, 5);
+}
+
+sceneArray = getCookie("sceneArray");
+
+for (i=0; i