0.3.4.6 업데이트

This commit is contained in:
Nam Tae Gun 2024-11-18 19:07:19 +09:00
parent 00be1f84dd
commit 9ef51bd5e4
21 changed files with 67 additions and 96 deletions

View File

@ -116,11 +116,13 @@ namespace BlueWater.Audios
{ {
if (_sfxDictionary.TryGetValue(sfxName, out var value)) if (_sfxDictionary.TryGetValue(sfxName, out var value))
{ {
float currentTime = ignoreTimeScale ? Time.unscaledTime : Time.time;
if (_sfxPlayTimeDictionary.TryGetValue(sfxName, out var lastPlayTime)) if (_sfxPlayTimeDictionary.TryGetValue(sfxName, out var lastPlayTime))
{ {
if (Time.time - lastPlayTime < _sfxMinInterval) if (currentTime - lastPlayTime < _sfxMinInterval)
{ {
return; return; // 최소 간격 조건 미충족 시 재생하지 않음
} }
} }
var availableSfxAudioSource = GetAvailableSfxAudioSource(); var availableSfxAudioSource = GetAvailableSfxAudioSource();
@ -129,18 +131,17 @@ namespace BlueWater.Audios
if (ignoreTimeScale) if (ignoreTimeScale)
{ {
// Time.timeScale 영향을 받지 않는 효과음 처리
availableSfxAudioSource.pitch = duration.HasValue ? value.length / duration.Value : 1f; availableSfxAudioSource.pitch = duration.HasValue ? value.length / duration.Value : 1f;
} }
else else
{ {
// Time.timeScale 적용
_sfxPitchDictionary[availableSfxAudioSource] = duration.HasValue ? value.length / duration.Value : 1f; _sfxPitchDictionary[availableSfxAudioSource] = duration.HasValue ? value.length / duration.Value : 1f;
availableSfxAudioSource.pitch = _sfxPitchDictionary[availableSfxAudioSource] * Time.timeScale; availableSfxAudioSource.pitch = _sfxPitchDictionary[availableSfxAudioSource] * Time.timeScale;
} }
availableSfxAudioSource.Play(); availableSfxAudioSource.Play();
_sfxPlayTimeDictionary[sfxName] = Time.time;
_sfxPlayTimeDictionary[sfxName] = currentTime;
} }
else else
{ {
@ -188,8 +189,6 @@ namespace BlueWater.Audios
} }
// 모든 AudioSource가 사용 중이면 첫 번째 AudioSource를 재사용 // 모든 AudioSource가 사용 중이면 첫 번째 AudioSource를 재사용
//return sfxPitchDictionary.Keys.GetEnumerator().Current;
using var enumerator = _sfxPitchDictionary.Keys.GetEnumerator(); using var enumerator = _sfxPitchDictionary.Keys.GetEnumerator();
enumerator.MoveNext(); enumerator.MoveNext();
return enumerator.Current; return enumerator.Current;

View File

@ -23,8 +23,8 @@ namespace BlueWater.Players.Tycoons
private void Start() private void Start()
{ {
_interactionAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "Interaction"); _interactionAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.Interaction);
_developKey01Action = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "DevelopKey01"); _developKey01Action = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.DevelopKey01);
_interactionAction.performed += OnInteraction; _interactionAction.performed += OnInteraction;
_interactionAction.canceled += OnInteraction; _interactionAction.canceled += OnInteraction;

View File

@ -85,8 +85,8 @@ namespace BlueWater.Players.Tycoons
private void Start() private void Start()
{ {
_moveAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "Move"); _moveAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.Move);
_dashAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "Dash"); _dashAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.Dash);
_moveAction.performed += OnMove; _moveAction.performed += OnMove;
_moveAction.canceled += OnMove; _moveAction.canceled += OnMove;

View File

