diff --git a/.DS_Store b/.DS_Store index 49375f0..031130b 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Assets/.DS_Store b/Assets/.DS_Store index 53a2fbd..f88aa74 100644 Binary files a/Assets/.DS_Store and b/Assets/.DS_Store differ diff --git a/Assets/1OurESP32Scripts.meta b/Assets/1OurESP32Scripts.meta new file mode 100644 index 0000000..45ce7f0 --- /dev/null +++ b/Assets/1OurESP32Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c5804f49b7fb481f938ce81820fa221 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/1OurESP32Scripts/.DS_Store b/Assets/1OurESP32Scripts/.DS_Store new file mode 100644 index 0000000..4e5214c Binary files /dev/null and b/Assets/1OurESP32Scripts/.DS_Store differ diff --git a/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442.meta b/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442.meta new file mode 100644 index 0000000..4ab6e56 --- /dev/null +++ b/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3893d5b760e304f0e828a4ba1f29356a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442/01_SimpleServo_copy_20240313092442.ino b/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442/01_SimpleServo_copy_20240313092442.ino new file mode 100644 index 0000000..6503ad5 --- /dev/null +++ b/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442/01_SimpleServo_copy_20240313092442.ino @@ -0,0 +1,25 @@ +#include <ESP32Servo.h> + + +static const int servoPin = 8; + +Servo servo1; + +void setup() { + Serial.begin(115200); + servo1.attach(servoPin); +} + +void loop() { + for(int posDegrees = 0; posDegrees <= 180; posDegrees++) { + servo1.write(posDegrees); + Serial.println(posDegrees); + delay(20); + } + + for(int posDegrees = 180; posDegrees >= 0; posDegrees--) { + servo1.write(posDegrees); + Serial.println(posDegrees); + delay(20); + } +} \ No newline at end of file diff --git a/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442/01_SimpleServo_copy_20240313092442.ino.meta b/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442/01_SimpleServo_copy_20240313092442.ino.meta new file mode 100644 index 0000000..cfd8ca6 --- /dev/null +++ b/Assets/1OurESP32Scripts/01_SimpleServo_copy_20240313092442/01_SimpleServo_copy_20240313092442.ino.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 256d5b3a232a4400f9b5acd942ec6f5a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237.meta b/Assets/1OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237.meta similarity index 100% rename from Assets/OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237.meta rename to Assets/1OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237.meta diff --git a/Assets/OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino b/Assets/1OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino similarity index 100% rename from Assets/OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino rename to Assets/1OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino diff --git a/Assets/OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino.meta b/Assets/1OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino.meta similarity index 100% rename from Assets/OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino.meta rename to Assets/1OurESP32Scripts/DistanceSensorESPOriginalCode_copy_20240308133237/DistanceSensorESPOriginalCode_copy_20240308133237.ino.meta diff --git a/Assets/OurESP32Scripts/ESP32.meta b/Assets/1OurESP32Scripts/ESP32.meta similarity index 100% rename from Assets/OurESP32Scripts/ESP32.meta rename to Assets/1OurESP32Scripts/ESP32.meta diff --git a/Assets/OurESP32Scripts/ESP32/ESP32.ino b/Assets/1OurESP32Scripts/ESP32/ESP32.ino similarity index 100% rename from Assets/OurESP32Scripts/ESP32/ESP32.ino rename to Assets/1OurESP32Scripts/ESP32/ESP32.ino diff --git a/Assets/OurESP32Scripts/ESP32/ESP32.ino.meta b/Assets/1OurESP32Scripts/ESP32/ESP32.ino.meta similarity index 100% rename from Assets/OurESP32Scripts/ESP32/ESP32.ino.meta rename to Assets/1OurESP32Scripts/ESP32/ESP32.ino.meta diff --git a/Assets/1OurScripts/BoundWaterScript.cs b/Assets/1OurScripts/BoundWaterScript.cs index 0982a12..ba37811 100644 --- a/Assets/1OurScripts/BoundWaterScript.cs +++ b/Assets/1OurScripts/BoundWaterScript.cs @@ -49,13 +49,14 @@ public class BoundWaterScript : MonoBehaviour } - public void collectDistance() + public void collectTouch() { if (narrationHasFinished && !dropHasAppeared) { + dropHasAppeared = true; waterObjectToCollect.SetActive(true); audioSource.PlayOneShot(narrationClipTwo); - dropHasAppeared = true; + } } diff --git a/Assets/1OurScripts/WaterConnectUnityWithSensors.cs b/Assets/1OurScripts/WaterConnectUnityWithSensors.cs index 4e16e70..fc5dd28 100644 --- a/Assets/1OurScripts/WaterConnectUnityWithSensors.cs +++ b/Assets/1OurScripts/WaterConnectUnityWithSensors.cs @@ -14,10 +14,10 @@ public class WaterConnectUnityWithSensors : MonoBehaviour public string esp32IPAddress = "10.204.0.249"; // Assign your ESP32 IP Address public string esp32WebsocketPort = "81"; // Assign your ESP32 WebSocket port, typically "81" - private bool distanceDataReceived = false; - private int receivedDistanceValue = 0; + private bool touchDataReceived = false; + private int receivedTouchValue = 0; - public static bool isDistanceDetected = false; + public static bool isTouchDetected = false; public BoundWaterScript waterScript = new BoundWaterScript(); @@ -44,8 +44,8 @@ public class WaterConnectUnityWithSensors : MonoBehaviour bool isNumeric = int.TryParse(e.Data, out parsedValue); if (isNumeric) { - receivedDistanceValue = parsedValue; - distanceDataReceived = true; // Indicate that new data has been received + receivedTouchValue = parsedValue; + touchDataReceived = true; // Indicate that new data has been received } }; ws.Connect(); @@ -58,20 +58,20 @@ public class WaterConnectUnityWithSensors : MonoBehaviour {//Change to Water script if (waterScript.narrationHasFinished && !waterScript.dropHasAppeared) { - Debug.Log("Asking for distance."); + Debug.Log("Asking for touch."); - ws.Send("Need Distance"); + ws.Send("Need Touch"); - if (distanceDataReceived) + if (touchDataReceived) { - if (receivedDistanceValue < 10) + if (receivedTouchValue == 10) { Debug.Log("Distance threshold exceeded, action triggered."); - isDistanceDetected = true; - waterScript.collectDistance(); + isTouchDetected = true; + waterScript.collectTouch(); } - distanceDataReceived = false; // Reset for the next message + touchDataReceived = false; // Reset for the next message } } diff --git a/Assets/3PupperStudios/.DS_Store b/Assets/3PupperStudios/.DS_Store new file mode 100644 index 0000000..6058db6 Binary files /dev/null and b/Assets/3PupperStudios/.DS_Store differ diff --git a/Assets/Free Pack.meta b/Assets/Free Pack.meta new file mode 100644 index 0000000..4a13c63 --- /dev/null +++ b/Assets/Free Pack.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2fc085714aa1400690f0c892cffc576 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Autocannon - Shot 1.wav b/Assets/Free Pack/Autocannon - Shot 1.wav new file mode 100644 index 0000000..a64baf3 Binary files /dev/null and b/Assets/Free Pack/Autocannon - Shot 1.wav differ diff --git a/Assets/Free Pack/Autocannon - Shot 1.wav.meta b/Assets/Free Pack/Autocannon - Shot 1.wav.meta new file mode 100644 index 0000000..1d9372a --- /dev/null +++ b/Assets/Free Pack/Autocannon - Shot 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: bb2e2714f962491428dcb0b38598b251 +timeCreated: 1570803018 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Bloody punch.wav b/Assets/Free Pack/Bloody punch.wav new file mode 100644 index 0000000..3d9f5cd Binary files /dev/null and b/Assets/Free Pack/Bloody punch.wav differ diff --git a/Assets/Free Pack/Bloody punch.wav.meta b/Assets/Free Pack/Bloody punch.wav.meta new file mode 100644 index 0000000..e62ded3 --- /dev/null +++ b/Assets/Free Pack/Bloody punch.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: a37f44cbf8c2a7443a3c361efa2f233a +timeCreated: 1570803017 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Bullet Impact 14.wav b/Assets/Free Pack/Bullet Impact 14.wav new file mode 100644 index 0000000..c76ed53 Binary files /dev/null and b/Assets/Free Pack/Bullet Impact 14.wav differ diff --git a/Assets/Free Pack/Bullet Impact 14.wav.meta b/Assets/Free Pack/Bullet Impact 14.wav.meta new file mode 100644 index 0000000..5555a9b --- /dev/null +++ b/Assets/Free Pack/Bullet Impact 14.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 75adfe9a619833445a701305b983e548 +timeCreated: 1570802992 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Bullet Impact 21.wav b/Assets/Free Pack/Bullet Impact 21.wav new file mode 100644 index 0000000..c0083c8 Binary files /dev/null and b/Assets/Free Pack/Bullet Impact 21.wav differ diff --git a/Assets/Free Pack/Bullet Impact 21.wav.meta b/Assets/Free Pack/Bullet Impact 21.wav.meta new file mode 100644 index 0000000..d6cef9d --- /dev/null +++ b/Assets/Free Pack/Bullet Impact 21.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: e11a5a019377fbd4c81caa0adcb4c236 +timeCreated: 1570803046 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Bullet Impacts - Multiple 1.wav b/Assets/Free Pack/Bullet Impacts - Multiple 1.wav new file mode 100644 index 0000000..8ab315b Binary files /dev/null and b/Assets/Free Pack/Bullet Impacts - Multiple 1.wav differ diff --git a/Assets/Free Pack/Bullet Impacts - Multiple 1.wav.meta b/Assets/Free Pack/Bullet Impacts - Multiple 1.wav.meta new file mode 100644 index 0000000..454d0a8 --- /dev/null +++ b/Assets/Free Pack/Bullet Impacts - Multiple 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 0b93f9af63befa2478916a5396131fff +timeCreated: 1570802972 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Cannon impact 9.wav b/Assets/Free Pack/Cannon impact 9.wav new file mode 100644 index 0000000..cd26826 Binary files /dev/null and b/Assets/Free Pack/Cannon impact 9.wav differ diff --git a/Assets/Free Pack/Cannon impact 9.wav.meta b/Assets/Free Pack/Cannon impact 9.wav.meta new file mode 100644 index 0000000..b5e635e --- /dev/null +++ b/Assets/Free Pack/Cannon impact 9.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 5ff823f546b52574a931e1d9b44290a6 +timeCreated: 1570802986 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Carriage on Stone Road - Loop.wav b/Assets/Free Pack/Carriage on Stone Road - Loop.wav new file mode 100644 index 0000000..485b560 Binary files /dev/null and b/Assets/Free Pack/Carriage on Stone Road - Loop.wav differ diff --git a/Assets/Free Pack/Carriage on Stone Road - Loop.wav.meta b/Assets/Free Pack/Carriage on Stone Road - Loop.wav.meta new file mode 100644 index 0000000..e38f133 --- /dev/null +++ b/Assets/Free Pack/Carriage on Stone Road - Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 1b46c101cacd70a4fa09545bf0d68820 +timeCreated: 1570802974 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Cavern Atmosphere - Loop.wav b/Assets/Free Pack/Cavern Atmosphere - Loop.wav new file mode 100644 index 0000000..cd5a35b Binary files /dev/null and b/Assets/Free Pack/Cavern Atmosphere - Loop.wav differ diff --git a/Assets/Free Pack/Cavern Atmosphere - Loop.wav.meta b/Assets/Free Pack/Cavern Atmosphere - Loop.wav.meta new file mode 100644 index 0000000..dc688fa --- /dev/null +++ b/Assets/Free Pack/Cavern Atmosphere - Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 6d2e2db0b97a8c84e9b7aba22496d5fe +timeCreated: 1570802990 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Chemistry reaction 3 - Big.wav b/Assets/Free Pack/Chemistry reaction 3 - Big.wav new file mode 100644 index 0000000..1aa9876 Binary files /dev/null and b/Assets/Free Pack/Chemistry reaction 3 - Big.wav differ diff --git a/Assets/Free Pack/Chemistry reaction 3 - Big.wav.meta b/Assets/Free Pack/Chemistry reaction 3 - Big.wav.meta new file mode 100644 index 0000000..5e69cec --- /dev/null +++ b/Assets/Free Pack/Chemistry reaction 3 - Big.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 4144ed0d6abcc42479fe873c54bbe0fa +timeCreated: 1570802978 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Computer explosion 6 - Alarm.wav b/Assets/Free Pack/Computer explosion 6 - Alarm.wav new file mode 100644 index 0000000..f857cfb Binary files /dev/null and b/Assets/Free Pack/Computer explosion 6 - Alarm.wav differ diff --git a/Assets/Free Pack/Computer explosion 6 - Alarm.wav.meta b/Assets/Free Pack/Computer explosion 6 - Alarm.wav.meta new file mode 100644 index 0000000..44688ca --- /dev/null +++ b/Assets/Free Pack/Computer explosion 6 - Alarm.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 65b3207f91d67094e87be85dbe54c89d +timeCreated: 1570802988 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Dragon Spit Fire 1.wav b/Assets/Free Pack/Dragon Spit Fire 1.wav new file mode 100644 index 0000000..ce3954a Binary files /dev/null and b/Assets/Free Pack/Dragon Spit Fire 1.wav differ diff --git a/Assets/Free Pack/Dragon Spit Fire 1.wav.meta b/Assets/Free Pack/Dragon Spit Fire 1.wav.meta new file mode 100644 index 0000000..f307f9c --- /dev/null +++ b/Assets/Free Pack/Dragon Spit Fire 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 7d156b8a5b340cd46bcf0a76557dd2dd +timeCreated: 1570802995 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Earthquake 3 - Big.wav b/Assets/Free Pack/Earthquake 3 - Big.wav new file mode 100644 index 0000000..a10c3de Binary files /dev/null and b/Assets/Free Pack/Earthquake 3 - Big.wav differ diff --git a/Assets/Free Pack/Earthquake 3 - Big.wav.meta b/Assets/Free Pack/Earthquake 3 - Big.wav.meta new file mode 100644 index 0000000..d5729a1 --- /dev/null +++ b/Assets/Free Pack/Earthquake 3 - Big.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 5ae4d298ed547ba4c88587effb75d7e1 +timeCreated: 1570802986 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Easy Going Medieval Tavern - Loop.wav b/Assets/Free Pack/Easy Going Medieval Tavern - Loop.wav new file mode 100644 index 0000000..c219f37 Binary files /dev/null and b/Assets/Free Pack/Easy Going Medieval Tavern - Loop.wav differ diff --git a/Assets/Free Pack/Easy Going Medieval Tavern - Loop.wav.meta b/Assets/Free Pack/Easy Going Medieval Tavern - Loop.wav.meta new file mode 100644 index 0000000..7d9ed27 --- /dev/null +++ b/Assets/Free Pack/Easy Going Medieval Tavern - Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: cdfab68e200464842847522ffb19ae13 +timeCreated: 1570803036 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Explosion 1.wav b/Assets/Free Pack/Explosion 1.wav new file mode 100644 index 0000000..b5d496f Binary files /dev/null and b/Assets/Free Pack/Explosion 1.wav differ diff --git a/Assets/Free Pack/Explosion 1.wav.meta b/Assets/Free Pack/Explosion 1.wav.meta new file mode 100644 index 0000000..6e03e8e --- /dev/null +++ b/Assets/Free Pack/Explosion 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 1fd31868d68903d4f9e2c4a3b7ef98f3 +timeCreated: 1570802974 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Explosion 2.wav b/Assets/Free Pack/Explosion 2.wav new file mode 100644 index 0000000..2ac09a3 Binary files /dev/null and b/Assets/Free Pack/Explosion 2.wav differ diff --git a/Assets/Free Pack/Explosion 2.wav.meta b/Assets/Free Pack/Explosion 2.wav.meta new file mode 100644 index 0000000..746b4e2 --- /dev/null +++ b/Assets/Free Pack/Explosion 2.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 986d6b30567e30e428f3f21373fe45ca +timeCreated: 1570803016 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Explosion 8.wav b/Assets/Free Pack/Explosion 8.wav new file mode 100644 index 0000000..4de7ade Binary files /dev/null and b/Assets/Free Pack/Explosion 8.wav differ diff --git a/Assets/Free Pack/Explosion 8.wav.meta b/Assets/Free Pack/Explosion 8.wav.meta new file mode 100644 index 0000000..0265a6c --- /dev/null +++ b/Assets/Free Pack/Explosion 8.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: d47e6ed162da1f740ad807d00f4679f3 +timeCreated: 1570803037 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Flare gun 5-2.wav b/Assets/Free Pack/Flare gun 5-2.wav new file mode 100644 index 0000000..aca441c Binary files /dev/null and b/Assets/Free Pack/Flare gun 5-2.wav differ diff --git a/Assets/Free Pack/Flare gun 5-2.wav.meta b/Assets/Free Pack/Flare gun 5-2.wav.meta new file mode 100644 index 0000000..6d813ad --- /dev/null +++ b/Assets/Free Pack/Flare gun 5-2.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 0bd05763df902854a80475577a26666a +timeCreated: 1570802972 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Forest 6 - Ice Forest.wav b/Assets/Free Pack/Forest 6 - Ice Forest.wav new file mode 100644 index 0000000..0840fc0 Binary files /dev/null and b/Assets/Free Pack/Forest 6 - Ice Forest.wav differ diff --git a/Assets/Free Pack/Forest 6 - Ice Forest.wav.meta b/Assets/Free Pack/Forest 6 - Ice Forest.wav.meta new file mode 100644 index 0000000..b0a4f7f --- /dev/null +++ b/Assets/Free Pack/Forest 6 - Ice Forest.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: f14e8bfdac498dd4f82766090b48e582 +timeCreated: 1570803062 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Ghost Manifestation 1.wav b/Assets/Free Pack/Ghost Manifestation 1.wav new file mode 100644 index 0000000..ef1343f Binary files /dev/null and b/Assets/Free Pack/Ghost Manifestation 1.wav differ diff --git a/Assets/Free Pack/Ghost Manifestation 1.wav.meta b/Assets/Free Pack/Ghost Manifestation 1.wav.meta new file mode 100644 index 0000000..fd5e7f6 --- /dev/null +++ b/Assets/Free Pack/Ghost Manifestation 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 26fbf6bb6963666478f6992bc53b9145 +timeCreated: 1570802975 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Ghost Manifestation 2.wav b/Assets/Free Pack/Ghost Manifestation 2.wav new file mode 100644 index 0000000..c6124c1 Binary files /dev/null and b/Assets/Free Pack/Ghost Manifestation 2.wav differ diff --git a/Assets/Free Pack/Ghost Manifestation 2.wav.meta b/Assets/Free Pack/Ghost Manifestation 2.wav.meta new file mode 100644 index 0000000..12a33cc --- /dev/null +++ b/Assets/Free Pack/Ghost Manifestation 2.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 618be86712ffac947997f96463301683 +timeCreated: 1570802987 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Hand Gun 1.wav b/Assets/Free Pack/Hand Gun 1.wav new file mode 100644 index 0000000..8ed6b92 Binary files /dev/null and b/Assets/Free Pack/Hand Gun 1.wav differ diff --git a/Assets/Free Pack/Hand Gun 1.wav.meta b/Assets/Free Pack/Hand Gun 1.wav.meta new file mode 100644 index 0000000..6ae52eb --- /dev/null +++ b/Assets/Free Pack/Hand Gun 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 6739c01659ad96d47987f4ddee226b36 +timeCreated: 1570802988 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Hand Gun 2.wav b/Assets/Free Pack/Hand Gun 2.wav new file mode 100644 index 0000000..c394787 Binary files /dev/null and b/Assets/Free Pack/Hand Gun 2.wav differ diff --git a/Assets/Free Pack/Hand Gun 2.wav.meta b/Assets/Free Pack/Hand Gun 2.wav.meta new file mode 100644 index 0000000..549ff60 --- /dev/null +++ b/Assets/Free Pack/Hand Gun 2.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 34b439bf70b80a6409eadecc6be92d68 +timeCreated: 1570802975 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Hand Gun 3.wav b/Assets/Free Pack/Hand Gun 3.wav new file mode 100644 index 0000000..be1aa35 Binary files /dev/null and b/Assets/Free Pack/Hand Gun 3.wav differ diff --git a/Assets/Free Pack/Hand Gun 3.wav.meta b/Assets/Free Pack/Hand Gun 3.wav.meta new file mode 100644 index 0000000..16f9603 --- /dev/null +++ b/Assets/Free Pack/Hand Gun 3.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: a764377339b869e459f5e53fb9258f73 +timeCreated: 1570803017 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Hand Gun_6.wav b/Assets/Free Pack/Hand Gun_6.wav new file mode 100644 index 0000000..1ec0e41 Binary files /dev/null and b/Assets/Free Pack/Hand Gun_6.wav differ diff --git a/Assets/Free Pack/Hand Gun_6.wav.meta b/Assets/Free Pack/Hand Gun_6.wav.meta new file mode 100644 index 0000000..2f61c13 --- /dev/null +++ b/Assets/Free Pack/Hand Gun_6.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 6dd7024f00606b44eb5884197a66a893 +timeCreated: 1570802991 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Heavy Object Impact 10.wav b/Assets/Free Pack/Heavy Object Impact 10.wav new file mode 100644 index 0000000..8c75c08 Binary files /dev/null and b/Assets/Free Pack/Heavy Object Impact 10.wav differ diff --git a/Assets/Free Pack/Heavy Object Impact 10.wav.meta b/Assets/Free Pack/Heavy Object Impact 10.wav.meta new file mode 100644 index 0000000..5bd66fc --- /dev/null +++ b/Assets/Free Pack/Heavy Object Impact 10.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 7b69beceabbd8f24e8bc62d77ac7ca1c +timeCreated: 1570802994 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Heavy Object Impact 4.wav b/Assets/Free Pack/Heavy Object Impact 4.wav new file mode 100644 index 0000000..c87c66a Binary files /dev/null and b/Assets/Free Pack/Heavy Object Impact 4.wav differ diff --git a/Assets/Free Pack/Heavy Object Impact 4.wav.meta b/Assets/Free Pack/Heavy Object Impact 4.wav.meta new file mode 100644 index 0000000..2b6ba24 --- /dev/null +++ b/Assets/Free Pack/Heavy Object Impact 4.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 9930d5b4be15bb04c9d0a6fa0d7e6b2e +timeCreated: 1570803016 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Ice Cavern-Loop.wav b/Assets/Free Pack/Ice Cavern-Loop.wav new file mode 100644 index 0000000..0c2803c Binary files /dev/null and b/Assets/Free Pack/Ice Cavern-Loop.wav differ diff --git a/Assets/Free Pack/Ice Cavern-Loop.wav.meta b/Assets/Free Pack/Ice Cavern-Loop.wav.meta new file mode 100644 index 0000000..b624763 --- /dev/null +++ b/Assets/Free Pack/Ice Cavern-Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 517dbd5357d36724c9ff71219172b9f6 +timeCreated: 1570802983 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Indiana Jones Punch.wav b/Assets/Free Pack/Indiana Jones Punch.wav new file mode 100644 index 0000000..f6cfdd1 Binary files /dev/null and b/Assets/Free Pack/Indiana Jones Punch.wav differ diff --git a/Assets/Free Pack/Indiana Jones Punch.wav.meta b/Assets/Free Pack/Indiana Jones Punch.wav.meta new file mode 100644 index 0000000..9698720 --- /dev/null +++ b/Assets/Free Pack/Indiana Jones Punch.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: e1a75776f005439469f89a17a986c567 +timeCreated: 1570803046 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Laser Gun Salve.wav b/Assets/Free Pack/Laser Gun Salve.wav new file mode 100644 index 0000000..27c8bc5 Binary files /dev/null and b/Assets/Free Pack/Laser Gun Salve.wav differ diff --git a/Assets/Free Pack/Laser Gun Salve.wav.meta b/Assets/Free Pack/Laser Gun Salve.wav.meta new file mode 100644 index 0000000..3db18f2 --- /dev/null +++ b/Assets/Free Pack/Laser Gun Salve.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: e88084c6f293c324db2b4dcf575d60dc +timeCreated: 1570803047 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Laser Impact Light_6.wav b/Assets/Free Pack/Laser Impact Light_6.wav new file mode 100644 index 0000000..8398812 Binary files /dev/null and b/Assets/Free Pack/Laser Impact Light_6.wav differ diff --git a/Assets/Free Pack/Laser Impact Light_6.wav.meta b/Assets/Free Pack/Laser Impact Light_6.wav.meta new file mode 100644 index 0000000..186b459 --- /dev/null +++ b/Assets/Free Pack/Laser Impact Light_6.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: bb6cdd13aeb95f743847b1cd460889bc +timeCreated: 1570803018 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Laser Multiple shots 1.wav b/Assets/Free Pack/Laser Multiple shots 1.wav new file mode 100644 index 0000000..3cab157 Binary files /dev/null and b/Assets/Free Pack/Laser Multiple shots 1.wav differ diff --git a/Assets/Free Pack/Laser Multiple shots 1.wav.meta b/Assets/Free Pack/Laser Multiple shots 1.wav.meta new file mode 100644 index 0000000..37cad66 --- /dev/null +++ b/Assets/Free Pack/Laser Multiple shots 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: c9bb4171cafd3dd47829336ea4c8d988 +timeCreated: 1570803025 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Machine Gun 1.wav b/Assets/Free Pack/Machine Gun 1.wav new file mode 100644 index 0000000..ec7a28b Binary files /dev/null and b/Assets/Free Pack/Machine Gun 1.wav differ diff --git a/Assets/Free Pack/Machine Gun 1.wav.meta b/Assets/Free Pack/Machine Gun 1.wav.meta new file mode 100644 index 0000000..038bba6 --- /dev/null +++ b/Assets/Free Pack/Machine Gun 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: d40330822ccea6140b664c0560d5022f +timeCreated: 1570803037 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Magic Spell - Sleeping spell 1.wav b/Assets/Free Pack/Magic Spell - Sleeping spell 1.wav new file mode 100644 index 0000000..7cb0961 Binary files /dev/null and b/Assets/Free Pack/Magic Spell - Sleeping spell 1.wav differ diff --git a/Assets/Free Pack/Magic Spell - Sleeping spell 1.wav.meta b/Assets/Free Pack/Magic Spell - Sleeping spell 1.wav.meta new file mode 100644 index 0000000..9fdabea --- /dev/null +++ b/Assets/Free Pack/Magic Spell - Sleeping spell 1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: adcac75087a17704ca6c0c3b15bc3aa5 +timeCreated: 1570803018 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Magic Spell - Turn to stone.wav b/Assets/Free Pack/Magic Spell - Turn to stone.wav new file mode 100644 index 0000000..9bf72ff Binary files /dev/null and b/Assets/Free Pack/Magic Spell - Turn to stone.wav differ diff --git a/Assets/Free Pack/Magic Spell - Turn to stone.wav.meta b/Assets/Free Pack/Magic Spell - Turn to stone.wav.meta new file mode 100644 index 0000000..f3dbf6b --- /dev/null +++ b/Assets/Free Pack/Magic Spell - Turn to stone.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 5fe4bc0609c03e24097e0cb3666a4fb5 +timeCreated: 1570802986 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Magic Spell_Coins_2.wav b/Assets/Free Pack/Magic Spell_Coins_2.wav new file mode 100644 index 0000000..017555c Binary files /dev/null and b/Assets/Free Pack/Magic Spell_Coins_2.wav differ diff --git a/Assets/Free Pack/Magic Spell_Coins_2.wav.meta b/Assets/Free Pack/Magic Spell_Coins_2.wav.meta new file mode 100644 index 0000000..46745fa --- /dev/null +++ b/Assets/Free Pack/Magic Spell_Coins_2.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 34f9cbd28a9740349b6cc2f5e280dda3 +timeCreated: 1570802976 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Magic Spell_Electricity Spell_1.wav b/Assets/Free Pack/Magic Spell_Electricity Spell_1.wav new file mode 100644 index 0000000..0fd4116 Binary files /dev/null and b/Assets/Free Pack/Magic Spell_Electricity Spell_1.wav differ diff --git a/Assets/Free Pack/Magic Spell_Electricity Spell_1.wav.meta b/Assets/Free Pack/Magic Spell_Electricity Spell_1.wav.meta new file mode 100644 index 0000000..068cfdc --- /dev/null +++ b/Assets/Free Pack/Magic Spell_Electricity Spell_1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: eec3bf121b316d64ca1c8aac7573a2f4 +timeCreated: 1570803048 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Magic Spell_Short Reverse_1.wav b/Assets/Free Pack/Magic Spell_Short Reverse_1.wav new file mode 100644 index 0000000..6285b71 Binary files /dev/null and b/Assets/Free Pack/Magic Spell_Short Reverse_1.wav differ diff --git a/Assets/Free Pack/Magic Spell_Short Reverse_1.wav.meta b/Assets/Free Pack/Magic Spell_Short Reverse_1.wav.meta new file mode 100644 index 0000000..22f6d88 --- /dev/null +++ b/Assets/Free Pack/Magic Spell_Short Reverse_1.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 7f4aa26d5b55226409cda231ffaf869b +timeCreated: 1570802997 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Magic Spell_Simple Swoosh_6.wav b/Assets/Free Pack/Magic Spell_Simple Swoosh_6.wav new file mode 100644 index 0000000..4f6b5f3 Binary files /dev/null and b/Assets/Free Pack/Magic Spell_Simple Swoosh_6.wav differ diff --git a/Assets/Free Pack/Magic Spell_Simple Swoosh_6.wav.meta b/Assets/Free Pack/Magic Spell_Simple Swoosh_6.wav.meta new file mode 100644 index 0000000..f724673 --- /dev/null +++ b/Assets/Free Pack/Magic Spell_Simple Swoosh_6.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: cc6699269b4c1d44ea1e860518b9bb73 +timeCreated: 1570803025 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Medieval City.wav b/Assets/Free Pack/Medieval City.wav new file mode 100644 index 0000000..3578066 Binary files /dev/null and b/Assets/Free Pack/Medieval City.wav differ diff --git a/Assets/Free Pack/Medieval City.wav.meta b/Assets/Free Pack/Medieval City.wav.meta new file mode 100644 index 0000000..dd46c7a --- /dev/null +++ b/Assets/Free Pack/Medieval City.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: c53d52b6903e77342963b7b627f126fb +timeCreated: 1570803025 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Metal Impact 7.wav b/Assets/Free Pack/Metal Impact 7.wav new file mode 100644 index 0000000..c610c01 Binary files /dev/null and b/Assets/Free Pack/Metal Impact 7.wav differ diff --git a/Assets/Free Pack/Metal Impact 7.wav.meta b/Assets/Free Pack/Metal Impact 7.wav.meta new file mode 100644 index 0000000..bcd993e --- /dev/null +++ b/Assets/Free Pack/Metal Impact 7.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 2e071f5b8b8467d45a5e6e24c23c6ad4 +timeCreated: 1570802975 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Metal impact 5.wav b/Assets/Free Pack/Metal impact 5.wav new file mode 100644 index 0000000..6486d4c Binary files /dev/null and b/Assets/Free Pack/Metal impact 5.wav differ diff --git a/Assets/Free Pack/Metal impact 5.wav.meta b/Assets/Free Pack/Metal impact 5.wav.meta new file mode 100644 index 0000000..0730642 --- /dev/null +++ b/Assets/Free Pack/Metal impact 5.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 958408b32ccf3714ea02821877b0870c +timeCreated: 1570803015 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Missile - Shot 4.wav b/Assets/Free Pack/Missile - Shot 4.wav new file mode 100644 index 0000000..a042eae Binary files /dev/null and b/Assets/Free Pack/Missile - Shot 4.wav differ diff --git a/Assets/Free Pack/Missile - Shot 4.wav.meta b/Assets/Free Pack/Missile - Shot 4.wav.meta new file mode 100644 index 0000000..2057bfe --- /dev/null +++ b/Assets/Free Pack/Missile - Shot 4.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 281e15cc92254794eaf05caf4d044b76 +timeCreated: 1570802975 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Monster Bite on Armor.wav b/Assets/Free Pack/Monster Bite on Armor.wav new file mode 100644 index 0000000..188b78d Binary files /dev/null and b/Assets/Free Pack/Monster Bite on Armor.wav differ diff --git a/Assets/Free Pack/Monster Bite on Armor.wav.meta b/Assets/Free Pack/Monster Bite on Armor.wav.meta new file mode 100644 index 0000000..cc6bfc9 --- /dev/null +++ b/Assets/Free Pack/Monster Bite on Armor.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 8ebcb6234d419344daa712ba65bb3798 +timeCreated: 1570802997 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Monster Bite.wav b/Assets/Free Pack/Monster Bite.wav new file mode 100644 index 0000000..3fe50aa Binary files /dev/null and b/Assets/Free Pack/Monster Bite.wav differ diff --git a/Assets/Free Pack/Monster Bite.wav.meta b/Assets/Free Pack/Monster Bite.wav.meta new file mode 100644 index 0000000..1e95610 --- /dev/null +++ b/Assets/Free Pack/Monster Bite.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: ac6034ade498bb94b87620cdf6eac48b +timeCreated: 1570803017 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Railgun - Shot 6.wav b/Assets/Free Pack/Railgun - Shot 6.wav new file mode 100644 index 0000000..c13a3ea Binary files /dev/null and b/Assets/Free Pack/Railgun - Shot 6.wav differ diff --git a/Assets/Free Pack/Railgun - Shot 6.wav.meta b/Assets/Free Pack/Railgun - Shot 6.wav.meta new file mode 100644 index 0000000..620dae6 --- /dev/null +++ b/Assets/Free Pack/Railgun - Shot 6.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: f9eb44b85c96be5429737d4dcadbfa3b +timeCreated: 1570803062 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Row Boat - Loop.wav b/Assets/Free Pack/Row Boat - Loop.wav new file mode 100644 index 0000000..8291ef1 Binary files /dev/null and b/Assets/Free Pack/Row Boat - Loop.wav differ diff --git a/Assets/Free Pack/Row Boat - Loop.wav.meta b/Assets/Free Pack/Row Boat - Loop.wav.meta new file mode 100644 index 0000000..079ff83 --- /dev/null +++ b/Assets/Free Pack/Row Boat - Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 78542e76d4c24a745bc1bb599adb55df +timeCreated: 1570802994 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Secret door.wav b/Assets/Free Pack/Secret door.wav new file mode 100644 index 0000000..0f11053 Binary files /dev/null and b/Assets/Free Pack/Secret door.wav differ diff --git a/Assets/Free Pack/Secret door.wav.meta b/Assets/Free Pack/Secret door.wav.meta new file mode 100644 index 0000000..fa07dbb --- /dev/null +++ b/Assets/Free Pack/Secret door.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 070779cdcfbe3ff4688691fb33bc3e4e +timeCreated: 1570802971 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Spaceship passing by.wav b/Assets/Free Pack/Spaceship passing by.wav new file mode 100644 index 0000000..98c803e Binary files /dev/null and b/Assets/Free Pack/Spaceship passing by.wav differ diff --git a/Assets/Free Pack/Spaceship passing by.wav.meta b/Assets/Free Pack/Spaceship passing by.wav.meta new file mode 100644 index 0000000..e69003c --- /dev/null +++ b/Assets/Free Pack/Spaceship passing by.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 7784e7ab59ab376458c07be56b1a8d6f +timeCreated: 1570802993 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Thunder strikes 30 second- Loop.wav b/Assets/Free Pack/Thunder strikes 30 second- Loop.wav new file mode 100644 index 0000000..9c13056 Binary files /dev/null and b/Assets/Free Pack/Thunder strikes 30 second- Loop.wav differ diff --git a/Assets/Free Pack/Thunder strikes 30 second- Loop.wav.meta b/Assets/Free Pack/Thunder strikes 30 second- Loop.wav.meta new file mode 100644 index 0000000..24313a5 --- /dev/null +++ b/Assets/Free Pack/Thunder strikes 30 second- Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 7dc48ac47b618424f8d032a339525809 +timeCreated: 1570802997 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Tsunami hitting a Large City.wav b/Assets/Free Pack/Tsunami hitting a Large City.wav new file mode 100644 index 0000000..e2cce8d Binary files /dev/null and b/Assets/Free Pack/Tsunami hitting a Large City.wav differ diff --git a/Assets/Free Pack/Tsunami hitting a Large City.wav.meta b/Assets/Free Pack/Tsunami hitting a Large City.wav.meta new file mode 100644 index 0000000..0129571 --- /dev/null +++ b/Assets/Free Pack/Tsunami hitting a Large City.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 40ab3a7e4e36423488e589303d63346f +timeCreated: 1570802978 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Free Pack/Walking in ChainMail - Loop.wav b/Assets/Free Pack/Walking in ChainMail - Loop.wav new file mode 100644 index 0000000..fa9153a Binary files /dev/null and b/Assets/Free Pack/Walking in ChainMail - Loop.wav differ diff --git a/Assets/Free Pack/Walking in ChainMail - Loop.wav.meta b/Assets/Free Pack/Walking in ChainMail - Loop.wav.meta new file mode 100644 index 0000000..56a55b1 --- /dev/null +++ b/Assets/Free Pack/Walking in ChainMail - Loop.wav.meta @@ -0,0 +1,23 @@ +fileFormatVersion: 2 +guid: 9b713c76b05f8b04882a23a60605b0d2 +timeCreated: 1570803016 +licenseType: Store +AudioImporter: + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/OurESP32Scripts/.DS_Store b/Assets/Inguz Media Studio/.DS_Store similarity index 78% rename from Assets/OurESP32Scripts/.DS_Store rename to Assets/Inguz Media Studio/.DS_Store index 495c9ad..3272579 100644 Binary files a/Assets/OurESP32Scripts/.DS_Store and b/Assets/Inguz Media Studio/.DS_Store differ diff --git a/Assets/Inguz Media Studio/The Beauty Medieval War Banners and PROPS/.DS_Store b/Assets/Inguz Media Studio/The Beauty Medieval War Banners and PROPS/.DS_Store new file mode 100644 index 0000000..1815244 Binary files /dev/null and b/Assets/Inguz Media Studio/The Beauty Medieval War Banners and PROPS/.DS_Store differ diff --git a/Assets/Inguz Media Studio/The Beauty Medieval War Banners and PROPS/Meshs/.DS_Store b/Assets/Inguz Media Studio/The Beauty Medieval War Banners and PROPS/Meshs/.DS_Store new file mode 100644 index 0000000..574d5b7 Binary files /dev/null and b/Assets/Inguz Media Studio/The Beauty Medieval War Banners and PROPS/Meshs/.DS_Store differ diff --git a/Assets/Jungle-3PupperStudios.meta b/Assets/Jungle-3PupperStudios.meta new file mode 100644 index 0000000..0dc0156 --- /dev/null +++ b/Assets/Jungle-3PupperStudios.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bf2548b45d8b944eb8a03c5024f6e25f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Jungle-3PupperStudios/.DS_Store b/Assets/Jungle-3PupperStudios/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/Assets/Jungle-3PupperStudios/.DS_Store differ diff --git a/Assets/Scenes/MainScene.unity b/Assets/Scenes/MainScene.unity index 6a8d6ce..bb95493 100644 --- a/Assets/Scenes/MainScene.unity +++ b/Assets/Scenes/MainScene.unity @@ -427,7 +427,11 @@ PrefabInstance: objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] - m_AddedGameObjects: [] + m_AddedGameObjects: + - targetCorrespondingSourceObject: {fileID: 400000, guid: da1981c3ee8ea7e4186a753e15495628, + type: 3} + insertIndex: -1 + addedObject: {fileID: 1110778549} m_AddedComponents: - targetCorrespondingSourceObject: {fileID: 100000, guid: da1981c3ee8ea7e4186a753e15495628, type: 3} @@ -528,6 +532,18 @@ MonoBehaviour: _whenSelect: m_PersistentCalls: m_Calls: + - m_Target: {fileID: 956254747} + m_TargetAssemblyTypeName: Oculus.Interaction.AudioTrigger, Oculus.Interaction.OVR.Samples + m_MethodName: PlayAudio + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 - m_Target: {fileID: 1596973211} m_TargetAssemblyTypeName: BoundEarthScript, Assembly-CSharp m_MethodName: stationCompleted @@ -2393,7 +2409,8 @@ Transform: m_LocalPosition: {x: 7.272697, y: -2.451, z: -7.06} m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} m_ConstrainProportionsScale: 1 - m_Children: [] + m_Children: + - {fileID: 1812190776} m_Father: {fileID: 1909354519} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &140392497 @@ -2508,6 +2525,18 @@ MonoBehaviour: _whenSelect: m_PersistentCalls: m_Calls: + - m_Target: {fileID: 194611073} + m_TargetAssemblyTypeName: Oculus.Interaction.AudioTrigger, Oculus.Interaction.OVR.Samples + m_MethodName: PlayAudio + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 - m_Target: {fileID: 579970259} m_TargetAssemblyTypeName: BoundAirScript, Assembly-CSharp m_MethodName: stationCompleted @@ -3186,6 +3215,164 @@ MonoBehaviour: mipBias: 0 varianceClampScale: 0.9 contrastAdaptiveSharpening: 0 +--- !u!1 &194611072 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 194611075} + - component: {fileID: 194611074} + - component: {fileID: 194611073} + m_Layer: 0 + m_Name: GrabAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &194611073 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 194611072} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 925ef87c5bafc37469a2f7ec825dee4b, type: 3} + m_Name: + m_EditorClassIdentifier: + _audioSource: {fileID: 194611074} + _audioClips: + - {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} + _volume: 0.7 + _volumeRandomization: + _useRandomRange: 0 + _min: 0 + _max: 0 + _pitch: 1 + _pitchRandomization: + _useRandomRange: 0 + _min: 0 + _max: 0 + _spatialize: 1 + _loop: 0 + _chanceToPlay: 100 + _playOnStart: 0 +--- !u!82 &194611074 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 194611072} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} + m_PlayOnAwake: 0 + m_Volume: 0.726 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!4 &194611075 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 194611072} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1812190776} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &196412783 PrefabInstance: m_ObjectHideFlags: 0 @@ -4033,10 +4220,6 @@ PrefabInstance: m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: - - targetCorrespondingSourceObject: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - type: 3} - insertIndex: -1 - addedObject: {fileID: 1634738945} - targetCorrespondingSourceObject: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, type: 3} insertIndex: -1 @@ -4154,6 +4337,18 @@ MonoBehaviour: _whenSelect: m_PersistentCalls: m_Calls: + - m_Target: {fileID: 1785673232} + m_TargetAssemblyTypeName: Oculus.Interaction.AudioTrigger, Oculus.Interaction.OVR.Samples + m_MethodName: PlayAudio + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 - m_Target: {fileID: 634926189} m_TargetAssemblyTypeName: BoundFireScript, Assembly-CSharp m_MethodName: stationCompleted @@ -4407,7 +4602,8 @@ Transform: m_LocalPosition: {x: 6.388697, y: -2.6683073, z: -2.4067612} m_LocalScale: {x: 0.1, y: 0.1, z: 0.1} m_ConstrainProportionsScale: 1 - m_Children: [] + m_Children: + - {fileID: 1951557098} m_Father: {fileID: 1117825302} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!114 &297646207 @@ -4476,6 +4672,18 @@ MonoBehaviour: _whenSelect: m_PersistentCalls: m_Calls: + - m_Target: {fileID: 1293977771} + m_TargetAssemblyTypeName: Oculus.Interaction.AudioTrigger, Oculus.Interaction.OVR.Samples + m_MethodName: PlayAudio + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 - m_Target: {fileID: 1726060523} m_TargetAssemblyTypeName: BoundWaterScript, Assembly-CSharp m_MethodName: stationCompleted @@ -8573,163 +8781,6 @@ Transform: type: 3} m_PrefabInstance: {fileID: 529238730} m_PrefabAsset: {fileID: 0} ---- !u!1 &531653195 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 531653196} - - component: {fileID: 531653198} - - component: {fileID: 531653197} - m_Layer: 0 - m_Name: CollisionFireAudio - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &531653196 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 531653195} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2102306009} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &531653197 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 531653195} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 925ef87c5bafc37469a2f7ec825dee4b, type: 3} - m_Name: - m_EditorClassIdentifier: - _audioSource: {fileID: 0} - _audioClips: [] - _volume: 0.7 - _volumeRandomization: - _useRandomRange: 0 - _min: 0 - _max: 0 - _pitch: 1 - _pitchRandomization: - _useRandomRange: 0 - _min: 0 - _max: 0 - _spatialize: 1 - _loop: 0 - _chanceToPlay: 100 - _playOnStart: 0 ---- !u!82 &531653198 -AudioSource: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 531653195} - m_Enabled: 1 - serializedVersion: 4 - OutputAudioMixerGroup: {fileID: 0} - m_audioClip: {fileID: 8300000, guid: a7e7326748386054ba8842b6372a36eb, type: 3} - m_PlayOnAwake: 0 - m_Volume: 1 - m_Pitch: 1 - Loop: 0 - Mute: 0 - Spatialize: 0 - SpatializePostEffects: 0 - Priority: 128 - DopplerLevel: 1 - MinDistance: 1 - MaxDistance: 500 - Pan2D: 0 - rolloffMode: 0 - BypassEffects: 0 - BypassListenerEffects: 0 - BypassReverbZones: 0 - rolloffCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 1 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - panLevelCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - spreadCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - reverbZoneMixCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 --- !u!1001 &536207336 PrefabInstance: m_ObjectHideFlags: 0 @@ -13481,6 +13532,164 @@ Transform: type: 3} m_PrefabInstance: {fileID: 952413882} m_PrefabAsset: {fileID: 0} +--- !u!1 &956254746 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 956254749} + - component: {fileID: 956254748} + - component: {fileID: 956254747} + m_Layer: 0 + m_Name: GrabAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &956254747 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 956254746} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 925ef87c5bafc37469a2f7ec825dee4b, type: 3} + m_Name: + m_EditorClassIdentifier: + _audioSource: {fileID: 956254748} + _audioClips: + - {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} + _volume: 0.7 + _volumeRandomization: + _useRandomRange: 0 + _min: 0 + _max: 0 + _pitch: 1 + _pitchRandomization: + _useRandomRange: 0 + _min: 0 + _max: 0 + _spatialize: 1 + _loop: 0 + _chanceToPlay: 100 + _playOnStart: 0 +--- !u!82 &956254748 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 956254746} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} + m_PlayOnAwake: 0 + m_Volume: 0.726 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!4 &956254749 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 956254746} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1110778549} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &957472744 PrefabInstance: m_ObjectHideFlags: 0 @@ -15997,6 +16206,38 @@ Transform: type: 3} m_PrefabInstance: {fileID: 1107665942} m_PrefabAsset: {fileID: 0} +--- !u!1 &1110778548 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1110778549} + m_Layer: 0 + m_Name: Audio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1110778549 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1110778548} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 0.7071068, w: 0.7071068} + m_LocalPosition: {x: 0.050139427, y: 0.010199976, z: -0.9882} + m_LocalScale: {x: 0.020000001, y: 0.020000001, z: 0.02} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 956254749} + m_Father: {fileID: 31480963} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &1110804446 GameObject: m_ObjectHideFlags: 0 @@ -22854,6 +23095,164 @@ Transform: type: 3} m_PrefabInstance: {fileID: 1282274188} m_PrefabAsset: {fileID: 0} +--- !u!1 &1293977770 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1293977773} + - component: {fileID: 1293977772} + - component: {fileID: 1293977771} + m_Layer: 0 + m_Name: GrabAudio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1293977771 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293977770} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 925ef87c5bafc37469a2f7ec825dee4b, type: 3} + m_Name: + m_EditorClassIdentifier: + _audioSource: {fileID: 1293977772} + _audioClips: + - {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} + _volume: 0.7 + _volumeRandomization: + _useRandomRange: 0 + _min: 0 + _max: 0 + _pitch: 1 + _pitchRandomization: + _useRandomRange: 0 + _min: 0 + _max: 0 + _spatialize: 1 + _loop: 0 + _chanceToPlay: 100 + _playOnStart: 0 +--- !u!82 &1293977772 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293977770} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} + m_PlayOnAwake: 0 + m_Volume: 0.726 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!4 &1293977773 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1293977770} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1951557098} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1307049533 PrefabInstance: m_ObjectHideFlags: 0 @@ -32122,79 +32521,6 @@ MeshFilter: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1633672324} m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} ---- !u!1 &1634738944 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1634738945} - - component: {fileID: 1634738946} - m_Layer: 0 - m_Name: HandGrabInteractable - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1634738945 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1634738944} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 282901707} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!114 &1634738946 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1634738944} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: e9a7676b01585ce43908639a27765dfc, type: 3} - m_Name: - m_EditorClassIdentifier: - _interactorFilters: [] - _maxInteractors: -1 - _maxSelectingInteractors: -1 - _data: {fileID: 0} - _pointableElement: {fileID: 282901711} - _rigidbody: {fileID: 282901710} - _physicsGrabbable: {fileID: 0} - _resetGrabOnGrabsUpdated: 1 - _scoringModifier: - _positionRotationWeight: 0.8 - _slippiness: 0 - _supportedGrabTypes: 3 - _pinchGrabRules: - _thumbRequirement: 1 - _indexRequirement: 1 - _middleRequirement: 1 - _ringRequirement: 0 - _pinkyRequirement: 0 - _unselectMode: 0 - _palmGrabRules: - _thumbRequirement: 1 - _indexRequirement: 2 - _middleRequirement: 2 - _ringRequirement: 2 - _pinkyRequirement: 1 - _unselectMode: 0 - _movementProvider: {fileID: 0} - _handAligment: 1 - _handGrabPoses: [] --- !u!1001 &1646552000 PrefabInstance: m_ObjectHideFlags: 0 @@ -34233,134 +34559,6 @@ Transform: type: 3} m_PrefabInstance: {fileID: 1750667229} m_PrefabAsset: {fileID: 0} ---- !u!1 &1758246365 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1758246366} - - component: {fileID: 1758246367} - m_Layer: 0 - m_Name: CollisionGroundAudio - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1758246366 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1758246365} - serializedVersion: 2 - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2102306009} - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!82 &1758246367 -AudioSource: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1758246365} - m_Enabled: 1 - serializedVersion: 4 - OutputAudioMixerGroup: {fileID: 0} - m_audioClip: {fileID: 8300000, guid: 64eb66c3bae7a18418708a7acf215268, type: 3} - m_PlayOnAwake: 0 - m_Volume: 1 - m_Pitch: 1 - Loop: 0 - Mute: 0 - Spatialize: 0 - SpatializePostEffects: 0 - Priority: 128 - DopplerLevel: 1 - MinDistance: 1 - MaxDistance: 500 - Pan2D: 0 - rolloffMode: 0 - BypassEffects: 0 - BypassListenerEffects: 0 - BypassReverbZones: 0 - rolloffCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - - serializedVersion: 3 - time: 1 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - panLevelCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - spreadCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 0 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 - reverbZoneMixCustomCurve: - serializedVersion: 2 - m_Curve: - - serializedVersion: 3 - time: 0 - value: 1 - inSlope: 0 - outSlope: 0 - tangentMode: 0 - weightedMode: 0 - inWeight: 0.33333334 - outWeight: 0.33333334 - m_PreInfinity: 2 - m_PostInfinity: 2 - m_RotationOrder: 4 --- !u!1001 &1761761443 PrefabInstance: m_ObjectHideFlags: 0 @@ -34652,7 +34850,7 @@ MonoBehaviour: m_EditorClassIdentifier: _audioSource: {fileID: 1785673233} _audioClips: - - {fileID: 8300000, guid: fa73defb6186473469383bd59ebadf53, type: 3} + - {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} _volume: 0.7 _volumeRandomization: _useRandomRange: 0 @@ -34677,9 +34875,9 @@ AudioSource: m_Enabled: 1 serializedVersion: 4 OutputAudioMixerGroup: {fileID: 0} - m_audioClip: {fileID: 8300000, guid: fa73defb6186473469383bd59ebadf53, type: 3} + m_audioClip: {fileID: 8300000, guid: cc6699269b4c1d44ea1e860518b9bb73, type: 3} m_PlayOnAwake: 0 - m_Volume: 1 + m_Volume: 0.726 m_Pitch: 1 Loop: 0 Mute: 0 @@ -39961,6 +40159,38 @@ ParticleSystem: type: 3} m_PrefabInstance: {fileID: 1801039554} m_PrefabAsset: {fileID: 0} +--- !u!1 &1812190775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1812190776} + m_Layer: 0 + m_Name: Audio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1812190776 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1812190775} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 0.7071068, w: 0.7071068} + m_LocalPosition: {x: -23.826965, y: 2.2099996, z: -2.2000027} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 194611075} + m_Father: {fileID: 140392496} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1812203059 PrefabInstance: m_ObjectHideFlags: 0 @@ -40465,17 +40695,17 @@ PrefabInstance: - target: {fileID: 9193789883078048358, guid: adb8d0acfdec64c3fab86a8ec1fb132f, type: 3} propertyPath: m_LocalScale.x - value: 0.2 + value: 0.15 objectReference: {fileID: 0} - target: {fileID: 9193789883078048358, guid: adb8d0acfdec64c3fab86a8ec1fb132f, type: 3} propertyPath: m_LocalScale.y - value: 0.2 + value: 0.15 objectReference: {fileID: 0} - target: {fileID: 9193789883078048358, guid: adb8d0acfdec64c3fab86a8ec1fb132f, type: 3} propertyPath: m_LocalScale.z - value: 0.2 + value: 0.15 objectReference: {fileID: 0} - target: {fileID: 9193789883078048358, guid: adb8d0acfdec64c3fab86a8ec1fb132f, type: 3} @@ -42022,6 +42252,38 @@ Transform: type: 3} m_PrefabInstance: {fileID: 1951472172} m_PrefabAsset: {fileID: 0} +--- !u!1 &1951557097 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1951557098} + m_Layer: 0 + m_Name: Audio + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1951557098 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1951557097} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: 0.7071068, w: 0.7071068} + m_LocalPosition: {x: -22.686974, y: 4.383073, z: -50.33239} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1293977773} + m_Father: {fileID: 297646206} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &1960598435 PrefabInstance: m_ObjectHideFlags: 0 @@ -43216,8 +43478,6 @@ Transform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1785673231} - - {fileID: 1758246366} - - {fileID: 531653196} m_Father: {fileID: 282901707} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &2110544429 stripped diff --git a/Assets/TOOLKIT_vol.2/.DS_Store b/Assets/TOOLKIT_vol.2/.DS_Store index 1615f30..2c6dae2 100644 Binary files a/Assets/TOOLKIT_vol.2/.DS_Store and b/Assets/TOOLKIT_vol.2/.DS_Store differ