30 changed files with 237 additions and 213 deletions
			
			
		
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					@ -0,0 +1,8 @@ | 
				
			|||||
 | 
					fileFormatVersion: 2 | 
				
			||||
 | 
					guid: 072e5ae9fd3d91046af14acaf6b118c2 | 
				
			||||
 | 
					folderAsset: yes | 
				
			||||
 | 
					DefaultImporter: | 
				
			||||
 | 
					  externalObjects: {} | 
				
			||||
 | 
					  userData:  | 
				
			||||
 | 
					  assetBundleName:  | 
				
			||||
 | 
					  assetBundleVariant:  | 
				
			||||
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					
								
									Binary file not shown.
								
							
						
					@ -0,0 +1,8 @@ | 
				
			|||||
 | 
					fileFormatVersion: 2 | 
				
			||||
 | 
					guid: 2d63fc558990e4c4abd9e64e4ef02a0b | 
				
			||||
 | 
					folderAsset: yes | 
				
			||||
 | 
					DefaultImporter: | 
				
			||||
 | 
					  externalObjects: {} | 
				
			||||
 | 
					  userData:  | 
				
			||||
 | 
					  assetBundleName:  | 
				
			||||
 | 
					  assetBundleVariant:  | 
				
			||||
@ -0,0 +1,22 @@ | 
				
			|||||
 | 
					%YAML 1.1 | 
				
			||||
 | 
					%TAG !u! tag:unity3d.com,2011: | 
				
			||||
 | 
					--- !u!114 &11400000 | 
				
			||||
 | 
					MonoBehaviour: | 
				
			||||
 | 
					  m_ObjectHideFlags: 0 | 
				
			||||
 | 
					  m_CorrespondingSourceObject: {fileID: 0} | 
				
			||||
 | 
					  m_PrefabInstance: {fileID: 0} | 
				
			||||
 | 
					  m_PrefabAsset: {fileID: 0} | 
				
			||||
 | 
					  m_GameObject: {fileID: 0} | 
				
			||||
 | 
					  m_Enabled: 1 | 
				
			||||
 | 
					  m_EditorHideFlags: 0 | 
				
			||||
 | 
					  m_Script: {fileID: 11500000, guid: 512202d9599b0c045b13ffb47d9ebe9e, type: 3} | 
				
			||||
 | 
					  m_Name: Ground | 
				
			||||
 | 
					  m_EditorClassIdentifier:  | 
				
			||||
 | 
					  m_GroundType: {fileID: 13400000, guid: 52a249eaa894e35488a1519221a56769, type: 2} | 
				
			||||
 | 
					  m_AudioClip: | 
				
			||||
 | 
					  - {fileID: 8300000, guid: ad5741084eec3493c87e72baec553b5c, type: 3} | 
				
			||||
 | 
					  m_PitchMax: 0.7 | 
				
			||||
 | 
					  m_PitchMin: 1.3 | 
				
			||||
 | 
					  m_Volume: 1 | 
				
			||||
 | 
					  m_VelcoityMax: 40 | 
				
			||||
 | 
					  m_VelcoityMin: 5 | 
				
			||||
@ -1,8 +1,8 @@ | 
				
			|||||
fileFormatVersion: 2 | 
					fileFormatVersion: 2 | 
				
			||||
guid: 1efe78fa29d2bcf4ba21383447074078 | 
					guid: a3d7e9d3971e72946921864c3574b1bb | 
				
			||||
NativeFormatImporter: | 
					NativeFormatImporter: | 
				
			||||
  externalObjects: {} | 
					  externalObjects: {} | 
				
			||||
  mainObjectFileID: 6418180475301049370 | 
					  mainObjectFileID: 11400000 | 
				
			||||
  userData:  | 
					  userData:  | 
				
			||||
  assetBundleName:  | 
					  assetBundleName:  | 
				
			||||
  assetBundleVariant:  | 
					  assetBundleVariant:  | 
				
			||||
@ -0,0 +1,8 @@ | 
				
			|||||
 | 
					fileFormatVersion: 2 | 
				
			||||
 | 
					guid: fa6c04b00dd26394cbfa4b531f9982a5 | 
				
			||||
 | 
					folderAsset: yes | 
				
			||||
 | 
					DefaultImporter: | 
				
			||||
 | 
					  externalObjects: {} | 
				
			||||
 | 
					  userData:  | 
				
			||||
 | 
					  assetBundleName:  | 
				
			||||
 | 
					  assetBundleVariant:  | 
				
			||||