@ -17,6 +17,26 @@ namespace BlueWater
CombatUi, CombatUi,
} }
public static class TycoonActions
{
public const string Move = "Move";
public const string Dash = "Dash";
public const string Interaction = "Interaction";
public const string DevelopKey01 = "DevelopKey01";
public const string OpenManualBook = "OpenManualBook";
public const string ZoomOut = "ZoomOut";
public const string ZoomIn = "ZoomIn";
public const string Options = "Options";
}
public static class TycoonUiActions
{
public const string Cancel = "Cancel";
public const string PressQ = "PressQ";
public const string PressAnyKey = "PressAnyKey";
public const string InteractionE = "InteractionE";
}
public class PlayerInputKeyManager : Singleton<PlayerInputKeyManager> public class PlayerInputKeyManager : Singleton<PlayerInputKeyManager>
{ {
[SerializeField] [SerializeField]

View File

@ -162,7 +162,7 @@ namespace BlueWater.Tycoons
{ {
GameManager.Instance.CurrentTycoonPlayer.IsCleaningTable = true; GameManager.Instance.CurrentTycoonPlayer.IsCleaningTable = true;
_isPlayerInteracting = true; _isPlayerInteracting = true;
AudioManager.Instance.PlaySfx(_cleaningSfxName, loop: true); AudioManager.Instance.PlaySfx(_cleaningSfxName);
} }
public override void CancelInteraction() public override void CancelInteraction()

View File

@ -116,7 +116,7 @@ namespace BlueWater.Tycoons
{ {
GameManager.Instance.CurrentTycoonPlayer.IsCleaningFloor = true; GameManager.Instance.CurrentTycoonPlayer.IsCleaningFloor = true;
_isPlayerInteracting = true; _isPlayerInteracting = true;
AudioManager.Instance.PlaySfx(_cleaningSfxName, loop: true); AudioManager.Instance.PlaySfx(_cleaningSfxName);
} }
public override void CancelInteraction() public override void CancelInteraction()

View File

@ -86,8 +86,8 @@ namespace BlueWater
private void Start() private void Start()
{ {
_zoomInAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "ZoomIn"); _zoomInAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.ZoomIn);
_zoomOutAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "ZoomOut"); _zoomOutAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.ZoomOut);
_zoomInAction.performed += OnZoomChanged; _zoomInAction.performed += OnZoomChanged;
_zoomOutAction.performed += OnZoomChanged; _zoomOutAction.performed += OnZoomChanged;

View File

@ -29,7 +29,7 @@ public class TitleOptions : MonoBehaviour
private void Start() private void Start()
{ {
CancelAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, "Cancel"); CancelAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.Cancel);
_audioManager = AudioManager.Instance; _audioManager = AudioManager.Instance;

View File

@ -56,9 +56,9 @@ namespace BlueWater.Titles
private void Start() private void Start()
{ {
_playerInputKeyManager = PlayerInputKeyManager.Instance; _playerInputKeyManager = PlayerInputKeyManager.Instance;
_interactionEAction = _playerInputKeyManager.GetAction(InputActionMaps.TycoonUi, "InteractionE"); _interactionEAction = _playerInputKeyManager.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.InteractionE);
_openAction = _playerInputKeyManager.GetAction(InputActionMaps.Tycoon, "Options"); _openAction = _playerInputKeyManager.GetAction(InputActionMaps.Tycoon, TycoonActions.Options);
_closeAction = _playerInputKeyManager.GetAction(InputActionMaps.TycoonUi, "Cancel"); _closeAction = _playerInputKeyManager.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.Cancel);
if (_isTitleScene) if (_isTitleScene)
{ {

View File

@ -57,9 +57,9 @@ namespace BlueWater.Uis
private void Start() private void Start()
{ {
_openManualBookAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, "OpenManualBook"); _openManualBookAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.Tycoon, TycoonActions.OpenManualBook);
_pressQAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, "PressQ"); _pressQAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.PressQ);
_cancelAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, "Cancel"); _cancelAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.Cancel);
var allCocktails = ItemManager.Instance.CocktailDataSo.GetData(); var allCocktails = ItemManager.Instance.CocktailDataSo.GetData();
_button = new List<ManualCocktailButton>(allCocktails.Count); _button = new List<ManualCocktailButton>(allCocktails.Count);

View File

