DEG-68 [Feat] 오디오 추가
This commit is contained in:
parent
a0d7279381
commit
f0d7d621e0
BIN
Assets/KSH/GameManager.prefab
(Stored with Git LFS)
Normal file
BIN
Assets/KSH/GameManager.prefab
(Stored with Git LFS)
Normal file
Binary file not shown.
7
Assets/KSH/GameManager.prefab.meta
Normal file
7
Assets/KSH/GameManager.prefab.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: efa2c1ca8cdf23b41acbe2e39ef374b4
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/KSH/ReHousing.unity
(Stored with Git LFS)
BIN
Assets/KSH/ReHousing.unity
(Stored with Git LFS)
Binary file not shown.
@ -69,6 +69,7 @@ public class InteractionController : MonoBehaviour
|
||||
}
|
||||
else
|
||||
{
|
||||
GameManager.Instance.PlayInteractionSound(interactionType);
|
||||
interactionAnimationPanelController.ShowAnimationPanel(interactionType,interactionTexts.AnimationText);
|
||||
}
|
||||
}
|
||||
|
@ -35,19 +35,23 @@ public class InteractionAnimationPanelController : MonoBehaviour
|
||||
switch (actionType)
|
||||
{
|
||||
case ActionType.Sleep:
|
||||
animator.Play("Sleep");
|
||||
break;
|
||||
case ActionType.Work:
|
||||
animator.Play("Go2Work");
|
||||
break;
|
||||
case ActionType.Eat:
|
||||
animator.Play("Meal");
|
||||
break;
|
||||
case ActionType.Dungeon:
|
||||
animator.Play("Dungeon");
|
||||
break;
|
||||
case ActionType.Housework:
|
||||
animator.Play("Laundry");
|
||||
break;
|
||||
}
|
||||
_textAnimCoroutine = StartCoroutine(TextDotsAnimation());
|
||||
_autoHideCoroutine = StartCoroutine(AutoHidePanel());
|
||||
_autoHideCoroutine = StartCoroutine(AutoHidePanel(actionType));
|
||||
}
|
||||
|
||||
private IEnumerator TextDotsAnimation()
|
||||
@ -69,7 +73,7 @@ public class InteractionAnimationPanelController : MonoBehaviour
|
||||
/// 패널이 2초후 자동으로 닫히거나 터치시 닫히도록 합니다.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
private IEnumerator AutoHidePanel()
|
||||
private IEnumerator AutoHidePanel(ActionType actionType)
|
||||
{
|
||||
float startTime = Time.time;
|
||||
while (Time.time - startTime < animationDuration)
|
||||
@ -80,7 +84,8 @@ public class InteractionAnimationPanelController : MonoBehaviour
|
||||
}
|
||||
yield return null;
|
||||
}
|
||||
|
||||
|
||||
GameManager.Instance.StopInteractionSound(actionType);
|
||||
//패널 닫고 애니메이션 null처리
|
||||
HidePanel();
|
||||
_autoHideCoroutine = null;
|
||||
|
@ -16,6 +16,9 @@ public partial class GameManager
|
||||
[Header("UI 효과음")]
|
||||
[SerializeField] private AudioClip typingSFX;
|
||||
[SerializeField] private AudioClip buttonClickSFX;
|
||||
[SerializeField] private AudioClip errorSFX;
|
||||
[SerializeField] private AudioClip popupSFX;
|
||||
[SerializeField] private AudioClip levelupSFX; // 강화 레벨업
|
||||
|
||||
[Header("상호 작용 효과음")]
|
||||
[SerializeField] private AudioClip houseworkSFX;
|
||||
@ -28,12 +31,26 @@ public partial class GameManager
|
||||
[SerializeField] private AudioClip gameOverSFX;
|
||||
[SerializeField] private AudioClip victorySFX;
|
||||
|
||||
[Header("플레이어 전투 효과음")]
|
||||
[SerializeField] private AudioClip housingFootstepSFX;
|
||||
[SerializeField] private AudioClip dungeonFootstepSFX;
|
||||
[SerializeField] private AudioClip playerAttackSFX;
|
||||
|
||||
[Header("몬스터 전투 효과음")]
|
||||
[SerializeField] private AudioClip explosionSFX; // 폭발 사운드
|
||||
[SerializeField] private AudioClip cutSFX; // 베는 사운드
|
||||
[SerializeField] private AudioClip beamSFX; // 빔 소리?
|
||||
|
||||
// 씬에 따른 배경음 맵핑
|
||||
private Dictionary<string, AudioClip> sceneBGMMap = new Dictionary<string, AudioClip>();
|
||||
|
||||
// 현재 재생 중인 BGM 트랙
|
||||
private string currentBGMTrack = "";
|
||||
|
||||
private AudioSource currentInteractionSFX;
|
||||
private bool wasPlayingBGM = false;
|
||||
private AudioClip previousBGMClip = null;
|
||||
|
||||
// 오디오 관련 초기화
|
||||
private void InitializeAudio()
|
||||
{
|
||||
@ -48,28 +65,41 @@ public partial class GameManager
|
||||
// BGM 등록
|
||||
if (housingBGM != null) SafeSoundManager?.LoadAudioClip("HousingBGM", housingBGM);
|
||||
if (dungeonBGM != null) SafeSoundManager?.LoadAudioClip("DungeonBGM", dungeonBGM);
|
||||
|
||||
|
||||
// 게임 결과
|
||||
if (gameOverSFX != null) SafeSoundManager?.LoadAudioClip("GameOverSFX", gameOverSFX);
|
||||
if (victorySFX != null) SafeSoundManager?.LoadAudioClip("VictorySFX", victorySFX);
|
||||
|
||||
// SFX 등록
|
||||
|
||||
// UI 효과음 등록
|
||||
if (buttonClickSFX != null) SafeSoundManager?.LoadAudioClip("ButtonClick", buttonClickSFX);
|
||||
if (typingSFX != null) SafeSoundManager?.LoadAudioClip("Typing", typingSFX);
|
||||
|
||||
if (errorSFX != null) SafeSoundManager?.LoadAudioClip("Error", errorSFX);
|
||||
if (popupSFX != null) SafeSoundManager?.LoadAudioClip("Popup", popupSFX);
|
||||
if (levelupSFX != null) SafeSoundManager?.LoadAudioClip("LevelUp", levelupSFX);
|
||||
|
||||
// 상호작용 효과음 등록
|
||||
if (houseworkSFX != null) SafeSoundManager?.LoadAudioClip("Housework", houseworkSFX);
|
||||
if (goToWorkSFX != null) SafeSoundManager?.LoadAudioClip("Work", goToWorkSFX);
|
||||
if (goToDungeonSFX != null) SafeSoundManager?.LoadAudioClip("Dungeon", goToDungeonSFX);
|
||||
if (eatingSFX != null) SafeSoundManager?.LoadAudioClip("Eating", eatingSFX);
|
||||
if (sleepingSFX != null) SafeSoundManager?.LoadAudioClip("Sleeping", sleepingSFX);
|
||||
|
||||
// 플레이어 전투 효과음 등록
|
||||
if (housingFootstepSFX != null) SafeSoundManager?.LoadAudioClip("HousingFootstep", housingFootstepSFX);
|
||||
if (dungeonFootstepSFX != null) SafeSoundManager?.LoadAudioClip("DungeonFootstep", dungeonFootstepSFX);
|
||||
if (playerAttackSFX != null) SafeSoundManager?.LoadAudioClip("PlayerAttack", playerAttackSFX);
|
||||
|
||||
// 몬스터 전투 효과음 등록
|
||||
if (explosionSFX != null) SafeSoundManager?.LoadAudioClip("Explosion", explosionSFX);
|
||||
if (cutSFX != null) SafeSoundManager?.LoadAudioClip("Cut", cutSFX);
|
||||
if (beamSFX != null) SafeSoundManager?.LoadAudioClip("Beam", beamSFX);
|
||||
|
||||
// 저장된 볼륨 설정 로드
|
||||
// LoadVolumeSettings();
|
||||
|
||||
// 현재 씬에 맞는 배경음 재생
|
||||
// string currentSceneName = UnityEngine.SceneManagement.SceneManager.GetActiveScene().name;
|
||||
// HandleSceneAudio(currentSceneName);
|
||||
string currentSceneName = UnityEngine.SceneManagement.SceneManager.GetActiveScene().name;
|
||||
HandleSceneAudio(currentSceneName);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -116,31 +146,37 @@ public partial class GameManager
|
||||
#endregion
|
||||
|
||||
// 씬에 따른 오디오 처리
|
||||
private void HandleSceneAudio(string sceneName)
|
||||
private void HandleSceneAudio(string sceneName) // Housing, Game
|
||||
{
|
||||
string targetScene = "";
|
||||
|
||||
if (sceneName.Contains("Housing"))
|
||||
{
|
||||
targetScene = "Housing";
|
||||
}
|
||||
else if (sceneName.Contains("Game"))
|
||||
{
|
||||
targetScene = "Game";
|
||||
}
|
||||
else
|
||||
{
|
||||
targetScene = "Housing"; // defalut 값은 Housing으로 설정
|
||||
}
|
||||
|
||||
// 이미 같은 트랙이 재생 중이면 중복 재생하지 않음
|
||||
if (currentBGMTrack == sceneName) return;
|
||||
|
||||
// 씬에 맞는 BGM 재생
|
||||
if (sceneBGMMap.TryGetValue(sceneName, out AudioClip bgmClip))
|
||||
if (currentBGMTrack == targetScene) return;
|
||||
|
||||
// 타겟 씬에 맞는 BGM 재생
|
||||
if (sceneBGMMap.TryGetValue(targetScene, out AudioClip bgmClip))
|
||||
{
|
||||
if (bgmClip != null)
|
||||
{
|
||||
SafeSoundManager?.PlayBGM(bgmClip, true, 1.5f);
|
||||
currentBGMTrack = sceneName;
|
||||
currentBGMTrack = targetScene;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#region 배경음 제어
|
||||
|
||||
public void PlayHousingBackgroundMusic()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 효과음 제어
|
||||
|
||||
// 게임 오버 시 호출
|
||||
@ -166,12 +202,31 @@ public partial class GameManager
|
||||
SafeSoundManager?.PlaySFX("Typing");
|
||||
}
|
||||
|
||||
public void PlayErrorSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("Error");
|
||||
}
|
||||
|
||||
public void PlayPopupSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("Popup");
|
||||
}
|
||||
|
||||
public void PlayLevelUpSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("LevelUp");
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 상호작용 패널 효과음
|
||||
|
||||
public void PlayInteractionSound(ActionType actionType)
|
||||
{
|
||||
// 배경음 중지 (페이드아웃)
|
||||
SafeSoundManager?.StopBGM(true, 0.5f);
|
||||
|
||||
// 효과음 재생
|
||||
switch (actionType)
|
||||
{
|
||||
case ActionType.Sleep:
|
||||
@ -191,6 +246,94 @@ public partial class GameManager
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// 상호작용 효과음 종료
|
||||
public void StopInteractionSound(ActionType actionType, float fadeTime = 0.5f)
|
||||
{
|
||||
string sfxName = "";
|
||||
|
||||
switch (actionType)
|
||||
{
|
||||
case ActionType.Sleep:
|
||||
sfxName = "Sleeping";
|
||||
break;
|
||||
case ActionType.Work:
|
||||
sfxName = "Work";
|
||||
break;
|
||||
case ActionType.Dungeon:
|
||||
sfxName = "Dungeon";
|
||||
break;
|
||||
case ActionType.Eat:
|
||||
sfxName = "Eating";
|
||||
break;
|
||||
case ActionType.Housework:
|
||||
sfxName = "Housework";
|
||||
break;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(sfxName))
|
||||
{
|
||||
SafeSoundManager?.FadeOutSFXByName(sfxName, fadeTime);
|
||||
|
||||
// 배경음 재개
|
||||
if (wasPlayingBGM && previousBGMClip != null)
|
||||
{
|
||||
StartCoroutine(FadeOutAndPlayBGM(sfxName, fadeTime));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 효과음 페이드아웃 후 배경음 재생 코루틴
|
||||
private IEnumerator FadeOutAndPlayBGM(string sfxName, float fadeTime)
|
||||
{
|
||||
// 효과음 페이드아웃을 위한 시간 대기
|
||||
yield return new WaitForSeconds(fadeTime);
|
||||
|
||||
// Housing BGM 재생
|
||||
if (housingBGM != null)
|
||||
{
|
||||
SafeSoundManager?.PlayBGM(housingBGM, true, 0.5f);
|
||||
currentBGMTrack = "Housing";
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 플레이어 전투 효과음 제어
|
||||
|
||||
public void PlayHousingFootstepSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("HousingFootstep");
|
||||
}
|
||||
|
||||
public void PlayDungeonFootstepSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("DungeonFootstep");
|
||||
}
|
||||
|
||||
public void PlayPlayerAttackSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("PlayerAttack");
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region 몬스터 전투 효과음 제어
|
||||
|
||||
public void PlayExplosionSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("Explosion");
|
||||
}
|
||||
|
||||
public void PlayCutSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("Cut");
|
||||
}
|
||||
|
||||
public void PlayBeamSound()
|
||||
{
|
||||
SafeSoundManager?.PlaySFX("Beam");
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
@ -176,6 +176,38 @@ public class SoundManager : Singleton<SoundManager>
|
||||
return sfxSource;
|
||||
}
|
||||
|
||||
// 특정 이름의 효과음을 모두 페이드아웃
|
||||
public void FadeOutSFXByName(string clipName, float fadeTime = 0.5f)
|
||||
{
|
||||
if (string.IsNullOrEmpty(clipName)) return;
|
||||
|
||||
foreach (var source in sfxSources)
|
||||
{
|
||||
if (source.isPlaying && source.clip != null &&
|
||||
source.clip == audioClips.GetValueOrDefault(clipName))
|
||||
{
|
||||
StartCoroutine(FadeOutSFXCoroutine(source, fadeTime));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 효과음 페이드아웃 코루틴
|
||||
private IEnumerator FadeOutSFXCoroutine(AudioSource sfxSource, float fadeTime)
|
||||
{
|
||||
float startVolume = sfxSource.volume;
|
||||
float time = 0;
|
||||
|
||||
while (time < fadeTime)
|
||||
{
|
||||
sfxSource.volume = Mathf.Lerp(startVolume, 0, time / fadeTime);
|
||||
time += Time.deltaTime;
|
||||
yield return null;
|
||||
}
|
||||
|
||||
sfxSource.Stop();
|
||||
sfxSource.volume = sfxVolume; // 원래 볼륨으로 복원
|
||||
}
|
||||
|
||||
// 모든 효과음을 정지
|
||||
public void StopAllSFX()
|
||||
{
|
||||
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error3.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error3.wav
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error4.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error4.wav
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification1.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification1.wav
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification4.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification4.wav
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/SciFiNotification1.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/SciFiNotification1.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1a608f0d352da434a91cba8c6a7b7c72
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/SciFiNotification2.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/SciFiNotification2.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ddb42f8693a0241a5958f652befd07d0
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/SciFiNotification3.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/SciFiNotification3.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ed697055848ca4753a8faecacf8940a5
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton1.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton1.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 98743322818e54812925bba08fa0c62b
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton10.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton10.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: cca93041c5e2c4740964f9bf73dea73a
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton11.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton11.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 15041a931318647f898f8da0a5574d27
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton12.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton12.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: edbf807d5cf8e4bf0951a05c20896a98
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton13.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton13.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9c98ed2c0e8d6493487787ae960ce75c
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton14.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton14.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5ffd52c872e914abaa1a501030aef008
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton15.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton15.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 9ef060dc6138e49e5bf3be0d9494e079
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton2.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton2.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f4781d302b303408d8b02da3dd8aed5a
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton3.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton3.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b30d2757cc43a4de0b8ccab75fd20011
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton4.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton4.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d5421e98ca2144644b2a97fc3e932d93
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton5.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton5.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d77141bd174394c4092421f88654a2fe
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton6.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton6.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1a7bb6d7ff6344ab79e7d1bf3ffadd67
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton7.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton7.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 379fd361c3d284aa695a920ac9ef4ddc
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton8.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton8.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 02833781d50294f6fbff51aede214138
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton9.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/GenericButton9.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e31701ea2c9fe4921a9c8620dec12c95
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton1.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton1.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bc5ae3146f90845c4a58ef381ca325ad
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton2.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton2.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d29ff47b33fcc43318ab11ab4f080a1f
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton3.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton3.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8ae69a865125a4d649a803a400439b45
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton4.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton4.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: dc951f763a5aa4d93b1d18da891fed52
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton5.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/SnappyButton5.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 93886f0730d93455888a089599217469
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Extra/CameraSnapshot.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Extra/CameraSnapshot.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ee12793e95d724ef6835026245241b53
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Extra/HandleDragTick.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Extra/HandleDragTick.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: eed02a923a97e4cf9aba79d72c537514
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Extra/LittleNoise.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Extra/LittleNoise.wav
(Stored with Git LFS)
Binary file not shown.
@ -1,22 +0,0 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b7422e622c2374b9cb34d7bc47e2dd1c
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/dining.wav
(Stored with Git LFS)
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/dining.wav
(Stored with Git LFS)
Binary file not shown.
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/eatingSound.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/eatingSound.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 19e4303c63a20554b81f406a636cb56e
|
||||
guid: 92d754b25012ff444838b088500f8af9
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 7
|
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/moringSound.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/moringSound.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8e4b9dfb0070f214e9a496be2f2a1176
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 7
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/washingMachine.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/GongUMadang/washingMachine.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a5c327913c9e4f24082711fdd3993e3e
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 7
|
||||
defaultSettings:
|
||||
serializedVersion: 2
|
||||
loadType: 0
|
||||
sampleRateSetting: 0
|
||||
sampleRateOverride: 44100
|
||||
compressionFormat: 1
|
||||
quality: 1
|
||||
conversionMode: 0
|
||||
preloadAudioData: 0
|
||||
platformSettingOverrides: {}
|
||||
forceToMono: 0
|
||||
normalize: 1
|
||||
loadInBackground: 0
|
||||
ambisonic: 0
|
||||
3D: 1
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 516ee2f95ac2a4bdc921ba28e54fc3ab
|
||||
guid: 9eec6782af8b51640b43c3c724314795
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1cb5876d2bf7ada4cab9558fb6eaf9a6
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/03_Claw_03.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/03_Claw_03.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5a442b2c692c0410abceac7ba5ad3b7b
|
||||
guid: 56703418e3aed4c47a5f6622816b8e41
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/08_Bite_04.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/08_Bite_04.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 24ce61b7511f443e58aa606e96936277
|
||||
guid: fd25a15f9797641458336cccfb445343
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/15_Impact_flesh_02.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/15_Impact_flesh_02.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3c86c0124883c4649ace114e16b627e7
|
||||
guid: 7c47b20bb9874304a809dc5580d403ba
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/22_Slash_04.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/22_Slash_04.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8e8468c915f6243b0836a57e32a35a07
|
||||
guid: 88b1cbe3caa3fee4b8b103b5edd7aba9
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 6
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/35_Miss_Evade_02.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/35_Miss_Evade_02.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f11db4559b3ffff45b62e9327fc5535d
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/39_Block_03.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/39_Block_03.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b7b5a6156961bac44a67504d42ce6fcf
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/51_Flee_02.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/51_Flee_02.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c458b6714dab015479d507b21fd2cead
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/55_Encounter_02.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/55_Encounter_02.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 21c4a490b24ba2045bc815f7626a40ef
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/69_Enemy_death_01.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/69_Enemy_death_01.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 566d2ea6240b489479a6e9fd608c2621
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/77_flesh_02.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/10_Battle_SFX/77_flesh_02.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2b21ef916f6943c439b71a7c74568878
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c7956f95db5bb7b478a7982bc2eb428c
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/08_Step_rock_02.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/08_Step_rock_02.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 023ea3ddeaa8dd146b7633a0800e5a0e
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/12_Step_wood_03.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/12_Step_wood_03.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2352822feb4caa14ebdbc0c713289f8d
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/30_Jump_03.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/30_Jump_03.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4e349dc959014a845b9aa317d1c2b7f0
|
||||
AudioImporter:
|
||||
externalObjects: {}
|
||||
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:
|
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/45_Landing_01.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/RPG_Essentials_Free/12_Player_Movement_SFX/45_Landing_01.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user