0.3.3.17 업데이트
This commit is contained in:
parent
e11c1db205
commit
10605c71be
File diff suppressed because it is too large
Load Diff
@ -5086,7 +5086,7 @@ Canvas:
|
||||
m_AdditionalShaderChannelsFlag: 25
|
||||
m_UpdateRectTransformForStandalone: 0
|
||||
m_SortingLayerID: 0
|
||||
m_SortingOrder: 5
|
||||
m_SortingOrder: 6
|
||||
m_TargetDisplay: 0
|
||||
--- !u!224 &410235870
|
||||
RectTransform:
|
||||
@ -6640,7 +6640,7 @@ Transform:
|
||||
m_GameObject: {fileID: 545850347}
|
||||
serializedVersion: 2
|
||||
m_LocalRotation: {x: 0.3420201, y: 0, z: 0, w: 0.9396927}
|
||||
m_LocalPosition: {x: 2.145, y: 7.4278765, z: -16.466446}
|
||||
m_LocalPosition: {x: 1.13, y: 7.4278765, z: -16.466446}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
@ -17676,6 +17676,10 @@ PrefabInstance:
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7503695429122129295, guid: 9a394d3c65c71084d8345c36df67c89c, type: 3}
|
||||
propertyPath: m_Mesh
|
||||
value:
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7640850047456124134, guid: 9a394d3c65c71084d8345c36df67c89c, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 1
|
||||
@ -31837,7 +31841,7 @@ PrefabInstance:
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2798544366308408093, guid: 9ce588004bafc1e4e9617fdaa2d77c8d, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 2.145
|
||||
value: 1.13
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 2798544366308408093, guid: 9ce588004bafc1e4e9617fdaa2d77c8d, type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
|
@ -290,6 +290,13 @@ namespace BlueWater
|
||||
{
|
||||
OnChangedRandomCocktail?.Invoke(changedCocktailData);
|
||||
}
|
||||
|
||||
// 휴지통이 랜덤 박스로 변하는 이벤트
|
||||
public static Action OnChangedRandomBox;
|
||||
public static void InvokeChangedRandomBox()
|
||||
{
|
||||
OnChangedRandomBox?.Invoke();
|
||||
}
|
||||
|
||||
// 일반 보물상자 오픈 이벤트
|
||||
public static Action OnOpenedNormalRewardBox;
|
||||
|
@ -19,15 +19,15 @@ namespace BlueWater.Items
|
||||
}
|
||||
#endif
|
||||
|
||||
var maxLiquidAmount = FindAnyObjectByType<LiquidController>().GetMaxLiquidCount();
|
||||
foreach (var element in _datas.Values)
|
||||
var liquidController = FindAnyObjectByType<LiquidController>();
|
||||
if (liquidController)
|
||||
{
|
||||
element.ValidIngredients = element.GetValidIngredients(maxLiquidAmount);
|
||||
var maxLiquidAmount = liquidController.GetMaxLiquidCount();
|
||||
foreach (var element in _datas.Values)
|
||||
{
|
||||
element.ValidIngredients = element.GetValidIngredients(maxLiquidAmount);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,3 +1,4 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Sirenix.OdinInspector;
|
||||
using UnityEngine.Localization.Settings;
|
||||
@ -12,12 +13,14 @@ namespace BlueWater
|
||||
|
||||
public class LocalizationManager : Singleton<LocalizationManager>
|
||||
{
|
||||
public bool IsInitialized;
|
||||
|
||||
private bool _isChanging;
|
||||
|
||||
private void Start()
|
||||
{
|
||||
var index = ES3.Load("Locale", GetCurrentLocaleIndex());
|
||||
ChangeLocale((LocaleType)index);
|
||||
ChangeLocale((LocaleType)index, () => IsInitialized = true);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
@ -26,25 +29,26 @@ namespace BlueWater
|
||||
/// </summary>
|
||||
/// <param name="index"></param>
|
||||
[Button("언어 변경")]
|
||||
public void ChangeLocale(LocaleType localeType)
|
||||
public void ChangeLocale(LocaleType localeType, Action completeEvent = null)
|
||||
{
|
||||
if (_isChanging) return;
|
||||
|
||||
StartCoroutine(ChangeLocaleCoroutine(localeType));
|
||||
StartCoroutine(ChangeLocaleCoroutine(localeType, completeEvent));
|
||||
}
|
||||
|
||||
private IEnumerator ChangeLocaleCoroutine(LocaleType localeType)
|
||||
private IEnumerator ChangeLocaleCoroutine(LocaleType localeType, Action completeEvent)
|
||||
{
|
||||
_isChanging = true;
|
||||
|
||||
yield return LocalizationSettings.InitializationOperation;
|
||||
LocalizationSettings.SelectedLocale = LocalizationSettings.AvailableLocales.Locales[(int)localeType];
|
||||
ES3.Save("Locale", (int)localeType);
|
||||
|
||||
|
||||
_isChanging = false;
|
||||
completeEvent?.Invoke();
|
||||
}
|
||||
|
||||
private int GetCurrentLocaleIndex()
|
||||
public int GetCurrentLocaleIndex()
|
||||
{
|
||||
var selectedLocale = LocalizationSettings.SelectedLocale;
|
||||
var locales = LocalizationSettings.AvailableLocales.Locales;
|
||||
|
@ -20,7 +20,7 @@ namespace BlueWater.Tycoons
|
||||
[field: SerializeField, BoxGroup("컴포넌트")]
|
||||
public InteractionCanvas InteractionCanvas { get; private set; }
|
||||
|
||||
[field: SerializeField, Required, BoxGroup("컴포넌트")]
|
||||
[field: SerializeField, BoxGroup("컴포넌트")]
|
||||
public Material OutlineMaterial { get; private set; }
|
||||
|
||||
[field: SerializeField, BoxGroup("컴포넌트")]
|
||||
@ -57,7 +57,11 @@ namespace BlueWater.Tycoons
|
||||
protected virtual void Awake()
|
||||
{
|
||||
InitializeComponents();
|
||||
OriginalMaterial = VisualLook.material;
|
||||
|
||||
if (VisualLook)
|
||||
{
|
||||
OriginalMaterial = VisualLook.material;
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual void OnEnable()
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using BlueWater.Players;
|
||||
using BlueWater.Uis;
|
||||
using UnityEngine;
|
||||
|
||||
@ -7,6 +8,9 @@ namespace BlueWater.Tycoons
|
||||
[Serializable]
|
||||
public class Pump : InteractionFurniture
|
||||
{
|
||||
[SerializeField]
|
||||
private SpineController _spineController;
|
||||
|
||||
[SerializeField]
|
||||
private float _playerHoldingTime = 1f;
|
||||
|
||||
@ -20,7 +24,21 @@ namespace BlueWater.Tycoons
|
||||
private int addedLiquid = 400;
|
||||
|
||||
private bool _isPlayerInteracting;
|
||||
|
||||
|
||||
protected override void Awake()
|
||||
{
|
||||
base.Awake();
|
||||
|
||||
_spineController = GetComponent<SpineController>();
|
||||
}
|
||||
|
||||
protected override void Start()
|
||||
{
|
||||
base.Start();
|
||||
|
||||
_spineController.PlayAnimation("Idle", true);
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
if (IsShowing)
|
||||
@ -55,16 +73,32 @@ namespace BlueWater.Tycoons
|
||||
public override void Interaction()
|
||||
{
|
||||
_isPlayerInteracting = true;
|
||||
_spineController.PlayAnimation("Run", true);
|
||||
}
|
||||
|
||||
public override void CancelInteraction()
|
||||
{
|
||||
_isPlayerInteracting = false;
|
||||
_spineController.PlayAnimation("Idle", true);
|
||||
}
|
||||
|
||||
public override bool CanInteraction()
|
||||
{
|
||||
return !GameManager.Instance.CurrentTycoonPlayer.TycoonPickupHandler.IsPickedUpAnything();
|
||||
}
|
||||
|
||||
public override void ShowInteractionUi()
|
||||
{
|
||||
_spineController.EnableCustomMaterial();
|
||||
EventManager.InvokeShowInteractionUi(InteractionMessage);
|
||||
IsShowing = true;
|
||||
}
|
||||
|
||||
public override void HideInteractionUi()
|
||||
{
|
||||
_spineController.DisableCustomMaterial();
|
||||
EventManager.InvokeHideInteractionUi();
|
||||
IsShowing = false;
|
||||
}
|
||||
}
|
||||
}
|
@ -16,7 +16,6 @@ namespace BlueWater.Tycoons
|
||||
public void Initialize(RewardBoxType rewardBoxType)
|
||||
{
|
||||
_rewardBoxType = rewardBoxType;
|
||||
InteractionCanvas.BalloonUi.ShowUi();
|
||||
}
|
||||
|
||||
public override void Interaction()
|
||||
@ -35,6 +34,16 @@ namespace BlueWater.Tycoons
|
||||
{
|
||||
_isInteracting = true;
|
||||
_animationController.SetAnimationParameter("isOpened", true);
|
||||
|
||||
var animationStarted = false;
|
||||
yield return StartCoroutine(_animationController.WaitForAnimationToRun("Open",
|
||||
success => animationStarted = success));
|
||||
|
||||
if (!animationStarted)
|
||||
{
|
||||
Destroy(gameObject);
|
||||
yield break;
|
||||
}
|
||||
|
||||
yield return new WaitUntil(() => _animationController.GetCurrentAnimationNormalizedTime() >= 1f);
|
||||
|
||||
|
@ -11,10 +11,19 @@ namespace BlueWater.Tycoons
|
||||
[SerializeField]
|
||||
private bool _canRandomChange;
|
||||
|
||||
private SpriteRenderer _spriteRenderer;
|
||||
[SerializeField]
|
||||
private Sprite _randomBoxSprite;
|
||||
|
||||
private bool _isPlayerInteracting;
|
||||
private bool _canInteraction = true;
|
||||
|
||||
protected override void Awake()
|
||||
{
|
||||
base.Awake();
|
||||
|
||||
EventManager.OnChangedRandomBox += ChangeRandomBox;
|
||||
}
|
||||
|
||||
private void Update()
|
||||
{
|
||||
if (TycoonManager.Instance.TycoonStatus.CurrentPassiveCard == PassiveCard.RandomChange)
|
||||
@ -55,6 +64,18 @@ namespace BlueWater.Tycoons
|
||||
}
|
||||
}
|
||||
|
||||
private void OnDestroy()
|
||||
{
|
||||
EventManager.OnChangedRandomBox -= ChangeRandomBox;
|
||||
}
|
||||
|
||||
public void ChangeRandomBox()
|
||||
{
|
||||
if (_canRandomChange) return;
|
||||
|
||||
VisualLook.sprite = _randomBoxSprite;
|
||||
}
|
||||
|
||||
public override void Interaction()
|
||||
{
|
||||
_isPlayerInteracting = true;
|
||||
|
@ -1,4 +1,3 @@
|
||||
using System;
|
||||
using Sirenix.OdinInspector;
|
||||
using UnityEngine;
|
||||
using UnityEngine.EventSystems;
|
||||
|
@ -1,4 +1,7 @@
|
||||
using System.Collections;
|
||||
using BlueWater;
|
||||
using BlueWater.Audios;
|
||||
using TMPro;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
@ -12,10 +15,12 @@ public class TitleSetting : MonoBehaviour
|
||||
|
||||
[SerializeField]
|
||||
private Slider _sfxVolume;
|
||||
|
||||
[SerializeField]
|
||||
private TMP_Dropdown _languageDropdown;
|
||||
|
||||
private AudioManager _audioManager;
|
||||
|
||||
// Start is called once before the first execution of Update after the MonoBehaviour is created
|
||||
private void Start()
|
||||
{
|
||||
_audioManager = AudioManager.Instance;
|
||||
@ -28,6 +33,8 @@ public class TitleSetting : MonoBehaviour
|
||||
|
||||
var sfxVolume = ES3.Load("SfxVolume", 0f);
|
||||
SetSfxVolume(sfxVolume);
|
||||
|
||||
StartCoroutine(nameof(InitializeLanguage));
|
||||
}
|
||||
|
||||
public void SetMasterVolume(float value)
|
||||
@ -50,4 +57,18 @@ public class TitleSetting : MonoBehaviour
|
||||
_sfxVolume.value = value;
|
||||
ES3.Save("SfxVolume", value);
|
||||
}
|
||||
|
||||
private IEnumerator InitializeLanguage()
|
||||
{
|
||||
yield return new WaitUntil(() => LocalizationManager.Instance.IsInitialized);
|
||||
|
||||
var languageIndex = LocalizationManager.Instance.GetCurrentLocaleIndex();
|
||||
_languageDropdown.value = languageIndex;
|
||||
}
|
||||
|
||||
public void ChangeLanguage(int localeType)
|
||||
{
|
||||
_languageDropdown.value = localeType;
|
||||
LocalizationManager.Instance.ChangeLocale((LocaleType)localeType);
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,7 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using BlueWater.Audios;
|
||||
using Sirenix.OdinInspector;
|
||||
using TMPro;
|
||||
using Unity.VisualScripting;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using UnityEngine.EventSystems;
|
||||
@ -17,14 +15,22 @@ namespace BlueWater.Titles
|
||||
[SerializeField]
|
||||
private PlayerInput _playerInput;
|
||||
|
||||
[SerializeField]
|
||||
private GameObject _titleMenuUiPanel;
|
||||
|
||||
[SerializeField]
|
||||
private TitleSetting _titleSetting;
|
||||
|
||||
[SerializeField]
|
||||
private Button _startGameButton;
|
||||
|
||||
[SerializeField]
|
||||
private Button _settingButton;
|
||||
|
||||
[SerializeField]
|
||||
private Button _exitButton;
|
||||
|
||||
private bool onButtonClicked = false;
|
||||
private bool _onButtonClicked;
|
||||
|
||||
[SerializeField]
|
||||
private TMP_Text _versionText;
|
||||
@ -49,15 +55,12 @@ namespace BlueWater.Titles
|
||||
AudioManager.Instance.PlayBgm(_dailyBgm);
|
||||
_startGameButton.onClick.AddListener(SceneController.Instance.FadeIn);
|
||||
|
||||
_startGameButton.onClick.AddListener(() => { onButtonClicked = true; });
|
||||
_settingButton.onClick.AddListener(() => { onButtonClicked = true; });
|
||||
_exitButton.onClick.AddListener(() => { onButtonClicked = true; });
|
||||
_startGameButton.onClick.AddListener(() => { _onButtonClicked = true; });
|
||||
_settingButton.onClick.AddListener(() => { _onButtonClicked = true; });
|
||||
_exitButton.onClick.AddListener(() => { _onButtonClicked = true; });
|
||||
|
||||
_keyManager.AddOnActionKeyboard(OnKeyboard);
|
||||
_keyManager.AddOnActionMouse(OnMouse);
|
||||
//
|
||||
|
||||
//if(!onButtonClicked) ;
|
||||
}
|
||||
|
||||
private void OnKeyboard()
|
||||
@ -67,11 +70,10 @@ namespace BlueWater.Titles
|
||||
|
||||
private void OnMouse()
|
||||
{
|
||||
if (!onButtonClicked)
|
||||
if (!_onButtonClicked)
|
||||
{
|
||||
EventSystem.current.SetSelectedGameObject(null);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void OnApplicationQuit()
|
||||
@ -90,9 +92,11 @@ namespace BlueWater.Titles
|
||||
private void InitializeComponents()
|
||||
{
|
||||
_playerInput = GetComponent<PlayerInput>();
|
||||
_startGameButton = transform.Find("TitleMenuUi/Title/ButtonPanel/StartGameButton").GetComponent<Button>();
|
||||
_titleMenuUiPanel = transform.Find("TitleMenuUi/Panel").gameObject;
|
||||
_startGameButton = transform.Find("TitleMenuUi/Panel/ButtonPanel/StartGameButton").GetComponent<Button>();
|
||||
_titleSetting = transform.Find("TitleSetting").GetComponent<TitleSetting>();
|
||||
_versionText = transform.Find("VersionText").GetComponent<TMP_Text>();
|
||||
_versionText.text = GetVersion();
|
||||
_versionText.text = GetVersion();
|
||||
}
|
||||
|
||||
private IEnumerator Initialize()
|
||||
|
@ -270,6 +270,7 @@ namespace BlueWater.Uis
|
||||
break;
|
||||
case "PassiveRandomChange":
|
||||
_tycoonStatus.CurrentPassiveCard = PassiveCard.RandomChange;
|
||||
EventManager.InvokeChangedRandomBox();
|
||||
break;
|
||||
case "PassiveGoldAutoGain":
|
||||
_tycoonStatus.CurrentPassiveCard = PassiveCard.GoldAutoGain;
|
||||
|
BIN
Assets/03.Images/Props/Furniture/RandomBox.png
Normal file
BIN
Assets/03.Images/Props/Furniture/RandomBox.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
143
Assets/03.Images/Props/Furniture/RandomBox.png.meta
Normal file
143
Assets/03.Images/Props/Furniture/RandomBox.png.meta
Normal file
@ -0,0 +1,143 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3484bcfbb75f8d54bb1f209c301f86ee
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 1
|
||||
wrapV: 1
|
||||
wrapW: 0
|
||||
nPOTScale: 0
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 1
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 7
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 512
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 8
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
- serializedVersion: 4
|
||||
buildTarget: WindowsStoreApps
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 1
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID: 5e97eb03825dee720800000000000000
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
152
Assets/04.Materials/PumpOutLineUnlit.mat
Normal file
152
Assets/04.Materials/PumpOutLineUnlit.mat
Normal file
@ -0,0 +1,152 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: PumpOutLineUnlit
|
||||
m_Shader: {fileID: -6465566751694194690, guid: 8daa1b13f763ae74f8630c7a631dd327, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords: []
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses:
|
||||
- MOTIONVECTORS
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _BaseMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _BumpMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailAlbedoMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailMask:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _DetailNormalMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _EmissionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 3de2078e9110a9748843744e87b766a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _MetallicGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _OcclusionMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _ParallaxMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- _SpecGlossMap:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_Lightmaps:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_LightmapsInd:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
- unity_ShadowMasks:
|
||||
m_Texture: {fileID: 0}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _AddPrecomputedVelocity: 0
|
||||
- _AlphaClip: 0
|
||||
- _AlphaToMask: 0
|
||||
- _Blend: 0
|
||||
- _BlendModePreserveSpecular: 1
|
||||
- _BumpScale: 1
|
||||
- _CastShadows: 1
|
||||
- _ClearCoatMask: 0
|
||||
- _ClearCoatSmoothness: 0
|
||||
- _Cull: 2
|
||||
- _Cutoff: 0.5
|
||||
- _DetailAlbedoMapScale: 1
|
||||
- _DetailNormalMapScale: 1
|
||||
- _DstBlend: 0
|
||||
- _DstBlendAlpha: 0
|
||||
- _EnvironmentReflections: 1
|
||||
- _FadeDistance: 150
|
||||
- _GlossMapScale: 0
|
||||
- _Glossiness: 0
|
||||
- _GlossyReflections: 0
|
||||
- _ISCORNER: 0
|
||||
- _IsCorner: 0
|
||||
- _Metallic: 0
|
||||
- _OcclusionStrength: 1
|
||||
- _OutlineMipLevel: 0
|
||||
- _OutlineOpaqueAlpha: 1
|
||||
- _OutlineReferenceTexWidth: 1024
|
||||
- _OutlineSmoothness: 1
|
||||
- _OutlineWidth: 3
|
||||
- _Parallax: 0.005
|
||||
- _QueueControl: 0
|
||||
- _QueueOffset: 0
|
||||
- _ReceiveShadows: 1
|
||||
- _Smoothness: 0.5
|
||||
- _SmoothnessTextureChannel: 0
|
||||
- _SpecularHighlights: 1
|
||||
- _SrcBlend: 1
|
||||
- _SrcBlendAlpha: 1
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _Surface: 0
|
||||
- _Thickness: 0.01
|
||||
- _ThresholdEnd: 0.25
|
||||
- _Use8Neighbourhood: 1
|
||||
- _UseScreenSpaceOutlineWidth: 0
|
||||
- _WorkflowMode: 1
|
||||
- _ZWrite: 1
|
||||
m_Colors:
|
||||
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
|
||||
- _OutlineColor: {r: 1, g: 1, b: 0, a: 1}
|
||||
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
||||
--- !u!114 &6323663459513743005
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 11
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
version: 9
|
8
Assets/04.Materials/PumpOutLineUnlit.mat.meta
Normal file
8
Assets/04.Materials/PumpOutLineUnlit.mat.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 966da048de55e5244ab504aa5e338588
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
14530
Assets/05.Prefabs/Particles/RewordBoxStarParticle.prefab
Normal file
14530
Assets/05.Prefabs/Particles/RewordBoxStarParticle.prefab
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 804b29e827866804092a0bcb58a03ce0
|
||||
PrefabImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,5 +1,71 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1001 &5621250154081019501
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
serializedVersion: 3
|
||||
m_TransformParent: {fileID: 809828747251277026}
|
||||
m_Modifications:
|
||||
- target: {fileID: 114774, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_Name
|
||||
value: RewordBoxStarParticle
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0.25
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 0.7071068
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: -0.7071068
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: -90
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 19871902, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: InitialModule.startSize.scalar
|
||||
value: 2
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
--- !u!4 &5621250154081086965 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
m_PrefabInstance: {fileID: 5621250154081019501}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!1001 &7343451337687172630
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -170,7 +236,10 @@ PrefabInstance:
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedGameObjects:
|
||||
- targetCorrespondingSourceObject: {fileID: 7986070582027999988, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: 2
|
||||
addedObject: {fileID: 5621250154081086965}
|
||||
m_AddedComponents:
|
||||
- targetCorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
@ -212,6 +281,11 @@ Animator:
|
||||
m_AllowConstantClipSamplingOptimization: 1
|
||||
m_KeepAnimatorStateOnDisable: 0
|
||||
m_WriteDefaultValuesOnDisable: 0
|
||||
--- !u!4 &809828747251277026 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 7986070582027999988, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_PrefabInstance: {fileID: 7343451337687172630}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!1 &5897095096647521783 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
|
@ -170,7 +170,9 @@ PrefabInstance:
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents:
|
||||
- {fileID: 2234961990804426782, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_RemovedGameObjects: []
|
||||
- {fileID: 3580758810857167321, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_RemovedGameObjects:
|
||||
- {fileID: 8884531212319162473, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents:
|
||||
- targetCorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
@ -179,7 +181,120 @@ PrefabInstance:
|
||||
- targetCorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 2898669091630925434}
|
||||
- targetCorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 6415264335706442394}
|
||||
- targetCorrespondingSourceObject: {fileID: 7835622629792856689, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 4652529236880594040}
|
||||
- targetCorrespondingSourceObject: {fileID: 7835622629792856689, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 5994406941229014689}
|
||||
- targetCorrespondingSourceObject: {fileID: 7835622629792856689, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
addedObject: {fileID: 7474514712757053072}
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
--- !u!1 &672328621937310823 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 7835622629792856689, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_PrefabInstance: {fileID: 7343451337687172630}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!23 &4652529236880594040
|
||||
MeshRenderer:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 672328621937310823}
|
||||
m_Enabled: 1
|
||||
m_CastShadows: 1
|
||||
m_ReceiveShadows: 1
|
||||
m_DynamicOccludee: 1
|
||||
m_StaticShadowCaster: 0
|
||||
m_MotionVectors: 1
|
||||
m_LightProbeUsage: 1
|
||||
m_ReflectionProbeUsage: 1
|
||||
m_RayTracingMode: 2
|
||||
m_RayTraceProcedural: 0
|
||||
m_RayTracingAccelStructBuildFlagsOverride: 0
|
||||
m_RayTracingAccelStructBuildFlags: 1
|
||||
m_SmallMeshCulling: 1
|
||||
m_RenderingLayerMask: 1
|
||||
m_RendererPriority: 0
|
||||
m_Materials:
|
||||
- {fileID: 2100000, guid: 6236b8ceb2645bb48be91e274d9564b8, type: 2}
|
||||
m_StaticBatchInfo:
|
||||
firstSubMesh: 0
|
||||
subMeshCount: 0
|
||||
m_StaticBatchRoot: {fileID: 0}
|
||||
m_ProbeAnchor: {fileID: 0}
|
||||
m_LightProbeVolumeOverride: {fileID: 0}
|
||||
m_ScaleInLightmap: 1
|
||||
m_ReceiveGI: 1
|
||||
m_PreserveUVs: 0
|
||||
m_IgnoreNormalsForChartDetection: 0
|
||||
m_ImportantGI: 0
|
||||
m_StitchLightmapSeams: 1
|
||||
m_SelectedEditorRenderState: 3
|
||||
m_MinimumChartSize: 4
|
||||
m_AutoUVMaxDistance: 0.5
|
||||
m_AutoUVMaxAngle: 89
|
||||
m_LightmapParameters: {fileID: 0}
|
||||
m_SortingLayerID: 0
|
||||
m_SortingLayer: 0
|
||||
m_SortingOrder: 5
|
||||
m_AdditionalVertexStreams: {fileID: 0}
|
||||
--- !u!114 &5994406941229014689
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 672328621937310823}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: d247ba06193faa74d9335f5481b2b56c, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
skeletonDataAsset: {fileID: 11400000, guid: a74f9c634f9ac2c4ba4660414394ff61, type: 2}
|
||||
initialSkinName:
|
||||
fixPrefabOverrideViaMeshFilter: 2
|
||||
initialFlipX: 0
|
||||
initialFlipY: 0
|
||||
updateWhenInvisible: 3
|
||||
separatorSlotNames: []
|
||||
zSpacing: 0
|
||||
useClipping: 1
|
||||
immutableTriangles: 0
|
||||
pmaVertexColors: 1
|
||||
clearStateOnDisable: 0
|
||||
tintBlack: 0
|
||||
singleSubmesh: 0
|
||||
fixDrawOrder: 0
|
||||
addNormals: 0
|
||||
calculateTangents: 0
|
||||
maskInteraction: 0
|
||||
maskMaterials:
|
||||
materialsMaskDisabled: []
|
||||
materialsInsideMask: []
|
||||
materialsOutsideMask: []
|
||||
disableRenderingOnOverride: 1
|
||||
physicsPositionInheritanceFactor: {x: 1, y: 1}
|
||||
physicsRotationInheritanceFactor: 1
|
||||
physicsMovementRelativeTo: {fileID: 0}
|
||||
updateTiming: 1
|
||||
unscaledTime: 0
|
||||
_animationName: Idle
|
||||
loop: 1
|
||||
timeScale: 1
|
||||
--- !u!33 &7474514712757053072
|
||||
MeshFilter:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 672328621937310823}
|
||||
m_Mesh: {fileID: 0}
|
||||
--- !u!1 &5897095096647521783 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
@ -198,15 +313,16 @@ MonoBehaviour:
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
<CenterTransform>k__BackingField: {fileID: 5927803667513949971}
|
||||
<VisualLook>k__BackingField: {fileID: 6077686033771388879}
|
||||
<VisualLook>k__BackingField: {fileID: 0}
|
||||
<InteractionCanvas>k__BackingField: {fileID: 6533109861150454071}
|
||||
<OutlineMaterial>k__BackingField: {fileID: 2100000, guid: 9db92b3ac1f276e42ae7d7bcfbbca549, type: 2}
|
||||
<LocalizeStringEvent>k__BackingField: {fileID: 0}
|
||||
<OutlineMaterial>k__BackingField: {fileID: 0}
|
||||
<LocalizeStringEvent>k__BackingField: {fileID: 2898669091630925434}
|
||||
<EnableInteraction>k__BackingField: 1
|
||||
<InteractionRadius>k__BackingField: 1
|
||||
<InteractionMessage>k__BackingField: "\uD38C\uD504 \uC791\uB3D9"
|
||||
IsOpened: 0
|
||||
_interactionHoldingTime: 1
|
||||
_spineController: {fileID: 0}
|
||||
_playerHoldingTime: 1
|
||||
_pumpingMessageObject: {fileID: 7690724424382746193, guid: 206dfaa20a9d03d40a76e55ba01170c8, type: 3}
|
||||
_offset: {x: 0, y: 1.5, z: 0}
|
||||
addedLiquid: 400
|
||||
@ -250,16 +366,31 @@ MonoBehaviour:
|
||||
references:
|
||||
version: 2
|
||||
RefIds: []
|
||||
--- !u!114 &6415264335706442394
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 5897095096647521783}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: be4f815e5e3c0d5459559bdc0b8bbbfb, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
<SkeletonAnimation>k__BackingField: {fileID: 5994406941229014689}
|
||||
_originalMaterial: {fileID: 2100000, guid: 6236b8ceb2645bb48be91e274d9564b8, type: 2}
|
||||
_replacementMaterial: {fileID: 2100000, guid: 966da048de55e5244ab504aa5e338588, type: 2}
|
||||
_initialSkinName: default
|
||||
_isRandomSkin: 0
|
||||
_isRandomRange: 0
|
||||
_randomRange: {x: 0, y: 0}
|
||||
_randomStrings: []
|
||||
--- !u!4 &5927803667513949971 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 4011269187381704965, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_PrefabInstance: {fileID: 7343451337687172630}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!212 &6077686033771388879 stripped
|
||||
SpriteRenderer:
|
||||
m_CorrespondingSourceObject: {fileID: 3580758810857167321, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_PrefabInstance: {fileID: 7343451337687172630}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!114 &6533109861150454071 stripped
|
||||
MonoBehaviour:
|
||||
m_CorrespondingSourceObject: {fileID: 4558604739080582945, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
|
@ -1,5 +1,71 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!1001 &6853451726430042695
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
serializedVersion: 2
|
||||
m_Modification:
|
||||
serializedVersion: 3
|
||||
m_TransformParent: {fileID: 809828747251277026}
|
||||
m_Modifications:
|
||||
- target: {fileID: 114774, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_Name
|
||||
value: RewordBoxStarParticle
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalPosition.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalPosition.z
|
||||
value: 0.25
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.w
|
||||
value: 0.7071068
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.x
|
||||
value: -0.7071068
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalRotation.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.x
|
||||
value: -90
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.y
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_LocalEulerAnglesHint.z
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 19996036, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
propertyPath: m_SortingOrder
|
||||
value: 5
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedComponents: []
|
||||
m_SourcePrefab: {fileID: 100100000, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
--- !u!4 &6853451726429712863 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 461720, guid: 804b29e827866804092a0bcb58a03ce0, type: 3}
|
||||
m_PrefabInstance: {fileID: 6853451726430042695}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!1001 &7343451337687172630
|
||||
PrefabInstance:
|
||||
m_ObjectHideFlags: 0
|
||||
@ -170,7 +236,10 @@ PrefabInstance:
|
||||
objectReference: {fileID: 0}
|
||||
m_RemovedComponents: []
|
||||
m_RemovedGameObjects: []
|
||||
m_AddedGameObjects: []
|
||||
m_AddedGameObjects:
|
||||
- targetCorrespondingSourceObject: {fileID: 7986070582027999988, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: 2
|
||||
addedObject: {fileID: 6853451726429712863}
|
||||
m_AddedComponents:
|
||||
- targetCorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
insertIndex: -1
|
||||
@ -212,6 +281,11 @@ Animator:
|
||||
m_AllowConstantClipSamplingOptimization: 1
|
||||
m_KeepAnimatorStateOnDisable: 0
|
||||
m_WriteDefaultValuesOnDisable: 0
|
||||
--- !u!4 &809828747251277026 stripped
|
||||
Transform:
|
||||
m_CorrespondingSourceObject: {fileID: 7986070582027999988, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
m_PrefabInstance: {fileID: 7343451337687172630}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
--- !u!1 &5897095096647521783 stripped
|
||||
GameObject:
|
||||
m_CorrespondingSourceObject: {fileID: 3764902268943045601, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
|
@ -76,6 +76,10 @@ PrefabInstance:
|
||||
propertyPath: m_FillOrigin
|
||||
value: 2
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7122983875714221022, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
propertyPath: m_AnchoredPosition.x
|
||||
value: 0
|
||||
objectReference: {fileID: 0}
|
||||
- target: {fileID: 7986070582027999988, guid: 3f9f846a7f237924e97c9acf370d991d, type: 3}
|
||||
propertyPath: m_LocalScale.x
|
||||
value: 1
|
||||
@ -179,6 +183,7 @@ MonoBehaviour:
|
||||
IsOpened: 0
|
||||
_playerHoldingTime: 1
|
||||
_canRandomChange: 0
|
||||
_randomBoxSprite: {fileID: 21300000, guid: 3484bcfbb75f8d54bb1f209c301f86ee, type: 3}
|
||||
--- !u!114 &5411673223561907087
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
|
@ -88,18 +88,21 @@ AnimatorStateTransition:
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name:
|
||||
m_Conditions: []
|
||||
m_Conditions:
|
||||
- m_ConditionMode: 1
|
||||
m_ConditionEvent: isOpened
|
||||
m_EventTreshold: 0
|
||||
m_DstStateMachine: {fileID: 0}
|
||||
m_DstState: {fileID: -8463433487428706251}
|
||||
m_Solo: 0
|
||||
m_Mute: 0
|
||||
m_IsExit: 0
|
||||
serializedVersion: 3
|
||||
m_TransitionDuration: 0.25
|
||||
m_TransitionDuration: 0
|
||||
m_TransitionOffset: 0
|
||||
m_ExitTime: 0.75
|
||||
m_HasExitTime: 1
|
||||
m_HasFixedDuration: 1
|
||||
m_HasExitTime: 0
|
||||
m_HasFixedDuration: 0
|
||||
m_InterruptionSource: 0
|
||||
m_OrderedInterruption: 1
|
||||
m_CanTransitionToSelf: 1
|
||||
|
8
Assets/08.Spines/Props/Pump.meta
Normal file
8
Assets/08.Spines/Props/Pump.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 2e5ed27cf2ca78a4098963d7d1af0e11
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
20
Assets/08.Spines/Props/Pump/Pump.atlas.txt
Normal file
20
Assets/08.Spines/Props/Pump/Pump.atlas.txt
Normal file
@ -0,0 +1,20 @@
|
||||
Pump.png
|
||||
size:1008,1135
|
||||
filter:Linear,Linear
|
||||
Rat00
|
||||
bounds:2,2,325,262
|
||||
rotate:90
|
||||
Rat01
|
||||
bounds:266,10,317,372
|
||||
rotate:90
|
||||
Rat02
|
||||
bounds:640,32,291,380
|
||||
down2
|
||||
bounds:2,647,486,507
|
||||
rotate:90
|
||||
dowun1
|
||||
bounds:511,734,495,399
|
||||
up1
|
||||
bounds:511,414,486,318
|
||||
up2
|
||||
bounds:2,329,486,316
|
7
Assets/08.Spines/Props/Pump/Pump.atlas.txt.meta
Normal file
7
Assets/08.Spines/Props/Pump/Pump.atlas.txt.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d83305aab08bf8b46a7e5df9cd2a650c
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/08.Spines/Props/Pump/Pump.png
Normal file
BIN
Assets/08.Spines/Props/Pump/Pump.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 348 KiB |
143
Assets/08.Spines/Props/Pump/Pump.png.meta
Normal file
143
Assets/08.Spines/Props/Pump/Pump.png.meta
Normal file
@ -0,0 +1,143 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3de2078e9110a9748843744e87b766a4
|
||||
TextureImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 13
|
||||
mipmaps:
|
||||
mipMapMode: 0
|
||||
enableMipMap: 0
|
||||
sRGBTexture: 1
|
||||
linearTexture: 0
|
||||
fadeOut: 0
|
||||
borderMipMap: 0
|
||||
mipMapsPreserveCoverage: 0
|
||||
alphaTestReferenceValue: 0.5
|
||||
mipMapFadeDistanceStart: 1
|
||||
mipMapFadeDistanceEnd: 3
|
||||
bumpmap:
|
||||
convertToNormalMap: 0
|
||||
externalNormalMap: 0
|
||||
heightScale: 0.25
|
||||
normalMapFilter: 0
|
||||
flipGreenChannel: 0
|
||||
isReadable: 0
|
||||
streamingMipmaps: 0
|
||||
streamingMipmapsPriority: 0
|
||||
vTOnly: 0
|
||||
ignoreMipmapLimit: 0
|
||||
grayScaleToAlpha: 0
|
||||
generateCubemap: 6
|
||||
cubemapConvolution: 0
|
||||
seamlessCubemap: 0
|
||||
textureFormat: 1
|
||||
maxTextureSize: 2048
|
||||
textureSettings:
|
||||
serializedVersion: 2
|
||||
filterMode: 1
|
||||
aniso: 1
|
||||
mipBias: 0
|
||||
wrapU: 0
|
||||
wrapV: 0
|
||||
wrapW: 0
|
||||
nPOTScale: 1
|
||||
lightmap: 0
|
||||
compressionQuality: 50
|
||||
spriteMode: 0
|
||||
spriteExtrude: 1
|
||||
spriteMeshType: 1
|
||||
alignment: 0
|
||||
spritePivot: {x: 0.5, y: 0.5}
|
||||
spritePixelsToUnits: 100
|
||||
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||
spriteGenerateFallbackPhysicsShape: 1
|
||||
alphaUsage: 1
|
||||
alphaIsTransparency: 1
|
||||
spriteTessellationDetail: -1
|
||||
textureType: 0
|
||||
textureShape: 1
|
||||
singleChannelComponent: 0
|
||||
flipbookRows: 1
|
||||
flipbookColumns: 1
|
||||
maxTextureSizeSet: 0
|
||||
compressionQualitySet: 0
|
||||
textureFormatSet: 0
|
||||
ignorePngGamma: 0
|
||||
applyGammaDecoding: 0
|
||||
swizzle: 50462976
|
||||
cookieLightType: 0
|
||||
platformSettings:
|
||||
- serializedVersion: 4
|
||||
buildTarget: DefaultTexturePlatform
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
- serializedVersion: 4
|
||||
buildTarget: Standalone
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
- serializedVersion: 4
|
||||
buildTarget: Android
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
- serializedVersion: 4
|
||||
buildTarget: WindowsStoreApps
|
||||
maxTextureSize: 2048
|
||||
resizeAlgorithm: 0
|
||||
textureFormat: -1
|
||||
textureCompression: 0
|
||||
compressionQuality: 50
|
||||
crunchedCompression: 0
|
||||
allowsAlphaSplitting: 0
|
||||
overridden: 0
|
||||
ignorePlatformSupport: 0
|
||||
androidETC2FallbackOverride: 0
|
||||
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||
spriteSheet:
|
||||
serializedVersion: 2
|
||||
sprites: []
|
||||
outline: []
|
||||
customData:
|
||||
physicsShape: []
|
||||
bones: []
|
||||
spriteID:
|
||||
internalID: 0
|
||||
vertices: []
|
||||
indices:
|
||||
edges: []
|
||||
weights: []
|
||||
secondaryTextures: []
|
||||
spriteCustomMetadata:
|
||||
entries: []
|
||||
nameFileIdTable: {}
|
||||
mipmapLimitGroupName:
|
||||
pSDRemoveMatte: 0
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
BIN
Assets/08.Spines/Props/Pump/Pump.skel.bytes
Normal file
BIN
Assets/08.Spines/Props/Pump/Pump.skel.bytes
Normal file
Binary file not shown.
7
Assets/08.Spines/Props/Pump/Pump.skel.bytes.meta
Normal file
7
Assets/08.Spines/Props/Pump/Pump.skel.bytes.meta
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d777e77524282e445bb74b72f25884fa
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
19
Assets/08.Spines/Props/Pump/Pump_Atlas.asset
Normal file
19
Assets/08.Spines/Props/Pump/Pump_Atlas.asset
Normal file
@ -0,0 +1,19 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: a6b194f808b1af6499c93410e504af42, type: 3}
|
||||
m_Name: Pump_Atlas
|
||||
m_EditorClassIdentifier:
|
||||
textureLoadingMode: 0
|
||||
onDemandTextureLoader: {fileID: 0}
|
||||
atlasFile: {fileID: 4900000, guid: d83305aab08bf8b46a7e5df9cd2a650c, type: 3}
|
||||
materials:
|
||||
- {fileID: 2100000, guid: 6236b8ceb2645bb48be91e274d9564b8, type: 2}
|
8
Assets/08.Spines/Props/Pump/Pump_Atlas.asset.meta
Normal file
8
Assets/08.Spines/Props/Pump/Pump_Atlas.asset.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ef6897f477662c54ab320d88c690d77e
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
46
Assets/08.Spines/Props/Pump/Pump_Material.mat
Normal file
46
Assets/08.Spines/Props/Pump/Pump_Material.mat
Normal file
@ -0,0 +1,46 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!21 &2100000
|
||||
Material:
|
||||
serializedVersion: 8
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_Name: Pump_Material
|
||||
m_Shader: {fileID: 4800000, guid: b77e51f117177954ea863bdb422344fb, type: 3}
|
||||
m_Parent: {fileID: 0}
|
||||
m_ModifiedSerializedProperties: 0
|
||||
m_ValidKeywords:
|
||||
- _STRAIGHT_ALPHA_INPUT
|
||||
m_InvalidKeywords: []
|
||||
m_LightmapFlags: 4
|
||||
m_EnableInstancingVariants: 0
|
||||
m_DoubleSidedGI: 0
|
||||
m_CustomRenderQueue: -1
|
||||
stringTagMap: {}
|
||||
disabledShaderPasses: []
|
||||
m_LockedProperties:
|
||||
m_SavedProperties:
|
||||
serializedVersion: 3
|
||||
m_TexEnvs:
|
||||
- _MainTex:
|
||||
m_Texture: {fileID: 2800000, guid: 3de2078e9110a9748843744e87b766a4, type: 3}
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Offset: {x: 0, y: 0}
|
||||
m_Ints: []
|
||||
m_Floats:
|
||||
- _Cutoff: 0.1
|
||||
- _DoubleSidedLighting: 0
|
||||
- _LightAffectsAdditive: 0
|
||||
- _ReceiveShadows: 0
|
||||
- _StencilComp: 8
|
||||
- _StencilRef: 1
|
||||
- _StraightAlphaInput: 1
|
||||
- _TintBlack: 0
|
||||
- _ZWrite: 0
|
||||
m_Colors:
|
||||
- _Black: {r: 0, g: 0, b: 0, a: 0}
|
||||
- _Color: {r: 1, g: 1, b: 1, a: 1}
|
||||
m_BuildTextureStacks: []
|
||||
m_AllowLocking: 1
|
8
Assets/08.Spines/Props/Pump/Pump_Material.mat.meta
Normal file
8
Assets/08.Spines/Props/Pump/Pump_Material.mat.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6236b8ceb2645bb48be91e274d9564b8
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 2100000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
31
Assets/08.Spines/Props/Pump/Pump_SkeletonData.asset
Normal file
31
Assets/08.Spines/Props/Pump/Pump_SkeletonData.asset
Normal file
@ -0,0 +1,31 @@
|
||||
%YAML 1.1
|
||||
%TAG !u! tag:unity3d.com,2011:
|
||||
--- !u!114 &11400000
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 0}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: f1b3b4b945939a54ea0b23d3396115fb, type: 3}
|
||||
m_Name: Pump_SkeletonData
|
||||
m_EditorClassIdentifier:
|
||||
atlasAssets:
|
||||
- {fileID: 11400000, guid: ef6897f477662c54ab320d88c690d77e, type: 2}
|
||||
scale: 0.003
|
||||
skeletonJSON: {fileID: 4900000, guid: d777e77524282e445bb74b72f25884fa, type: 3}
|
||||
isUpgradingBlendModeMaterials: 0
|
||||
blendModeMaterials:
|
||||
requiresBlendModeMaterials: 0
|
||||
applyAdditiveMaterial: 1
|
||||
additiveMaterials: []
|
||||
multiplyMaterials: []
|
||||
screenMaterials: []
|
||||
skeletonDataModifiers: []
|
||||
fromAnimation: []
|
||||
toAnimation: []
|
||||
duration: []
|
||||
defaultMix: 0.2
|
||||
controller: {fileID: 0}
|
8
Assets/08.Spines/Props/Pump/Pump_SkeletonData.asset.meta
Normal file
8
Assets/08.Spines/Props/Pump/Pump_SkeletonData.asset.meta
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: a74f9c634f9ac2c4ba4660414394ff61
|
||||
NativeFormatImporter:
|
||||
externalObjects: {}
|
||||
mainObjectFileID: 11400000
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -223,6 +223,54 @@ MonoBehaviour:
|
||||
m_Key: InteractionRewordBox
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652516266934272
|
||||
m_Key: GameStart
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652693132345344
|
||||
m_Key: Setting
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652745837969408
|
||||
m_Key: Exit
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656473286574080
|
||||
m_Key: Sound
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656696410963968
|
||||
m_Key: Graphic
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656750005780480
|
||||
m_Key: Master
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656828409905152
|
||||
m_Key: Bgm
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656897053884416
|
||||
m_Key: Sfx
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656950145384448
|
||||
m_Key: Display
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 657012900560896
|
||||
m_Key: Resolution
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 657068496060416
|
||||
m_Key: Language
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 667711001395200
|
||||
m_Key: Confirm
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
m_KeyGenerator:
|
||||
|
@ -238,6 +238,54 @@ MonoBehaviour:
|
||||
m_Localized: Open Reword Box
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652516266934272
|
||||
m_Localized: Game Start
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652693132345344
|
||||
m_Localized: Setting
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652745837969408
|
||||
m_Localized: Exit
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656473286574080
|
||||
m_Localized: Sound
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656696410963968
|
||||
m_Localized: Graphic
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656750005780480
|
||||
m_Localized: Master
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656828409905152
|
||||
m_Localized: BGM
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656897053884416
|
||||
m_Localized: Sfx
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656950145384448
|
||||
m_Localized: Display
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 657012900560896
|
||||
m_Localized: Resolution
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 657068496060416
|
||||
m_Localized: Language
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 667711001395200
|
||||
m_Localized: Confirm
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
references:
|
||||
version: 2
|
||||
RefIds:
|
||||
|
@ -251,6 +251,54 @@ MonoBehaviour:
|
||||
m_Localized: "\uC0C1\uC790 \uC5F4\uAE30"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652516266934272
|
||||
m_Localized: "\uAC8C\uC784 \uC2DC\uC791"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652693132345344
|
||||
m_Localized: "\uC124\uC815"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 652745837969408
|
||||
m_Localized: "\uC885\uB8CC"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656473286574080
|
||||
m_Localized: "\uC18C\uB9AC"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656696410963968
|
||||
m_Localized: "\uADF8\uB798\uD53D"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656750005780480
|
||||
m_Localized: "\uC804\uCCB4"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656828409905152
|
||||
m_Localized: "\uBC30\uACBD\uC74C"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656897053884416
|
||||
m_Localized: "\uD6A8\uACFC\uC74C"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 656950145384448
|
||||
m_Localized: "\uB514\uC2A4\uD50C\uB808\uC774"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 657012900560896
|
||||
m_Localized: "\uD574\uC0C1\uB3C4"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 657068496060416
|
||||
m_Localized: "\uC5B8\uC5B4"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
- m_Id: 667711001395200
|
||||
m_Localized: "\uD655\uC778"
|
||||
m_Metadata:
|
||||
m_Items: []
|
||||
references:
|
||||
version: 2
|
||||
RefIds:
|
||||
|
Loading…
Reference in New Issue
Block a user