@ -44,7 +44,6 @@ namespace BlueWater.Uis
public override void Open() public override void Open()
{ {
AudioManager.Instance.PlaySfx(_openSfxName, ignoreTimeScale: true); AudioManager.Instance.PlaySfx(_openSfxName, ignoreTimeScale: true);
PlayerInputKeyManager.Instance.DisableAction("OpenManualBook");
VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f); VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f);
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi);
PopupUiController.RegisterPopup(this); PopupUiController.RegisterPopup(this);
@ -59,7 +58,6 @@ namespace BlueWater.Uis
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon);
IsOpened = false; IsOpened = false;
VisualFeedbackManager.Instance.ResetTimeScale(); VisualFeedbackManager.Instance.ResetTimeScale();
PlayerInputKeyManager.Instance.EnableAction("OpenManualBook");
} }
[Button("레어 상자 열기")] [Button("레어 상자 열기")]

View File

@ -191,8 +191,8 @@ namespace BlueWater.Uis
public void Start() public void Start()
{ {
_cancelAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, "Cancel"); _cancelAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.Cancel);
_pressAnyKeyAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, "PressAnyKey"); _pressAnyKeyAction = PlayerInputKeyManager.Instance.GetAction(InputActionMaps.TycoonUi, TycoonUiActions.PressAnyKey);
foreach (Transform element in _resultCardContents.transform) foreach (Transform element in _resultCardContents.transform)
{ {

View File

@ -38,7 +38,6 @@ namespace BlueWater.Uis
public override void Open() public override void Open()
{ {
PlayerInputKeyManager.Instance.DisableAction("OpenManualBook");
VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f); VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f);
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi);
PopupUiController.RegisterPopup(this); PopupUiController.RegisterPopup(this);
@ -53,7 +52,6 @@ namespace BlueWater.Uis
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon);
IsOpened = false; IsOpened = false;
VisualFeedbackManager.Instance.ResetTimeScale(); VisualFeedbackManager.Instance.ResetTimeScale();
PlayerInputKeyManager.Instance.EnableAction("OpenManualBook");
} }
[Button("카드 생성하기(레벨업)")] [Button("카드 생성하기(레벨업)")]
@ -122,7 +120,7 @@ namespace BlueWater.Uis
RectTransform rect02 = null; RectTransform rect02 = null;
RectTransform rect03 = null; RectTransform rect03 = null;
rect03 = currentTycoonCard.GetComponent<RectTransform>(); rect03 = currentTycoonCard.RectTransform;
startPosition03 = rect03.anchoredPosition; startPosition03 = rect03.anchoredPosition;
endPosition03 = new Vector2(0.0f, 0.0f); endPosition03 = new Vector2(0.0f, 0.0f);

View File

@ -103,7 +103,6 @@ namespace BlueWater.Uis
public override void Open() public override void Open()
{ {
PlayerInputKeyManager.Instance.DisableAction("OpenManualBook");
VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f); VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f);
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi);
PopupUiController.RegisterPopup(this); PopupUiController.RegisterPopup(this);
@ -118,7 +117,6 @@ namespace BlueWater.Uis
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon);
IsOpened = false; IsOpened = false;
VisualFeedbackManager.Instance.ResetTimeScale(); VisualFeedbackManager.Instance.ResetTimeScale();
PlayerInputKeyManager.Instance.EnableAction("OpenManualBook");
EventManager.InvokeTycoonGameStarted(); EventManager.InvokeTycoonGameStarted();
} }

View File

@ -1,7 +0,0 @@
namespace BlueWater.Uis
{
public class TycoonUpgradeUi : SwitchActionPopupUi
{
}
}

View File

@ -1,2 +0,0 @@
fileFormatVersion: 2
guid: ce8b8bf51887c134abe0cc8e8ad942cc

View File

@ -31,7 +31,6 @@ namespace BlueWater.Uis
public override void Open() public override void Open()
{ {
PlayerInputKeyManager.Instance.DisableAction("OpenManualBook");
VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f); VisualFeedbackManager.Instance.SetBaseTimeScale(0.0f);
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.TycoonUi);
PopupUiController.RegisterPopup(this); PopupUiController.RegisterPopup(this);
@ -46,7 +45,6 @@ namespace BlueWater.Uis
PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon); PlayerInputKeyManager.Instance.SwitchCurrentActionMap(InputActionMaps.Tycoon);
IsOpened = false; IsOpened = false;
VisualFeedbackManager.Instance.ResetTimeScale(); VisualFeedbackManager.Instance.ResetTimeScale();
PlayerInputKeyManager.Instance.EnableAction("OpenManualBook");
} }
private void StartUpgradePopup(LevelData currentLevelData) private void StartUpgradePopup(LevelData currentLevelData)