@ -0,0 +1,16 @@ | 
				
			|||||
 | 
					using NUnit.Framework; | 
				
			||||
 | 
					using System.Collections; | 
				
			||||
 | 
					using System.Collections.Generic; | 
				
			||||
 | 
					using UnityEngine; | 
				
			||||
 | 
					
 | 
				
			||||
 | 
					[CreateAssetMenu] | 
				
			||||
 | 
					public class AudioObject : ScriptableObject | 
				
			||||
 | 
					{ | 
				
			||||
 | 
					    public PhysicMaterial m_GroundType; | 
				
			||||
 | 
					    public List<AudioClip> m_AudioClip = new List<AudioClip>(); | 
				
			||||
 | 
					    public float m_PitchMax; | 
				
			||||
 | 
					    public float m_PitchMin; | 
				
			||||
 | 
					    public float m_Volume; | 
				
			||||
 | 
					    public float m_VelcoityMax; | 
				
			||||
 | 
					    public float m_VelcoityMin; | 
				
			||||
 | 
					} | 
				
			||||
@ -0,0 +1,2 @@ | 
				
			|||||
 | 
					fileFormatVersion: 2 | 
				
			||||
 | 
					guid: 512202d9599b0c045b13ffb47d9ebe9e | 
				
			||||
								
									Binary file not shown.
								
							
						
					@ -1,71 +0,0 @@ | 
				
			|||||
%YAML 1.1 | 
					 | 
				
			||||
%TAG !u! tag:unity3d.com,2011: | 
					 | 
				
			||||
--- !u!1233149941 &-5975054407277783851 | 
					 | 
				
			||||
AudioContainerElement: | 
					 | 
				
			||||
  m_ObjectHideFlags: 1 | 
					 | 
				
			||||
  m_CorrespondingSourceObject: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabInstance: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabAsset: {fileID: 0} | 
					 | 
				
			||||
  m_Name: 617056__fmaudio__tapping-wood-1_{-5975054407277783851} | 
					 | 
				
			||||
  m_AudioClip: {fileID: 8300000, guid: 591c24ce5596adf4e9d1e7a0cabe0d25, type: 3} | 
					 | 
				
			||||
  m_Volume: 0 | 
					 | 
				
			||||
  m_Enabled: 1 | 
					 | 
				
			||||
--- !u!1233149941 &-5368430530676617884 | 
					 | 
				
			||||
AudioContainerElement: | 
					 | 
				
			||||
  m_ObjectHideFlags: 1 | 
					 | 
				
			||||
  m_CorrespondingSourceObject: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabInstance: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabAsset: {fileID: 0} | 
					 | 
				
			||||
  m_Name: 617055__fmaudio__tapping-wood-2_{-5368430530676617884} | 
					 | 
				
			||||
  m_AudioClip: {fileID: 8300000, guid: 6ac67932331adca41ae832e195a72b91, type: 3} | 
					 | 
				
			||||
  m_Volume: 0 | 
					 | 
				
			||||
  m_Enabled: 1 | 
					 | 
				
			||||
--- !u!1307931743 &6418180475301049370 | 
					 | 
				
			||||
AudioRandomContainer: | 
					 | 
				
			||||
  m_ObjectHideFlags: 0 | 
					 | 
				
			||||
  m_CorrespondingSourceObject: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabInstance: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabAsset: {fileID: 0} | 
					 | 
				
			||||
  m_Name: New Audio Random Container | 
					 | 
				
			||||
  m_Volume: 0 | 
					 | 
				
			||||
  m_Pitch: 0 | 
					 | 
				
			||||
  m_AutomaticTriggerTime: 0 | 
					 | 
				
			||||
  m_LoopCount: 1 | 
					 | 
				
			||||
  m_VolumeRandomizationRange: {x: -20.014149, y: 3.455143} | 
					 | 
				
			||||
  m_PitchRandomizationRange: {x: -223.94107, y: 228.36092} | 
					 | 
				
			||||
  m_AutomaticTriggerTimeRandomizationRange: {x: 0, y: 0} | 
					 | 
				
			||||
  m_LoopCountRandomizationRange: {x: 0, y: 0} | 
					 | 
				
			||||
  m_Elements: | 
					 | 
				
			||||
  - {fileID: 8741578137423200642} | 
					 | 
				
			||||
  - {fileID: -5368430530676617884} | 
					 | 
				
			||||
  - {fileID: -5975054407277783851} | 
					 | 
				
			||||
  - {fileID: 7406355764817372577} | 
					 | 
				
			||||
  m_AvoidRepeatingLast: 0 | 
					 | 
				
			||||
  m_PlaybackMode: 0 | 
					 | 
				
			||||
  m_TriggerMode: 0 | 
					 | 
				
			||||
  m_AutomaticTriggerMode: 1 | 
					 | 
				
			||||
  m_LoopMode: 2 | 
					 | 
				
			||||
  m_VolumeRandomizationEnabled: 1 | 
					 | 
				
			||||
  m_PitchRandomizationEnabled: 1 | 
					 | 
				
			||||
  m_AutomaticTriggerTimeRandomizationEnabled: 0 | 
					 | 
				
			||||
  m_LoopCountRandomizationEnabled: 0 | 
					 | 
				
			||||
--- !u!1233149941 &7406355764817372577 | 
					 | 
				
			||||
