diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0372c03715f1465b74f6508792b0da674bddf631..71ca540d7a0b490165a887a98bf918b9a10774a5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 1.0.7 - 2025-06-07
+
+### Added
+
+- Add Spatial Audio to GameObject menu.
+
## 1.0.6 - 2025-06-07
### Added
diff --git a/Editor/GameObjectMenuEditor.cs b/Editor/GameObjectMenuEditor.cs
index 1ee6ee6c254a3b087d3e91da74a2b492769f73c8..a1696bedb3ad19f3fdfb31ac31fa5f694306c420 100644
--- a/Editor/GameObjectMenuEditor.cs
+++ b/Editor/GameObjectMenuEditor.cs
@@ -9,6 +9,12 @@ public class GameObjectMenuEditor : MonoBehaviour
AddPrefab("XR");
}
+ [MenuItem("GameObject/HCP-XR/XR Starter/Spatial Audio")]
+ public static void AddSpatialAudioPrefab()
+ {
+ AddPrefab("SpatialAudio");
+ }
+
private static void AddPrefab(string prefabName)
{
// Path to the prefab in your package
diff --git a/package.json b/package.json
index 2640572e319ab10c06a191437291502dff14b9d0..429f7a97682e0dfa48ff1529e23fbf5592734c76 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "de.tu-dresden.hcp-xr.xr-starter",
- "version": "1.0.6",
+ "version": "1.0.7",
"displayName": "HCP-XR Starter",
"description": "This package helps you to get started quickly with your Unity XR projects.",
"unity": "6000.0",