View File

@ -1,24 +0,0 @@
<linker>
<assembly fullname="Unity.Addressables, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" preserve="all">
<type fullname="UnityEngine.AddressableAssets.Addressables" preserve="all" />
</assembly>
<assembly fullname="Unity.Localization, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<type fullname="UnityEngine.Localization.Locale" preserve="all" />
<type fullname="UnityEngine.Localization.Tables.SharedTableData" preserve="all" />
<type fullname="UnityEngine.Localization.Tables.StringTable" preserve="all" />
<type fullname="UnityEngine.Localization.LocaleIdentifier" preserve="nothing" serialized="true" />
<type fullname="UnityEngine.Localization.Metadata.MetadataCollection" preserve="nothing" serialized="true" />
<type fullname="UnityEngine.Localization.Tables.TableEntryData" preserve="nothing" serialized="true" />
<type fullname="UnityEngine.Localization.Tables.DistributedUIDGenerator" preserve="nothing" serialized="true" />
<type fullname="UnityEngine.Localization.Tables.SharedTableData/SharedTableEntry" preserve="nothing" serialized="true" />
</assembly>
<assembly fullname="Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null" preserve="all">
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider" preserve="all" />
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider" preserve="all" />
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.InstanceProvider" preserve="all" />
<type fullname="UnityEngine.ResourceManagement.ResourceProviders.SceneProvider" preserve="all" />
</assembly>
<assembly fullname="UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<type fullname="UnityEngine.Object" preserve="all" />
</assembly>
</linker>

View File