AudioContainerElement: | 
					 | 
				
			||||
  m_ObjectHideFlags: 1 | 
					 | 
				
			||||
  m_CorrespondingSourceObject: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabInstance: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabAsset: {fileID: 0} | 
					 | 
				
			||||
  m_Name: 617053__fmaudio__tapping-wood-4_{7406355764817372577} | 
					 | 
				
			||||
  m_AudioClip: {fileID: 8300000, guid: 4504e7a182be36a40ab60949991502fd, type: 3} | 
					 | 
				
			||||
  m_Volume: 0 | 
					 | 
				
			||||
  m_Enabled: 1 | 
					 | 
				
			||||
--- !u!1233149941 &8741578137423200642 | 
					 | 
				
			||||
AudioContainerElement: | 
					 | 
				
			||||
  m_ObjectHideFlags: 1 | 
					 | 
				
			||||
  m_CorrespondingSourceObject: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabInstance: {fileID: 0} | 
					 | 
				
			||||
  m_PrefabAsset: {fileID: 0} | 
					 | 
				
			||||
  m_Name: 458366__dwoboyle__footsteps-tile-run-13_{8741578137423200642} | 
					 | 
				
			||||
  m_AudioClip: {fileID: 8300000, guid: 77d1257663150ef4099ba5cfc873f0f8, type: 3} | 
					 | 
				
			||||
  m_Volume: 0 | 
					 | 
				
			||||
  m_Enabled: 0 | 
					 | 
				
			||||
@ -1 +1 @@ | 
				
			|||||
{"count":1,"self":8.0935408,"total":8.2257777,"children":{"InitializeActuators":{"count":1,"self":0.0015025,"total":0.0015025,"children":null},"InitializeSensors":{"count":1,"self":0.0015030999999999998,"total":0.0015030999999999998,"children":null},"AgentSendState":{"count":100,"self":0.0045179999999999994,"total":0.0237175,"children":{"CollectObservations":{"count":20,"self":0.0035126999999999997,"total":0.0035126999999999997,"children":null},"WriteActionMask":{"count":20,"self":0,"total":0,"children":null},"RequestDecision":{"count":20,"self":0.0156868,"total":0.0156868,"children":null}}},"DecideAction":{"count":100,"self":0.098491399999999993,"total":0.09999509999999999,"children":{"RayPerceptionSensor.Perceive":{"count":20,"self":0.0015037,"total":0.0015037,"children":null}}},"AgentAct":{"count":100,"self":0.0045157999999999995,"total":0.0045157999999999995,"children":null}},"gauges":{},"metadata":{"timer_format_version":"0.1.0","start_time_seconds":"1710434073","unity_version":"2023.2.8f1","command_line_arguments":"C:\\Program Files\\Unity\\Hub\\Editor\\2023.2.8f1\\Editor\\Unity.exe -projectpath C:\\Users\\caile\\Desktop\\Projects\\24_02-Beep\\4_Unity\\Beep Final Git\\beep-final -useHub -hubIPC -cloudEnvironment production","communication_protocol_version":"1.5.0","com.unity.ml-agents_version":"2.3.0-exp.3","scene_name":"Beep","end_time_seconds":"1710434082"}} | 
					{"count":1,"self":21.986438399999997,"total":22.2462934,"children":{"InitializeActuators":{"count":1,"self":0.0010111999999999999,"total":0.0010111999999999999,"children":null},"InitializeSensors":{"count":1,"self":0.0025353999999999997,"total":0.0025353999999999997,"children":null},"AgentSendState":{"count":815,"self":0.0125647,"total":0.032178,"children":{"CollectObservations":{"count":163,"self":0.0035077,"total":0.0035077,"children":null},"WriteActionMask":{"count":163,"self":0,"total":0,"children":null},"RequestDecision":{"count":163,"self":0.016105599999999998,"total":0.016105599999999998,"children":null}}},"DecideAction":{"count":815,"self":0.21458539999999998,"total":0.2181073,"children":{"RayPerceptionSensor.Perceive":{"count":163,"self":0.0035218999999999997,"total":0.0035218999999999997,"children":null}}},"AgentAct":{"count":815,"self":0.0050181,"total":0.0050181,"children":null}},"gauges":{},"metadata":{"timer_format_version":"0.1.0","start_time_seconds":"1710504874","unity_version":"2023.2.8f1","command_line_arguments":"C:\\Program Files\\Unity\\Hub\\Editor\\2023.2.8f1\\Editor\\Unity.exe -projectpath C:\\Users\\caile\\Desktop\\Projects\\24_02-Beep\\4_Unity\\Beep Final Git\\beep-final -useHub -hubIPC -cloudEnvironment production","communication_protocol_version":"1.5.0","com.unity.ml-agents_version":"2.3.0-exp.3","scene_name":"Beep","end_time_seconds":"1710504896"}} | 
				
			||||
					Loading…
					
					
				
		Reference in new issue