git conflict reslove
This commit is contained in:
commit
e58e0df8e9
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
|
else
|
||||||
{
|
{
|
||||||
|
GameManager.Instance.PlayInteractionSound(interactionType);
|
||||||
interactionAnimationPanelController.ShowAnimationPanel(interactionType,interactionTexts.AnimationText);
|
interactionAnimationPanelController.ShowAnimationPanel(interactionType,interactionTexts.AnimationText);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -36,19 +36,23 @@ public class InteractionAnimationPanelController : MonoBehaviour
|
|||||||
switch (actionType)
|
switch (actionType)
|
||||||
{
|
{
|
||||||
case ActionType.Sleep:
|
case ActionType.Sleep:
|
||||||
|
animator.Play("Sleep");
|
||||||
break;
|
break;
|
||||||
case ActionType.Work:
|
case ActionType.Work:
|
||||||
|
animator.Play("Go2Work");
|
||||||
break;
|
break;
|
||||||
case ActionType.Eat:
|
case ActionType.Eat:
|
||||||
|
animator.Play("Meal");
|
||||||
break;
|
break;
|
||||||
case ActionType.Dungeon:
|
case ActionType.Dungeon:
|
||||||
|
animator.Play("Dungeon");
|
||||||
break;
|
break;
|
||||||
case ActionType.Housework:
|
case ActionType.Housework:
|
||||||
animator.Play("Laundry");
|
animator.Play("Laundry");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
_textAnimCoroutine = StartCoroutine(TextDotsAnimation());
|
_textAnimCoroutine = StartCoroutine(TextDotsAnimation());
|
||||||
_autoHideCoroutine = StartCoroutine(AutoHidePanel());
|
_autoHideCoroutine = StartCoroutine(AutoHidePanel(actionType));
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerator TextDotsAnimation()
|
private IEnumerator TextDotsAnimation()
|
||||||
@ -70,7 +74,7 @@ public class InteractionAnimationPanelController : MonoBehaviour
|
|||||||
/// 패널이 2초후 자동으로 닫히거나 터치시 닫히도록 합니다.
|
/// 패널이 2초후 자동으로 닫히거나 터치시 닫히도록 합니다.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
private IEnumerator AutoHidePanel()
|
private IEnumerator AutoHidePanel(ActionType actionType)
|
||||||
{
|
{
|
||||||
float startTime = Time.time;
|
float startTime = Time.time;
|
||||||
while (Time.time - startTime < animationDuration)
|
while (Time.time - startTime < animationDuration)
|
||||||
@ -82,6 +86,7 @@ public class InteractionAnimationPanelController : MonoBehaviour
|
|||||||
yield return null;
|
yield return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GameManager.Instance.StopInteractionSound(actionType);
|
||||||
//패널 닫고 애니메이션 null처리
|
//패널 닫고 애니메이션 null처리
|
||||||
HidePanel();
|
HidePanel();
|
||||||
_autoHideCoroutine = null;
|
_autoHideCoroutine = null;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: c0f5786f639278d479c9da914217fdad
|
guid: 6278383b82513424bb58a3faeeb8a9db
|
||||||
timeCreated: 1545638758
|
timeCreated: 1545638758
|
||||||
licenseType: Store
|
licenseType: Store
|
||||||
AudioImporter:
|
AudioImporter:
|
||||||
|
@ -44,7 +44,6 @@ public class ChatWindowController : MonoBehaviour, IPointerClickHandler
|
|||||||
[SerializeField] private TMP_Text chatText;
|
[SerializeField] private TMP_Text chatText;
|
||||||
[SerializeField] private Image clickIndicator;
|
[SerializeField] private Image clickIndicator;
|
||||||
[SerializeField] private GameObject chatWindowObject; // 대화 종료용
|
[SerializeField] private GameObject chatWindowObject; // 대화 종료용
|
||||||
[SerializeField] private AudioClip typingClip; // 타이핑 사운드
|
|
||||||
|
|
||||||
private Coroutine _typingCoroutine;
|
private Coroutine _typingCoroutine;
|
||||||
private Coroutine _clickCoroutine;
|
private Coroutine _clickCoroutine;
|
||||||
@ -173,7 +172,7 @@ public class ChatWindowController : MonoBehaviour, IPointerClickHandler
|
|||||||
strText.Append(text[i]);
|
strText.Append(text[i]);
|
||||||
chatText.text = strText.ToString();
|
chatText.text = strText.ToString();
|
||||||
yield return new WaitForSeconds(0.05f);
|
yield return new WaitForSeconds(0.05f);
|
||||||
SoundManager.Instance.PlaySFX(typingClip); // 타이핑 사운드
|
GameManager.Instance.PlayTypingSound();
|
||||||
}
|
}
|
||||||
|
|
||||||
_clickCoroutine = StartCoroutine(ClickIndicatorCoroutine());
|
_clickCoroutine = StartCoroutine(ClickIndicatorCoroutine());
|
||||||
|
@ -1,22 +1,45 @@
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine.Serialization;
|
||||||
|
|
||||||
// 게임 매니저의 오디오 관련 부분 클래스
|
// 게임 매니저의 오디오 관련 부분 클래스
|
||||||
public partial class GameManager
|
public partial class GameManager
|
||||||
{
|
{
|
||||||
|
private SoundManager SafeSoundManager => SoundManager.Instance;
|
||||||
|
|
||||||
// 오디오 클립 참조
|
// 오디오 클립 참조
|
||||||
[Header("오디오 설정")]
|
[Header("배경음")]
|
||||||
[SerializeField] private AudioClip housingBGM;
|
[SerializeField] private AudioClip housingBGM;
|
||||||
[SerializeField] private AudioClip dungeonBGM;
|
[SerializeField] private AudioClip dungeonBGM;
|
||||||
[SerializeField] private AudioClip gameOverBGM;
|
|
||||||
[SerializeField] private AudioClip victoryBGM;
|
|
||||||
|
|
||||||
|
[Header("UI 효과음")]
|
||||||
|
[SerializeField] private AudioClip typingSFX;
|
||||||
[SerializeField] private AudioClip buttonClickSFX;
|
[SerializeField] private AudioClip buttonClickSFX;
|
||||||
|
[SerializeField] private AudioClip errorSFX;
|
||||||
|
[SerializeField] private AudioClip popupSFX;
|
||||||
|
[SerializeField] private AudioClip levelupSFX; // 강화 레벨업
|
||||||
|
|
||||||
[Header("몬스터 효과음")]
|
[Header("상호 작용 효과음")]
|
||||||
[SerializeField] private AudioClip monsterAttackSFX;
|
[SerializeField] private AudioClip houseworkSFX;
|
||||||
[SerializeField] private AudioClip monsterDeathSFX;
|
[SerializeField] private AudioClip goToWorkSFX;
|
||||||
|
[SerializeField] private AudioClip goToDungeonSFX;
|
||||||
|
[SerializeField] private AudioClip eatingSFX;
|
||||||
|
[SerializeField] private AudioClip sleepingSFX;
|
||||||
|
|
||||||
|
[Header("게임 결과 효과음")]
|
||||||
|
[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>();
|
private Dictionary<string, AudioClip> sceneBGMMap = new Dictionary<string, AudioClip>();
|
||||||
@ -24,6 +47,10 @@ public partial class GameManager
|
|||||||
// 현재 재생 중인 BGM 트랙
|
// 현재 재생 중인 BGM 트랙
|
||||||
private string currentBGMTrack = "";
|
private string currentBGMTrack = "";
|
||||||
|
|
||||||
|
private AudioSource currentInteractionSFX;
|
||||||
|
private bool wasPlayingBGM = false;
|
||||||
|
private AudioClip previousBGMClip = null;
|
||||||
|
|
||||||
// 오디오 관련 초기화
|
// 오디오 관련 초기화
|
||||||
private void InitializeAudio()
|
private void InitializeAudio()
|
||||||
{
|
{
|
||||||
@ -36,24 +63,43 @@ public partial class GameManager
|
|||||||
if (SoundManager.Instance != null)
|
if (SoundManager.Instance != null)
|
||||||
{
|
{
|
||||||
// BGM 등록
|
// BGM 등록
|
||||||
if (housingBGM != null) SoundManager.Instance.LoadAudioClip("HousingBGM", housingBGM);
|
if (housingBGM != null) SafeSoundManager?.LoadAudioClip("HousingBGM", housingBGM);
|
||||||
if (dungeonBGM != null) SoundManager.Instance.LoadAudioClip("DungeonBGM", dungeonBGM);
|
if (dungeonBGM != null) SafeSoundManager?.LoadAudioClip("DungeonBGM", dungeonBGM);
|
||||||
if (gameOverBGM != null) SoundManager.Instance.LoadAudioClip("GameOverBGM", gameOverBGM);
|
|
||||||
if (victoryBGM != null) SoundManager.Instance.LoadAudioClip("VictoryBGM", victoryBGM);
|
|
||||||
|
|
||||||
// SFX 등록
|
// 게임 결과
|
||||||
if (buttonClickSFX != null) SoundManager.Instance.LoadAudioClip("ButtonClick", buttonClickSFX);
|
if (gameOverSFX != null) SafeSoundManager?.LoadAudioClip("GameOverSFX", gameOverSFX);
|
||||||
|
if (victorySFX != null) SafeSoundManager?.LoadAudioClip("VictorySFX", victorySFX);
|
||||||
|
|
||||||
// 몬스터 SFX 등록
|
// UI 효과음 등록
|
||||||
if (monsterAttackSFX != null) SoundManager.Instance.LoadAudioClip("MonsterAttack", monsterAttackSFX);
|
if (buttonClickSFX != null) SafeSoundManager?.LoadAudioClip("ButtonClick", buttonClickSFX);
|
||||||
if (monsterDeathSFX != null) SoundManager.Instance.LoadAudioClip("MonsterDeath", monsterDeathSFX);
|
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();
|
// LoadVolumeSettings();
|
||||||
|
|
||||||
// 현재 씬에 맞는 배경음 재생
|
// 현재 씬에 맞는 배경음 재생
|
||||||
// string currentSceneName = UnityEngine.SceneManagement.SceneManager.GetActiveScene().name;
|
string currentSceneName = UnityEngine.SceneManagement.SceneManager.GetActiveScene().name;
|
||||||
// HandleSceneAudio(currentSceneName);
|
HandleSceneAudio(currentSceneName);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -66,10 +112,8 @@ public partial class GameManager
|
|||||||
// BGM 볼륨 설정 (0.0 ~ 1.0)
|
// BGM 볼륨 설정 (0.0 ~ 1.0)
|
||||||
public void SetVolumeBGM(float value)
|
public void SetVolumeBGM(float value)
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
|
||||||
|
|
||||||
value = Mathf.Clamp01(value); // 혹시 모를 범위 제한
|
value = Mathf.Clamp01(value); // 혹시 모를 범위 제한
|
||||||
SoundManager.Instance.SetBGMVolume(value);
|
SafeSoundManager?.SetBGMVolume(value);
|
||||||
|
|
||||||
// 설정 저장
|
// 설정 저장
|
||||||
// PlayerPrefs.SetFloat("BGMVolume", value);
|
// PlayerPrefs.SetFloat("BGMVolume", value);
|
||||||
@ -79,10 +123,8 @@ public partial class GameManager
|
|||||||
// SFX 볼륨 설정 (0.0 ~ 1.0)
|
// SFX 볼륨 설정 (0.0 ~ 1.0)
|
||||||
public void SetVolumeSFX(float value)
|
public void SetVolumeSFX(float value)
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
|
||||||
|
|
||||||
value = Mathf.Clamp01(value);
|
value = Mathf.Clamp01(value);
|
||||||
SoundManager.Instance.SetSFXVolume(value);
|
SafeSoundManager?.SetSFXVolume(value);
|
||||||
|
|
||||||
// 설정 저장
|
// 설정 저장
|
||||||
// PlayerPrefs.SetFloat("SFXVolume", value);
|
// PlayerPrefs.SetFloat("SFXVolume", value);
|
||||||
@ -95,89 +137,202 @@ public partial class GameManager
|
|||||||
// float bgmVolume = PlayerPrefs.GetFloat("BGMVolume", 1.0f);
|
// float bgmVolume = PlayerPrefs.GetFloat("BGMVolume", 1.0f);
|
||||||
// float sfxVolume = PlayerPrefs.GetFloat("SFXVolume", 1.0f);
|
// float sfxVolume = PlayerPrefs.GetFloat("SFXVolume", 1.0f);
|
||||||
//
|
//
|
||||||
// // 저장된 볼륨 설정 적용
|
//
|
||||||
// if (SoundManager.Instance != null)
|
// SafeSoundManager?.SetBGMVolume(bgmVolume);
|
||||||
// {
|
// SafeSoundManager?.SetSFXVolume(sfxVolume);
|
||||||
// SoundManager.Instance.SetBGMVolume(bgmVolume);
|
//
|
||||||
// SoundManager.Instance.SetSFXVolume(sfxVolume);
|
|
||||||
// }
|
|
||||||
// }
|
// }
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
// 씬에 따른 오디오 처리
|
// 씬에 따른 오디오 처리
|
||||||
private void HandleSceneAudio(string sceneName)
|
private void HandleSceneAudio(string sceneName) // Housing, Game
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
string targetScene = "";
|
||||||
|
|
||||||
|
if (sceneName.Contains("Housing"))
|
||||||
|
{
|
||||||
|
targetScene = "Housing";
|
||||||
|
}
|
||||||
|
else if (sceneName.Contains("Game"))
|
||||||
|
{
|
||||||
|
targetScene = "Game";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
targetScene = "Housing"; // defalut 값은 Housing으로 설정
|
||||||
|
}
|
||||||
|
|
||||||
// 이미 같은 트랙이 재생 중이면 중복 재생하지 않음
|
// 이미 같은 트랙이 재생 중이면 중복 재생하지 않음
|
||||||
if (currentBGMTrack == sceneName) return;
|
if (currentBGMTrack == targetScene) return;
|
||||||
|
|
||||||
// 씬에 맞는 BGM 재생
|
// 타겟 씬에 맞는 BGM 재생
|
||||||
if (sceneBGMMap.TryGetValue(sceneName, out AudioClip bgmClip))
|
if (sceneBGMMap.TryGetValue(targetScene, out AudioClip bgmClip))
|
||||||
{
|
{
|
||||||
if (bgmClip != null)
|
if (bgmClip != null)
|
||||||
{
|
{
|
||||||
SoundManager.Instance.PlayBGM(bgmClip, true, 1.5f);
|
SafeSoundManager?.PlayBGM(bgmClip, true, 1.5f);
|
||||||
currentBGMTrack = sceneName;
|
currentBGMTrack = targetScene;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#region 배경음 제어 (게임 오버, 승리도 이쪽)
|
#region 효과음 제어
|
||||||
|
|
||||||
// 게임 오버 시 호출
|
// 게임 오버 시 호출
|
||||||
public void PlayGameOverMusic()
|
public void PlayGameOverMusic()
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
SafeSoundManager?.PlaySFX("GameOverSFX");
|
||||||
|
|
||||||
if (gameOverBGM != null)
|
|
||||||
{
|
|
||||||
SoundManager.Instance.PlayBGM(gameOverBGM, true, 1.0f);
|
|
||||||
currentBGMTrack = "GameOver";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// 승리 시 호출
|
// 승리 시 호출
|
||||||
public void PlayVictoryMusic()
|
public void PlayVictoryMusic()
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
SafeSoundManager?.PlaySFX("VictorySFX");
|
||||||
|
|
||||||
if (victoryBGM != null)
|
|
||||||
{
|
|
||||||
SoundManager.Instance.PlayBGM(victoryBGM, true, 1.0f);
|
|
||||||
currentBGMTrack = "Victory";
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region 효과음 제어
|
|
||||||
|
|
||||||
// 버튼 클릭 효과음 재생
|
// 버튼 클릭 효과음 재생
|
||||||
public void PlayButtonClickSound()
|
public void PlayButtonClickSound()
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
SafeSoundManager?.PlaySFX("ButtonClick");
|
||||||
|
}
|
||||||
|
|
||||||
SoundManager.Instance.PlaySFX("ButtonClick");
|
public void PlayTypingSound()
|
||||||
|
{
|
||||||
|
SafeSoundManager?.PlaySFX("Typing");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PlayErrorSound()
|
||||||
|
{
|
||||||
|
SafeSoundManager?.PlaySFX("Error");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PlayPopupSound()
|
||||||
|
{
|
||||||
|
SafeSoundManager?.PlaySFX("Popup");
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PlayLevelUpSound()
|
||||||
|
{
|
||||||
|
SafeSoundManager?.PlaySFX("LevelUp");
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region 몬스터 오디오
|
#region 상호작용 패널 효과음
|
||||||
|
|
||||||
public void PlayMonsterAttackSound()
|
public void PlayInteractionSound(ActionType actionType)
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
// 배경음 중지 (페이드아웃)
|
||||||
|
SafeSoundManager?.StopBGM(true, 0.5f);
|
||||||
|
|
||||||
SoundManager.Instance.PlaySFX("MonsterAttack");
|
// 효과음 재생
|
||||||
|
switch (actionType)
|
||||||
|
{
|
||||||
|
case ActionType.Sleep:
|
||||||
|
SafeSoundManager?.PlaySFX("Sleeping");
|
||||||
|
break;
|
||||||
|
case ActionType.Work:
|
||||||
|
SafeSoundManager?.PlaySFX("Work");
|
||||||
|
break;
|
||||||
|
case ActionType.Dungeon:
|
||||||
|
SafeSoundManager?.PlaySFX("Dungeon");
|
||||||
|
break;
|
||||||
|
case ActionType.Eat:
|
||||||
|
SafeSoundManager?.PlaySFX("Eating");
|
||||||
|
break;
|
||||||
|
case ActionType.Housework:
|
||||||
|
SafeSoundManager?.PlaySFX("Housework");
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void PlayMonsterDeathSound()
|
// 상호작용 효과음 종료
|
||||||
|
public void StopInteractionSound(ActionType actionType, float fadeTime = 0.5f)
|
||||||
{
|
{
|
||||||
if (SoundManager.Instance == null) return;
|
string sfxName = "";
|
||||||
|
|
||||||
SoundManager.Instance.PlaySFX("MonsterDeath");
|
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
|
#endregion
|
||||||
|
@ -176,6 +176,38 @@ public class SoundManager : Singleton<SoundManager>
|
|||||||
return sfxSource;
|
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()
|
public void StopAllSFX()
|
||||||
{
|
{
|
||||||
|
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: a3bdb9e323e4d3a408be5c2f3217f447
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
@ -0,0 +1,8 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1533bd31f61db496bbf762fab4f8de08
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error1.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error1.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 63aaa33e00f12447989b15ba6a803b35
|
||||||
|
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/Error2.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error2.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: eeec8bd79e59743b4bb0a3cb19189c79
|
||||||
|
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/Error5.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Error5.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: c1f47c4aad5f14a138bf7c0467396b25
|
||||||
|
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/GenericNotification10a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification10a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 7be33d8b930bf415382a80586c46dc56
|
||||||
|
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/GenericNotification10b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification10b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ffb4b8d6350a546309851edb62a2e8a8
|
||||||
|
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/GenericNotification11.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification11.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2cb5d7e8fbccb462aa2fd95182b0cc26
|
||||||
|
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/GenericNotification2.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification2.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 387544f048a124cd0960d5a50fcbd9db
|
||||||
|
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/GenericNotification3.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification3.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: af9c2a92fa16e4b0cb9b375d462a9f3f
|
||||||
|
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/GenericNotification5.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification5.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 566e0209e31ec4cb8827e35b769035e1
|
||||||
|
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/GenericNotification6.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification6.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 207d59f4698ad40ffa9e7a706bafbc8d
|
||||||
|
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/GenericNotification7.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification7.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 0d0235f31291f4344aa56ab64c755fb0
|
||||||
|
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/GenericNotification8.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification8.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: cf36b9440960248518ce0a2a7645cbf6
|
||||||
|
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/GenericNotification9.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/GenericNotification9.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ea0b1606831ec45888682da700fa2156
|
||||||
|
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/Popup1.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Popup1.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 50e5d54a69d6b4543a016c665e9f12c6
|
||||||
|
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/Popup2.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Popup2.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8e964b715a811464e82529c35987d43b
|
||||||
|
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/Popup3.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Popup3.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 028da1dc76fc74a9881aa389a9f19e60
|
||||||
|
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/Popup4a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Popup4a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ba081e716fd9947559859103789a33f8
|
||||||
|
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/Popup4b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Popup4b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bbb909a7ef3254126aaaf4ae242a3151
|
||||||
|
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/Success1.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success1.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: edbce783f7f7445edb74c947c8638018
|
||||||
|
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/Success10.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success10.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 4827dd82a6ce74d34b74037ca95666ee
|
||||||
|
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/Success11.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success11.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5b97c1a3a3ee1420aa6e92d5cc1e1a6b
|
||||||
|
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/Success12a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success12a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d93805cf997574ae7bbb36773a8c8eef
|
||||||
|
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/Success12b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success12b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 435ef11e3249049d192984eb5d77ec33
|
||||||
|
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/Success13.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success13.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5a8b0127c9e91409c9b61d31a906446a
|
||||||
|
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/Success2.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success2.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: c8ea51af65cd24d7f9216e7c1d2cbc63
|
||||||
|
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/Success3.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success3.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 495ebbcb6c41d424bb9e00d3eddb5fe4
|
||||||
|
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/Success4.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success4.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: dff8046012e094b4ba40806fc5f32089
|
||||||
|
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/Success5.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success5.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d1853dbf2037145bda2b7cff7f3e49d7
|
||||||
|
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/Success6.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success6.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 262270ad62f914ce5a0a71e95e4bbfe6
|
||||||
|
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/Success7a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success7a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3b6c971388bbd4df59bdcb9cc07c2190
|
||||||
|
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/Success7b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success7b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 09f7ee07b81774e2ea9e35333571d914
|
||||||
|
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/Success9.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/AlertsAndNotifications/Success9.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f877c82aec4ea4c25b8587f070e2211f
|
||||||
|
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: dec029bae66d64d04a39b557e83937a5
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickAndSlide.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickAndSlide.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 6d29d59f4115847b790bf26aa92d0378
|
||||||
|
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/ClickyButton10a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton10a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1ca3c350562eb4a1db390ad75ac0dc10
|
||||||
|
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/ClickyButton10b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton10b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 66260e5309f23466d9389e326d54c2fa
|
||||||
|
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/ClickyButton1a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton1a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 60865ed1afbe64b6c8ba93c611861637
|
||||||
|
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/ClickyButton1b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton1b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2414cc883a630436ea69e55cadef87f7
|
||||||
|
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/ClickyButton2.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton2.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 209403553b8964938b89940854e4b6b4
|
||||||
|
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/ClickyButton3a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton3a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 17737c892c260454f9ff04e062714c46
|
||||||
|
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/ClickyButton3b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton3b.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 9763dd04786914b8ca87b4685ee8596f
|
||||||
|
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/ClickyButton4.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton4.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5ae86940e1dc84a4ba6a475f30b48236
|
||||||
|
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/ClickyButton5a.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton5a.wav
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -0,0 +1,22 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: df9c44f0c7ba24a1abdd074bcca8b92f
|
||||||
|
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/ClickyButton5b.wav
(Stored with Git LFS)
Normal file
BIN
Assets/StoreAssets/AllOfSound/Cyberleaf - Modern UI SFX/Buttons/ClickyButton5b.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