@ -1,7 +0,0 @@
fileFormatVersion: 2
guid: 690c62745860f4a45968f90d5fd2322d
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -36,24 +36,24 @@ MonoBehaviour:
- rid: 5032277253446697243 - rid: 5032277253446697243
- rid: 5032277253446697244 - rid: 5032277253446697244
- rid: 5032277253446697245 - rid: 5032277253446697245
- rid: 7789285205019197450 - rid: 5889118814996267141
- rid: 5032277253446697247 - rid: 5032277253446697247
- rid: 5032277253446697248 - rid: 5032277253446697248
- rid: 7789285205019197451 - rid: 5889118814996267142
- rid: 7789285205019197452 - rid: 5889118814996267143
- rid: 5032277253446697251 - rid: 5032277253446697251
- rid: 7789285205019197453 - rid: 5889118814996267144
- rid: 5032277253446697253 - rid: 5032277253446697253
- rid: 7789285205019197454 - rid: 5889118814996267145
- rid: 5032277253446697255 - rid: 5032277253446697255
- rid: 7789285205019197455 - rid: 5889118814996267146
- rid: 7789285205019197456 - rid: 5889118814996267147
- rid: 5032277253446697258 - rid: 5032277253446697258
- rid: 5032277253446697259 - rid: 5032277253446697259
- rid: 7789285205019197457 - rid: 5889118814996267148
- rid: 7789285205019197458 - rid: 5889118814996267149
- rid: 5032277253446697262 - rid: 5032277253446697262
- rid: 7789285205019197459 - rid: 5889118814996267150
m_RuntimeSettings: m_RuntimeSettings:
m_List: m_List:
- rid: 5032277253446697243 - rid: 5032277253446697243
@ -160,7 +160,7 @@ MonoBehaviour:
m_version: 0 m_version: 0
m_EnableCompilationCaching: 1 m_EnableCompilationCaching: 1
m_EnableValidityChecks: 1 m_EnableValidityChecks: 1
- rid: 7789285205019197450 - rid: 5889118814996267141
type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
data: data:
m_Version: 0 m_Version: 0
@ -175,14 +175,14 @@ MonoBehaviour:
m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2}
m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2}
m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2} m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2}
- rid: 7789285205019197451 - rid: 5889118814996267142
type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
data: data:
m_Version: 0 m_Version: 0
m_StripUnusedPostProcessingVariants: 0 m_StripUnusedPostProcessingVariants: 0
m_StripUnusedVariants: 1 m_StripUnusedVariants: 1
m_StripScreenCoordOverrideVariants: 1 m_StripScreenCoordOverrideVariants: 1
- rid: 7789285205019197452 - rid: 5889118814996267143
type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
data: data:
m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
@ -190,7 +190,7 @@ MonoBehaviour:
m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2}
m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2} m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2}
m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2} m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2}
- rid: 7789285205019197453 - rid: 5889118814996267144
type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime}
data: data:
m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3} m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3}
@ -202,7 +202,7 @@ MonoBehaviour:
m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3} m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3}
m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3} m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3}
m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3} m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3}
- rid: 7789285205019197454 - rid: 5889118814996267145
type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime} type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime}
data: data:
m_Version: 0 m_Version: 0
@ -215,7 +215,7 @@ MonoBehaviour:
m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3} m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3}
m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3} m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3}
m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3} m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3}
- rid: 7789285205019197455 - rid: 5889118814996267146
type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
data: data:
m_Version: 1 m_Version: 1
@ -225,7 +225,7 @@ MonoBehaviour:
probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3} probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3}
probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3} probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3}
numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3} numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3}
- rid: 7789285205019197456 - rid: 5889118814996267147
type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
data: data:
m_Version: 1 m_Version: 1
@ -238,19 +238,19 @@ MonoBehaviour:
skyOcclusionRT: {fileID: 4807578003741378534, guid: dfaf42b38dd001f49a72d8102b709f29, type: 3} skyOcclusionRT: {fileID: 4807578003741378534, guid: dfaf42b38dd001f49a72d8102b709f29, type: 3}
renderingLayerCS: {fileID: 7200000, guid: a63c9cf933e3d8f41ae680a372784ebf, type: 3} renderingLayerCS: {fileID: 7200000, guid: a63c9cf933e3d8f41ae680a372784ebf, type: 3}
renderingLayerRT: {fileID: 4807578003741378534, guid: c2be09c936362eb49a58f08aeb30627a, type: 3} renderingLayerRT: {fileID: 4807578003741378534, guid: c2be09c936362eb49a58f08aeb30627a, type: 3}
- rid: 7789285205019197457 - rid: 5889118814996267148
type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
data: data:
m_Version: 1 m_Version: 1
m_ProbeVolumeDisableStreamingAssets: 0 m_ProbeVolumeDisableStreamingAssets: 0
- rid: 7789285205019197458 - rid: 5889118814996267149
type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
data: data:
m_Version: 1 m_Version: 1
probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3} probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3}
probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3} probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3}
probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3} probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3}
- rid: 7789285205019197459 - rid: 5889118814996267150
type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime}
data: data:
m_version: 0 m_version: 0

View File

@ -748,7 +748,7 @@ PlayerSettings:
webGLCloseOnQuit: 0 webGLCloseOnQuit: 0
webWasm2023: 0 webWasm2023: 0
scriptingDefineSymbols: scriptingDefineSymbols:
Android: UNITY_POST_PROCESSING_STACK_V2;USE_NEW_INPUT;USE_CINEMACHINE;DOTWEEN;UNITY_VISUAL_SCRIPTING Android: UNITY_POST_PROCESSING_STACK_V2;USE_NEW_INPUT;USE_CINEMACHINE;DOTWEEN;UNITY_VISUAL_SCRIPTING;COZY_WEATHER;COZY_3_AND_UP;COZY_URP;ODIN_INSPECTOR;ODIN_INSPECTOR_3;ODIN_INSPECTOR_3_1;ODIN_INSPECTOR_3_2;ODIN_INSPECTOR_3_3
EmbeddedLinux: UNITY_POST_PROCESSING_STACK_V2;DOTWEEN;UNITY_VISUAL_SCRIPTING EmbeddedLinux: UNITY_POST_PROCESSING_STACK_V2;DOTWEEN;UNITY_VISUAL_SCRIPTING
GameCoreScarlett: DOTWEEN GameCoreScarlett: DOTWEEN
GameCoreXboxOne: UNITY_POST_PROCESSING_STACK_V2;DOTWEEN GameCoreXboxOne: UNITY_POST_PROCESSING_STACK_V2;DOTWEEN