diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b450b3df..b0da67b92 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add shortcut to search scenes when in world mode by pressing `/`
- Add support from adding sound effects to a project by dragging files into project window (to match how this works for other asset types)
- Add native Mac ARM support for M1/M2/M3+ devices
+- Add script debugger pane to World view, when game is run while this is open allows inspecting currently running scripts, setting breakpoints and updating live variable values
### Changed
diff --git a/appData/wasm/binjgb/binjgb.wasm b/appData/wasm/binjgb/binjgb.wasm
index 81fe205a4..aa40412c5 100755
Binary files a/appData/wasm/binjgb/binjgb.wasm and b/appData/wasm/binjgb/binjgb.wasm differ
diff --git a/appData/wasm/binjgb/css/style.css b/appData/wasm/binjgb/css/style.css
index 7eb9aa659..70843a6d6 100644
--- a/appData/wasm/binjgb/css/style.css
+++ b/appData/wasm/binjgb/css/style.css
@@ -319,3 +319,49 @@ body {
opacity: 0.5;
}
}
+
+#debug {
+ display:flex;
+ flex-direction:column;
+ align-items:center;
+ padding:10px;
+ position:fixed;
+ top:0px;
+ left:0px;
+ right:0px;
+ bottom:0px;
+ background:rgba(0,0,0,0.5);
+}
+
+#debug div {
+ background: white;
+ color: black;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ transform: position;
+ font-size: 11px;
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+ display: flex;
+ align-items: center;
+}
+
+#debug span {
+ padding: 5px 8px;
+}
+
+#debug button {
+ background: transparent;
+ border: none;
+ border-left: 1px solid #ddd;
+ display: flex;
+ align-items: center;
+ height: 100%;
+}
+
+#debug button:hover {
+ background: #eee;
+}
+
+#debug button:active {
+ background: #ddd;
+}
\ No newline at end of file
diff --git a/appData/wasm/binjgb/index.html b/appData/wasm/binjgb/index.html
index 7d76babc7..1eae2f11a 100644
--- a/appData/wasm/binjgb/index.html
+++ b/appData/wasm/binjgb/index.html
@@ -31,4 +31,5 @@
+