commit 3b323714fd906e0773f36e1002220dcec8feae83 Author: NJ\skrwn Date: Tue Sep 15 00:20:30 2026 +0900 Initial commit diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..b7d5dce --- /dev/null +++ b/.gitattributes @@ -0,0 +1,49 @@ +## Unity ## +*.cs diff=csharp text +*.cginc text +*.shader text +*.mat merge=unityyamlmerge eol=lf +*.physicsMaterial2D merge=unityyamlmerge eol=lf +*.physicMaterial merge=unityyamlmerge eol=lf +*.meta merge=unityyamlmerge eol=lf +*.controller merge=unityyamlmerge eol=lf +## git-lfs ## +*.anim filter=lfs diff=lfs merge=lfs -text +*.asset filter=lfs diff=lfs merge=lfs -text +*.prefab filter=lfs diff=lfs merge=lfs -text +*.unity filter=lfs diff=lfs merge=lfs -text +#Image +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.psd filter=lfs diff=lfs merge=lfs -text +*.ai filter=lfs diff=lfs merge=lfs -text +#Audio +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +#Video +*.mp4 filter=lfs diff=lfs merge=lfs -text +*.mov filter=lfs diff=lfs merge=lfs -text +#3D Object +*.FBX filter=lfs diff=lfs merge=lfs -text +*.fbx filter=lfs diff=lfs merge=lfs -text +*.blend filter=lfs diff=lfs merge=lfs -text +*.obj filter=lfs diff=lfs merge=lfs -text +#ETC +*.a filter=lfs diff=lfs merge=lfs -text +*.exr filter=lfs diff=lfs merge=lfs -text +*.tga filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.dll filter=lfs diff=lfs merge=lfs -text +*.unitypackage filter=lfs diff=lfs merge=lfs -text +*.aif filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.rns filter=lfs diff=lfs merge=lfs -text +*.reason filter=lfs diff=lfs merge=lfs -text +*.lxo filter=lfs diff=lfs merge=lfs -text +*.bytes filter=lfs diff=lfs merge=lfs -text +*.hdr filter=lfs diff=lfs merge=lfs -text +*.cubemap filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa16a98 --- /dev/null +++ b/.gitignore @@ -0,0 +1,94 @@ +# ---> Unity +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore +# +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Uu]ser[Ss]ettings/ + +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +/[Mm]emoryCaptures/ + +# Recordings can get excessive in size +/[Rr]ecordings/ + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +/[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# IDE settings (자동 생성 — 사용자별 설정) +.vscode/ +.idea/ + +# OS generated files +.DS_Store +Thumbs.db +desktop.ini + +# Crash dumps +*.dmp +mono_crash* + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.slnx +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.aab +*.unitypackage +*.unitypackage.meta +*.app + +# Crashlytics generated file +crashlytics-build.properties + +# Packed Addressables +/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* + +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* + +Assets/XR/AndroidXR/AndroidXRSettingsInitializer* +ProjectSettings/Packages/com.unity.learn.iet-framework/Settings.json +ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json + +*.log diff --git a/Assets/01_Scenes.meta b/Assets/01_Scenes.meta new file mode 100644 index 0000000..b0ec4a7 --- /dev/null +++ b/Assets/01_Scenes.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05de2a8b5afc6c247b973020db438cdd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/01_Scenes/Chapter1.unity b/Assets/01_Scenes/Chapter1.unity new file mode 100644 index 0000000..748abea --- /dev/null +++ b/Assets/01_Scenes/Chapter1.unity @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3272a7869063facfad2a4015473a061a925ff6c2425c2a262b714620662f3c86 +size 38726 diff --git a/Assets/01_Scenes/Chapter1.unity.meta b/Assets/01_Scenes/Chapter1.unity.meta new file mode 100644 index 0000000..9531828 --- /dev/null +++ b/Assets/01_Scenes/Chapter1.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 99c9720ab356a0642a771bea13969a05 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/02_Scripts.meta b/Assets/02_Scripts.meta new file mode 100644 index 0000000..8b4e097 --- /dev/null +++ b/Assets/02_Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d48e2111221c5141825b2036665b9ca +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/02_Scripts/GameInput.cs b/Assets/02_Scripts/GameInput.cs new file mode 100644 index 0000000..519df3c --- /dev/null +++ b/Assets/02_Scripts/GameInput.cs @@ -0,0 +1,357 @@ +//------------------------------------------------------------------------------ +// +// This code was auto-generated by com.unity.inputsystem:InputActionCodeGenerator +// version 1.20.0 +// from Assets/99_Settings/GameInput.inputactions +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine.InputSystem; +using UnityEngine.InputSystem.Utilities; + +/// +/// Provides programmatic access to , , and instances defined in asset "Assets/99_Settings/GameInput.inputactions". +/// +/// +/// This class is source generated and any manual edits will be discarded if the associated asset is reimported or modified. +/// +/// +/// +/// using namespace UnityEngine; +/// using UnityEngine.InputSystem; +/// +/// // Example of using an InputActionMap named "Player" from a UnityEngine.MonoBehaviour implementing callback interface. +/// public class Example : MonoBehaviour, MyActions.IPlayerActions +/// { +/// private MyActions_Actions m_Actions; // Source code representation of asset. +/// private MyActions_Actions.PlayerActions m_Player; // Source code representation of action map. +/// +/// void Awake() +/// { +/// m_Actions = new MyActions_Actions(); // Create asset object. +/// m_Player = m_Actions.Player; // Extract action map object. +/// m_Player.AddCallbacks(this); // Register callback interface IPlayerActions. +/// } +/// +/// void OnDestroy() +/// { +/// m_Actions.Dispose(); // Destroy asset object. +/// } +/// +/// void OnEnable() +/// { +/// m_Player.Enable(); // Enable all actions within map. +/// } +/// +/// void OnDisable() +/// { +/// m_Player.Disable(); // Disable all actions within map. +/// } +/// +/// #region Interface implementation of MyActions.IPlayerActions +/// +/// // Invoked when "Move" action is either started, performed or canceled. +/// public void OnMove(InputAction.CallbackContext context) +/// { +/// Debug.Log($"OnMove: {context.ReadValue<Vector2>()}"); +/// } +/// +/// // Invoked when "Attack" action is either started, performed or canceled. +/// public void OnAttack(InputAction.CallbackContext context) +/// { +/// Debug.Log($"OnAttack: {context.ReadValue<float>()}"); +/// } +/// +/// #endregion +/// } +/// +/// +public partial class @GameInput: IInputActionCollection2, IDisposable +{ + /// + /// Provides access to the underlying asset instance. + /// + public InputActionAsset asset { get; } + + /// + /// Constructs a new instance. + /// + public @GameInput() + { + asset = InputActionAsset.FromJson(@"{ + ""version"": 1, + ""name"": ""GameInput"", + ""maps"": [ + { + ""name"": ""Character"", + ""id"": ""ea8ee446-5717-4986-bdd5-c9f7a1b75dd3"", + ""actions"": [ + { + ""name"": ""Move"", + ""type"": ""Value"", + ""id"": ""732ed064-1382-4949-9f7d-47533e3bd585"", + ""expectedControlType"": ""Vector2"", + ""processors"": """", + ""interactions"": """", + ""initialStateCheck"": true, + ""priority"": 0 + } + ], + ""bindings"": [ + { + ""name"": ""2D Vector"", + ""id"": ""8e90e752-3156-4bcd-b1c1-c233470bacc3"", + ""path"": ""2DVector"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Move"", + ""isComposite"": true, + ""isPartOfComposite"": false + }, + { + ""name"": ""up"", + ""id"": ""05bca409-e112-4898-b715-00e963da4a40"", + ""path"": ""/upArrow"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Move"", + ""isComposite"": false, + ""isPartOfComposite"": true + }, + { + ""name"": ""down"", + ""id"": ""24228439-9284-4655-9871-3d12a5b9a75a"", + ""path"": ""/downArrow"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Move"", + ""isComposite"": false, + ""isPartOfComposite"": true + }, + { + ""name"": ""left"", + ""id"": ""7533f565-ee4a-45a7-a6a6-3c8f83af1581"", + ""path"": ""/leftArrow"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Move"", + ""isComposite"": false, + ""isPartOfComposite"": true + }, + { + ""name"": ""right"", + ""id"": ""3706c006-de6d-4e66-bc32-0e2ef2dc1440"", + ""path"": ""/rightArrow"", + ""interactions"": """", + ""processors"": """", + ""groups"": """", + ""action"": ""Move"", + ""isComposite"": false, + ""isPartOfComposite"": true + } + ] + } + ], + ""controlSchemes"": [] +}"); + // Character + m_Character = asset.FindActionMap("Character", throwIfNotFound: true); + m_Character_Move = m_Character.FindAction("Move", throwIfNotFound: true); + } + + ~@GameInput() + { + UnityEngine.Debug.Assert(!m_Character.enabled, "This will cause a leak and performance issues, GameInput.Character.Disable() has not been called."); + } + + /// + /// Destroys this asset and all associated instances. + /// + public void Dispose() + { + UnityEngine.Object.Destroy(asset); + } + + /// + public InputBinding? bindingMask + { + get => asset.bindingMask; + set => asset.bindingMask = value; + } + + /// + public ReadOnlyArray? devices + { + get => asset.devices; + set => asset.devices = value; + } + + /// + public ReadOnlyArray controlSchemes => asset.controlSchemes; + + /// + public bool Contains(InputAction action) + { + return asset.Contains(action); + } + + /// + public IEnumerator GetEnumerator() + { + return asset.GetEnumerator(); + } + + /// + IEnumerator IEnumerable.GetEnumerator() + { + return GetEnumerator(); + } + + /// + public void Enable() + { + asset.Enable(); + } + + /// + public void Disable() + { + asset.Disable(); + } + + /// + public IEnumerable bindings => asset.bindings; + + /// + public InputAction FindAction(string actionNameOrId, bool throwIfNotFound = false) + { + return asset.FindAction(actionNameOrId, throwIfNotFound); + } + + /// + public int FindBinding(InputBinding bindingMask, out InputAction action) + { + return asset.FindBinding(bindingMask, out action); + } + + // Character + private readonly InputActionMap m_Character; + private List m_CharacterActionsCallbackInterfaces = new List(); + private readonly InputAction m_Character_Move; + /// + /// Provides access to input actions defined in input action map "Character". + /// + public struct CharacterActions + { + private @GameInput m_Wrapper; + + /// + /// Construct a new instance of the input action map wrapper class. + /// + public CharacterActions(@GameInput wrapper) { m_Wrapper = wrapper; } + /// + /// Provides access to the underlying input action "Character/Move". + /// + public InputAction @Move => m_Wrapper.m_Character_Move; + /// + /// Provides access to the underlying input action map instance. + /// + public InputActionMap Get() { return m_Wrapper.m_Character; } + /// + public void Enable() { Get().Enable(); } + /// + public void Disable() { Get().Disable(); } + /// + public bool enabled => Get().enabled; + /// + /// Implicitly converts an to an instance. + /// + public static implicit operator InputActionMap(CharacterActions set) { return set.Get(); } + /// + /// Adds , and callbacks provided via on all input actions contained in this map. + /// + /// Callback instance. + /// + /// If is null or have already been added this method does nothing. + /// + /// + public void AddCallbacks(ICharacterActions instance) + { + if (instance == null || m_Wrapper.m_CharacterActionsCallbackInterfaces.Contains(instance)) return; + m_Wrapper.m_CharacterActionsCallbackInterfaces.Add(instance); + @Move.started += instance.OnMove; + @Move.performed += instance.OnMove; + @Move.canceled += instance.OnMove; + } + + /// + /// Removes , and callbacks provided via on all input actions contained in this map. + /// + /// + /// Calling this method when have not previously been registered has no side-effects. + /// + /// + private void UnregisterCallbacks(ICharacterActions instance) + { + @Move.started -= instance.OnMove; + @Move.performed -= instance.OnMove; + @Move.canceled -= instance.OnMove; + } + + /// + /// Unregisters and unregisters all input action callbacks via . + /// + /// + public void RemoveCallbacks(ICharacterActions instance) + { + if (m_Wrapper.m_CharacterActionsCallbackInterfaces.Remove(instance)) + UnregisterCallbacks(instance); + } + + /// + /// Replaces all existing callback instances and previously registered input action callbacks associated with them with callbacks provided via . + /// + /// + /// If is null, calling this method will only unregister all existing callbacks but not register any new callbacks. + /// + /// + /// + /// + public void SetCallbacks(ICharacterActions instance) + { + foreach (var item in m_Wrapper.m_CharacterActionsCallbackInterfaces) + UnregisterCallbacks(item); + m_Wrapper.m_CharacterActionsCallbackInterfaces.Clear(); + AddCallbacks(instance); + } + } + /// + /// Provides a new instance referencing this action map. + /// + public CharacterActions @Character => new CharacterActions(this); + /// + /// Interface to implement callback methods for all input action callbacks associated with input actions defined by "Character" which allows adding and removing callbacks. + /// + /// + /// + public interface ICharacterActions + { + /// + /// Method invoked when associated input action "Move" is either , or . + /// + /// + /// + /// + void OnMove(InputAction.CallbackContext context); + } +} diff --git a/Assets/02_Scripts/GameInput.cs.meta b/Assets/02_Scripts/GameInput.cs.meta new file mode 100644 index 0000000..208bc87 --- /dev/null +++ b/Assets/02_Scripts/GameInput.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b37768cc3bc80a445892592cfe1807a9 \ No newline at end of file diff --git a/Assets/02_Scripts/ISceneInitializable.cs b/Assets/02_Scripts/ISceneInitializable.cs new file mode 100644 index 0000000..0a35c0d --- /dev/null +++ b/Assets/02_Scripts/ISceneInitializable.cs @@ -0,0 +1,4 @@ +public interface ISceneInitializable +{ + public void OnSceneLoaded(); +} \ No newline at end of file diff --git a/Assets/02_Scripts/ISceneInitializable.cs.meta b/Assets/02_Scripts/ISceneInitializable.cs.meta new file mode 100644 index 0000000..3de7af0 --- /dev/null +++ b/Assets/02_Scripts/ISceneInitializable.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: ac9c4ce53e7024046b9491974f372b81 \ No newline at end of file diff --git a/Assets/02_Scripts/Managers.meta b/Assets/02_Scripts/Managers.meta new file mode 100644 index 0000000..a1de504 --- /dev/null +++ b/Assets/02_Scripts/Managers.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58982cc34a9beab48aacd307ee6541d6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/02_Scripts/Managers/GameManager.cs b/Assets/02_Scripts/Managers/GameManager.cs new file mode 100644 index 0000000..b17ad54 --- /dev/null +++ b/Assets/02_Scripts/Managers/GameManager.cs @@ -0,0 +1,23 @@ +using UnityEngine; + +public class GameManager : MonoBehaviour,ISceneInitializable +{ + public static GameManager Instance { get; private set; } + + private void Awake() + { + if (Instance == null) + { + Instance = this; //만들어진 자신을 인스턴스로 설정 + } + else + { + Destroy(gameObject); //이미 인스턴스가 있으면 자신을 파괴 + } + } + + public void OnSceneLoaded() + { + + } +} \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/GameManager.cs.meta b/Assets/02_Scripts/Managers/GameManager.cs.meta new file mode 100644 index 0000000..87f3706 --- /dev/null +++ b/Assets/02_Scripts/Managers/GameManager.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b503a1c03836ff045a34454135d1ace2 \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/InputManager.cs b/Assets/02_Scripts/Managers/InputManager.cs new file mode 100644 index 0000000..3ed915e --- /dev/null +++ b/Assets/02_Scripts/Managers/InputManager.cs @@ -0,0 +1,39 @@ +using System; +using UnityEngine; +using UnityEngine.InputSystem; + +public class InputManager : MonoBehaviour, GameInput.ICharacterActions +{ + // 외부에서 InputManager.Instance.OnXxx_Event += handler 형태로 구독. + public static InputManager Instance { get; private set; } + + private GameInput _input; + + public event Action OnMoveNext_Event; + + private void Awake() + { + if (Instance == null) + { + Instance = this; //만들어진 자신을 인스턴스로 설정 + } + else + { + Destroy(gameObject); //이미 인스턴스가 있으면 자신을 파괴 + } + + _input = new GameInput(); + _input.Character.SetCallbacks(this); + } + + // GameInput은 활성/비활성 토글이 필요한 자원 ?. 처리로 Awake보다 OnEnable이 먼저 호출되는 경우 보호. + private void OnEnable() => _input?.Character.Enable(); + private void OnDisable() => _input?.Character.Disable(); + private void OnDestroy() => _input?.Dispose(); + + public void OnMove(InputAction.CallbackContext ctx) + { + if (ctx.phase == InputActionPhase.Performed) + OnMoveNext_Event?.Invoke(); + } +} \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/InputManager.cs.meta b/Assets/02_Scripts/Managers/InputManager.cs.meta new file mode 100644 index 0000000..2f740e5 --- /dev/null +++ b/Assets/02_Scripts/Managers/InputManager.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 63c36588daf983a45bb9a103bb89ac57 \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/SceneLoadManager.cs b/Assets/02_Scripts/Managers/SceneLoadManager.cs new file mode 100644 index 0000000..a6b5e18 --- /dev/null +++ b/Assets/02_Scripts/Managers/SceneLoadManager.cs @@ -0,0 +1,156 @@ +using System; +using UnityEngine; +using UnityEngine.SceneManagement; + +public class SceneLoadManager : MonoBehaviour +{ + public static SceneLoadManager Instance { get; private set; } + + [SerializeField] private GameObject _loadingRoot; + [SerializeField] private LoadingScreen _loadingScreen; + + private void Awake() + { + if (Instance == null) + { + Instance = this; // 만들어진 자신을 인스턴스로 설정 + } + else + { + Destroy(gameObject); // 이미 인스턴스가 있으면 자신을 파괴 + } + } + + private void Start() + { + SceneManager.sceneLoaded += OnSceneLoaded; + OnSceneLoaded(SceneManager.GetActiveScene(), LoadSceneMode.Single); + } + + private void OnDestroy() + { + if (Instance == this) + { + SceneManager.sceneLoaded -= OnSceneLoaded; + } + } + + private void OnSceneLoaded(Scene scene, LoadSceneMode mode) + { + MonoBehaviour[] allObjs = FindObjectsByType(FindObjectsSortMode.None); + + foreach (var obj in allObjs) + { + if (obj is ISceneInitializable initializable) + { + // 씬에서 ISceneInitializable 인터페이스를 가진 오브젝트의 초기화 로직을 실행 + initializable.OnSceneLoaded(); + } + } + } + + public void SetSceneLoadingProgressValue(float value) + { + + } + + public async Awaitable SetSceneLoadingActive(bool isActive,float alphaTime) + { + if (isActive) + { + _loadingRoot.SetActive(true); + } + + + if (alphaTime > 0f) + { + await FadeLoadingCanvas(!isActive,alphaTime); + } + + if (!isActive) + _loadingRoot.SetActive(false); + } + + public async Awaitable FadeLoadingCanvas(bool isOut,float fadeTime) + { + float startAlpha = isOut ? 1f : 0f; + float endAlpha = isOut ? 0f : 1f; + + float timer = 0; + _loadingScreen.LoadingScreenCanvasGroup.alpha = startAlpha; + + while(timer < fadeTime) + { + timer += Time.deltaTime; + _loadingScreen.LoadingScreenCanvasGroup.alpha = Mathf.Lerp(startAlpha, endAlpha, timer / fadeTime); + await Awaitable.NextFrameAsync(this.destroyCancellationToken); + } + + _loadingScreen.LoadingScreenCanvasGroup.alpha = endAlpha; + } + + public void RequestSceneChange(string sceneName) + { + _ = SceneChange(sceneName); + } + + private async Awaitable SceneChange(string sceneName) + { + try + { + //로딩바 수치 0으로 설정 + SetSceneLoadingProgressValue(0f); + + //로딩창을 1초에 걸쳐 나타나게함 + await SetSceneLoadingActive(true,1f); + + AsyncOperation op = SceneManager.LoadSceneAsync(sceneName); + + //자동 전환을 하고 싶지 않을 경우 해당값을 false로 두었다가 true로 바꾸면 그 때 전환됨 + op.allowSceneActivation = false; + + //화면에 보여줄 로딩 수치 + float displayProgress = 0f; + + //op.progress 0.9가 데이터 로딩이 끝난 기준 allowSceneActivation이 트루면 다음으로 넘어가면서 op.isDone이 true가 된다. + while (op.progress < 0.9f) + { + //실제 로딩 수치 + float realProgress = Mathf.Clamp01(op.progress / 0.9f); + + //보여줄 값을 실제값을 향해 부드럽게 이동 + displayProgress = Mathf.MoveTowards(displayProgress, realProgress, Time.deltaTime * 0.5f); + + // 로딩바 UI에 값 적용 + SetSceneLoadingProgressValue(displayProgress); + + //자기자신이 파괴될때 토큰에 취소요청을 보냄 + await Awaitable.NextFrameAsync(this.destroyCancellationToken); + } + + //로딩바 수치 1(100%)로 설정 (데이터 로딩은 이미 끝이기 때문에) + SetSceneLoadingProgressValue(1); + + // 잠시 대기했다가 전환 + await Awaitable.WaitForSecondsAsync(1.0f, this.destroyCancellationToken); + + // 로딩바가 1초에 걸쳐 사라짐 + await SetSceneLoadingActive(false,1f); + + // 다음씬으로 넘어가도 됨을 알림 + op.allowSceneActivation = true; + + // 씬 활성화가 완전히 끝날 때까지 대기 + // allowSceneActivation가 true가 되고 완전히 전환되기까지는 몇프레임 걸림. op.isDone 은 이 과정이 끝난 뒤에 true가 됨. + while(!op.isDone) + { + await Awaitable.NextFrameAsync(this.destroyCancellationToken); + } + + } + catch (OperationCanceledException) + { + Debug.Log("씬 전환 작업이 취소됨"); + } + } +} \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/SceneLoadManager.cs.meta b/Assets/02_Scripts/Managers/SceneLoadManager.cs.meta new file mode 100644 index 0000000..d94a50a --- /dev/null +++ b/Assets/02_Scripts/Managers/SceneLoadManager.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: ec31092c33787b74287a044d7982713b \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/SoundManager.cs b/Assets/02_Scripts/Managers/SoundManager.cs new file mode 100644 index 0000000..e7c22ba --- /dev/null +++ b/Assets/02_Scripts/Managers/SoundManager.cs @@ -0,0 +1,208 @@ +using System; +using System.Collections.Generic; +using System.Threading; +using UnityEngine; +using UnityEngine.Audio; + +public class SoundManager : MonoBehaviour, ISceneInitializable +{ + public static SoundManager Instance { get; private set; } + + [Header("Mixer")] + [SerializeField] private AudioMixer _mainMixer; //메인 믹서 하나 + [SerializeField] private AudioMixerGroup _bgmGroup; + [SerializeField] private AudioMixerGroup _sfxGroup; + + [Header("BGM")] + [SerializeField] private AudioSource _bgmSource; //BGM 전용 단일 오디오 소스 + [SerializeField, Range(0f, 1f)] private float _bgmVolume = 1f; + [SerializeField] private float _bgmFadeDuration = 1.5f; + + [Header("SFX Pool")] + [SerializeField] private int _sfxPoolSize = 20; //시작 시 미리 생성할 SFX 소스 개수 + + //SFX 풀 - 대기중인 소스 + private readonly Queue _sfxPool = new(); + + //BGM 전환(페이드)을 취소하기 위한 토큰. + private CancellationTokenSource _bgmCts; + + private void Awake() + { + if (Instance == null) + { + Instance = this; //만들어진 자신을 인스턴스로 설정 + Initialize(); + } + else + { + Destroy(gameObject); //이미 인스턴스가 있으면 자신을 파괴 (씬마다 놓아도 첫 번째만 남음) + } + } + + // 씬이 바뀌면 이전 씬에서 남은 전용(Override) BGM을 정리한다 (ISceneInitializable). + // 기본 BGM 층은 LocationManager.MoveTo가 장소 입장 시 SetDefaultBGM으로 넘겨준다. + public void OnSceneLoaded() + { + + } + + private void Initialize() + { + //BGM 소스 기본 설정 + if (_bgmSource != null) + { + _bgmSource.outputAudioMixerGroup = _bgmGroup; + _bgmSource.playOnAwake = false; + _bgmSource.loop = true; + } + + //SFX 풀 미리 생성 + for (int i = 0; i < _sfxPoolSize; i++) + { + _sfxPool.Enqueue(CreateSfxSource()); + } + } + + //진행 중이던 전환(페이드)을 취소하고 새 전환을 시작 + private void StartBgmChange(AudioClip clip) + { + if (_bgmSource == null) return; + _bgmCts?.Cancel(); + _bgmCts?.Dispose(); + _bgmCts = new CancellationTokenSource(); + _ = ChangeBGM(clip, _bgmCts.Token); + } + + //페이드아웃 → 클립 교체 → 페이드인 (단일 소스라 순차 진행) + private async Awaitable ChangeBGM(AudioClip clip, CancellationToken token) + { + try + { + //현재 재생중이면 먼저 페이드아웃 + if (_bgmSource.isPlaying) + { + await BGMFade(_bgmSource.volume, 0f, token); + _bgmSource.Stop(); + } + + if (clip == null) return; //BGM이 없으면 무음 유지 + + //새 BGM 페이드인 + _bgmSource.clip = clip; + _bgmSource.volume = 0f; + _bgmSource.Play(); + await BGMFade(0f, _bgmVolume, token); + } + catch (OperationCanceledException) + { + //전환이 취소됨 + } + } + + //BGM 소스 볼륨을 from→to로 부드럽게 이동 + private async Awaitable BGMFade(float from, float to, CancellationToken token) + { + float t = 0f; + while (t < _bgmFadeDuration) + { + t += Time.deltaTime; + _bgmSource.volume = Mathf.Lerp(from, to, t / _bgmFadeDuration); + await Awaitable.NextFrameAsync(token); + } + _bgmSource.volume = to; + } + + //=========================== SFX =========================== + public void PlaySFX(AudioClip clip, float volume = 1f) + { + if (clip == null) return; + + AudioSource source = GetSfxSource(); + Play(source, clip, volume); + _ = ReturnAfterPlay(source, clip.length); //재생이 끝나면 풀에 반납 + } + + private void Play(AudioSource source, AudioClip clip, float volume) + { + source.clip = clip; + source.volume = volume; + source.Play(); + } + + //풀에서 사용 가능한 SFX 소스를 가져옴 (없으면 새로 생성 - 자동 증설) + private AudioSource GetSfxSource() + { + AudioSource source = _sfxPool.Count > 0 ? _sfxPool.Dequeue() : CreateSfxSource(); + source.gameObject.SetActive(true); + return source; + } + + //=========================== Looping SFX =========================== + //타이핑 사운드처럼 "시작 → 임의 시점에 정지"가 필요한 루프 재생. + //반환값은 정지에 쓰는 핸들이다. PlaySFX와 달리 자동 반납되지 않으니 반드시 StopLoop를 부를 것. + public AudioSource PlayLoopSFX(AudioClip clip, float volume = 1f) + { + if (clip == null) return null; + + AudioSource source = GetSfxSource(); + source.loop = true; + source.clip = clip; + source.volume = volume; + source.Play(); + return source; + } + + //루프 재생을 멈추고 소스를 풀에 반납한다. 이미 반납된 소스(중복 호출)는 무시한다. + public void StopLoopSFX(AudioSource source) + { + if (source == null || !source.gameObject.activeSelf) return; + + source.Stop(); + source.loop = false; //풀에 돌아가는 소스는 항상 loop=false 상태여야 한다 + source.clip = null; + source.gameObject.SetActive(false); + _sfxPool.Enqueue(source); + } + + //재생 길이만큼 대기 후 소스를 풀로 반납 + private async Awaitable ReturnAfterPlay(AudioSource source, float duration) + { + try + { + await Awaitable.WaitForSecondsAsync(duration, this.destroyCancellationToken); + } + catch (OperationCanceledException) + { + return; //매니저 파괴 시 종료 + } + + source.Stop(); + source.clip = null; + source.gameObject.SetActive(false); + _sfxPool.Enqueue(source); + } + + //SFX용 AudioSource를 자식 오브젝트로 생성 + private AudioSource CreateSfxSource() + { + GameObject go = new("SFX_Source"); + go.transform.SetParent(transform); + go.SetActive(false); + + AudioSource source = go.AddComponent(); + source.outputAudioMixerGroup = _sfxGroup; + source.playOnAwake = false; + source.spatialBlend = 0f; //2D — 거리 감쇠 없이 항상 동일하게 + return source; + } + + //=========================== Mixer =========================== + //믹서 노출 파라미터로 볼륨 조절 (0~1 → dB 변환) + public void SetVolume(string exposedParam, float normalized) + { + //0에 가까우면 -80dB(무음), 그 외에는 로그 스케일로 변환 + float db = normalized <= 0.0001f ? -80f : Mathf.Log10(normalized) * 20f; + _mainMixer.SetFloat(exposedParam, db); + } +} \ No newline at end of file diff --git a/Assets/02_Scripts/Managers/SoundManager.cs.meta b/Assets/02_Scripts/Managers/SoundManager.cs.meta new file mode 100644 index 0000000..0c0af59 --- /dev/null +++ b/Assets/02_Scripts/Managers/SoundManager.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e52c9f8101a6f384aa40177da0c2fab6 \ No newline at end of file diff --git a/Assets/02_Scripts/UI.meta b/Assets/02_Scripts/UI.meta new file mode 100644 index 0000000..a08b6f7 --- /dev/null +++ b/Assets/02_Scripts/UI.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cacb0e527de720648bc630532adf1abd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/02_Scripts/UI/LoadingScreen.cs b/Assets/02_Scripts/UI/LoadingScreen.cs new file mode 100644 index 0000000..6b3f871 --- /dev/null +++ b/Assets/02_Scripts/UI/LoadingScreen.cs @@ -0,0 +1,15 @@ +using TMPro; +using UnityEngine; +using UnityEngine.UI; + +public class LoadingScreen : MonoBehaviour +{ + public Image LoadingImage; + public TextMeshProUGUI LoadingTextMeshProUGUI; + public CanvasGroup LoadingScreenCanvasGroup; + + private void Awake() + { + LoadingScreenCanvasGroup = GetComponent(); + } +} \ No newline at end of file diff --git a/Assets/02_Scripts/UI/LoadingScreen.cs.meta b/Assets/02_Scripts/UI/LoadingScreen.cs.meta new file mode 100644 index 0000000..d0d9e85 --- /dev/null +++ b/Assets/02_Scripts/UI/LoadingScreen.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 3984475833984604d97a80f51f50e53a \ No newline at end of file diff --git a/Assets/03_Models.meta b/Assets/03_Models.meta new file mode 100644 index 0000000..315d637 --- /dev/null +++ b/Assets/03_Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a0b9016bdb6d0e4897f0c3e37f3c990 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters.meta b/Assets/03_Models/Characters.meta new file mode 100644 index 0000000..58a9bf6 --- /dev/null +++ b/Assets/03_Models/Characters.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c019b382336692f44af9a63d5dc41f63 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red.meta b/Assets/03_Models/Characters/Red.meta new file mode 100644 index 0000000..60b7bce --- /dev/null +++ b/Assets/03_Models/Characters/Red.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c2af9d30273d2354d92583ed20023e05 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Animations.meta b/Assets/03_Models/Characters/Red/Animations.meta new file mode 100644 index 0000000..f945fab --- /dev/null +++ b/Assets/03_Models/Characters/Red/Animations.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0bff81c4e1248041a9eb6d407a31208 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Animations/MoveDown.anim b/Assets/03_Models/Characters/Red/Animations/MoveDown.anim new file mode 100644 index 0000000..1d9e099 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Animations/MoveDown.anim @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3926ad5e1d58b85b4d29c67ec1e75b535d4efe90e1bb23eca1eb1acad5f71417 +size 2333 diff --git a/Assets/03_Models/Characters/Red/Animations/MoveDown.anim.meta b/Assets/03_Models/Characters/Red/Animations/MoveDown.anim.meta new file mode 100644 index 0000000..84558e4 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Animations/MoveDown.anim.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fed2f1f82407ce4439d8b6ed375e0667 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 7400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Animations/RedAnimController.controller b/Assets/03_Models/Characters/Red/Animations/RedAnimController.controller new file mode 100644 index 0000000..4d5c8b9 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Animations/RedAnimController.controller @@ -0,0 +1,124 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!91 &9100000 +AnimatorController: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: RedAnimController + serializedVersion: 5 + m_AnimatorParameters: [] + m_AnimatorLayers: + - serializedVersion: 5 + m_Name: Base Layer + m_StateMachine: {fileID: 6815402290229989870} + m_Mask: {fileID: 0} + m_Motions: [] + m_Behaviours: [] + m_BlendingMode: 0 + m_SyncedLayerIndex: -1 + m_DefaultWeight: 0 + m_IKPass: 0 + m_SyncedLayerAffectsTiming: 0 + m_Controller: {fileID: 9100000} +--- !u!1101 &2519894553696719540 +AnimatorStateTransition: + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: + m_Conditions: [] + m_DstStateMachine: {fileID: 0} + m_DstState: {fileID: 3987754447849857068} + m_Solo: 0 + m_Mute: 0 + m_IsExit: 0 + serializedVersion: 3 + m_TransitionDuration: 0.25 + m_TransitionOffset: 0 + m_ExitTime: 0.75 + m_HasExitTime: 1 + m_HasFixedDuration: 1 + m_InterruptionSource: 0 + m_OrderedInterruption: 1 + m_CanTransitionToSelf: 1 +--- !u!1102 &3987754447849857068 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: MoveDown + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: [] + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 7400000, guid: fed2f1f82407ce4439d8b6ed375e0667, type: 2} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1102 &6291064502994660405 +AnimatorState: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Idle + m_Speed: 1 + m_CycleOffset: 0 + m_Transitions: + - {fileID: 2519894553696719540} + m_StateMachineBehaviours: [] + m_Position: {x: 50, y: 50, z: 0} + m_IKOnFeet: 0 + m_WriteDefaultValues: 1 + m_Mirror: 0 + m_SpeedParameterActive: 0 + m_MirrorParameterActive: 0 + m_CycleOffsetParameterActive: 0 + m_TimeParameterActive: 0 + m_Motion: {fileID: 0} + m_Tag: + m_SpeedParameter: + m_MirrorParameter: + m_CycleOffsetParameter: + m_TimeParameter: +--- !u!1107 &6815402290229989870 +AnimatorStateMachine: + serializedVersion: 6 + m_ObjectHideFlags: 1 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Base Layer + m_ChildStates: + - serializedVersion: 1 + m_State: {fileID: 3987754447849857068} + m_Position: {x: 280, y: 250, z: 0} + - serializedVersion: 1 + m_State: {fileID: 6291064502994660405} + m_Position: {x: 280, y: 90, z: 0} + m_ChildStateMachines: [] + m_AnyStateTransitions: [] + m_EntryTransitions: [] + m_StateMachineTransitions: {} + m_StateMachineBehaviours: [] + m_AnyStatePosition: {x: 50, y: 20, z: 0} + m_EntryPosition: {x: 50, y: 120, z: 0} + m_ExitPosition: {x: 800, y: 120, z: 0} + m_ParentStateMachinePosition: {x: 800, y: 20, z: 0} + m_DefaultState: {fileID: 6291064502994660405} diff --git a/Assets/03_Models/Characters/Red/Animations/RedAnimController.controller.meta b/Assets/03_Models/Characters/Red/Animations/RedAnimController.controller.meta new file mode 100644 index 0000000..c474e74 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Animations/RedAnimController.controller.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 01feefa73abd67844a9dced7d3bb1d3e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 9100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character.meta b/Assets/03_Models/Characters/Red/Character.meta new file mode 100644 index 0000000..ee09953 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4108121a5d2f74d4e9349486b9ab98d2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_Down.png b/Assets/03_Models/Characters/Red/Character/Character_Down.png new file mode 100644 index 0000000..9e072a8 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Down.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f97d738a2ca4e482313d0f9943b93743b2876dffd81549613e52b28dd90bdfb +size 917 diff --git a/Assets/03_Models/Characters/Red/Character/Character_Down.png.meta b/Assets/03_Models/Characters/Red/Character/Character_Down.png.meta new file mode 100644 index 0000000..c251526 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Down.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 9c6268f8d6e9f6a4b9754c54a6994bbc +TextureImporter: + internalIDToNameTable: + - first: + 213: 3785784146384260830 + second: Character_Down_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_Down_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: ede0a898f9ec98430800000000000000 + internalID: 3785784146384260830 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Down_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7a75b44a06e72f34a85bdbeef60d8695 + internalID: -1003903938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Down_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 804b14b5496b79148be56da1a725ab4b + internalID: 1800169374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Down_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92894285c308bd1488dde5058ea022f4 + internalID: 55559569 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 46700e090180fde41975d52711da3a75 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_Down_0: 3785784146384260830 + Character_Down_1: -1003903938 + Character_Down_2: 1800169374 + Character_Down_3: 55559569 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_DownLeft.png b/Assets/03_Models/Characters/Red/Character/Character_DownLeft.png new file mode 100644 index 0000000..1de786b --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_DownLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6872a177cbf13f6758b65d3acc2d4f4f28bbbdaa86d41c094016c9b09f48d6bc +size 797 diff --git a/Assets/03_Models/Characters/Red/Character/Character_DownLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_DownLeft.png.meta new file mode 100644 index 0000000..7dc1460 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_DownLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: c156e2968bb8fc2478fec08ccc1c55a4 +TextureImporter: + internalIDToNameTable: + - first: + 213: 991693094921136743 + second: Character_DownLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_DownLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 76a6bf89d9333cd00800000000000000 + internalID: 991693094921136743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_DownLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 14156f7c0c86dc741be798e1079699b6 + internalID: 1536196552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_DownLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25400aac40cc71f478fafa6f62f7ea4e + internalID: 475998779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_DownLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 011dc74ec78d81746b846a640a13baf0 + internalID: 747806498 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: aa7bf344e9a9d164da86cc45404f905f + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_DownLeft_0: 991693094921136743 + Character_DownLeft_1: 1536196552 + Character_DownLeft_2: 475998779 + Character_DownLeft_3: 747806498 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_DownRight.png b/Assets/03_Models/Characters/Red/Character/Character_DownRight.png new file mode 100644 index 0000000..2251c1e --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_DownRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63f9b49a4a2503e03304439713519245b018605c7b9ac9a0a11b3bd7803a6055 +size 842 diff --git a/Assets/03_Models/Characters/Red/Character/Character_DownRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_DownRight.png.meta new file mode 100644 index 0000000..b67315c --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_DownRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: af2ac46c3fc9d244dad01ddc043a578d +TextureImporter: + internalIDToNameTable: + - first: + 213: 1313191842920034056 + second: Character_DownRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_DownRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 80f60370605693210800000000000000 + internalID: 1313191842920034056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_DownRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4575dc4dda934e9418e51428bfb9cc34 + internalID: 2059699263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_DownRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfbcb5bbaf29b3e4788783a0c2a54342 + internalID: 1746828908 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_DownRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 58665aaecdb543847a616d16c545c6a3 + internalID: -161897446 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: fd3734e8cdb3683429d947a0f5a658a7 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_DownRight_0: 1313191842920034056 + Character_DownRight_1: 2059699263 + Character_DownRight_2: 1746828908 + Character_DownRight_3: -161897446 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_Left.png b/Assets/03_Models/Characters/Red/Character/Character_Left.png new file mode 100644 index 0000000..aa7886d --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Left.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cae0630851dea753e02ca51a17ba9b0ecb3da9e633118bd9576a438f713205a +size 762 diff --git a/Assets/03_Models/Characters/Red/Character/Character_Left.png.meta b/Assets/03_Models/Characters/Red/Character/Character_Left.png.meta new file mode 100644 index 0000000..d727532 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Left.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 586aae6ef0422934894f4eb91fb556e6 +TextureImporter: + internalIDToNameTable: + - first: + 213: 6323198320570251567 + second: Character_Left_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_Left_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: f29bfedee5380c750800000000000000 + internalID: 6323198320570251567 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Left_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ad76a4bf3032f714892302ceef9fc818 + internalID: 2077389439 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Left_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 68869052b1a69ba4d9f02b7397e1cb55 + internalID: 1523082789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Left_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b4eb545868fecaa4cafe0eb6f77d7813 + internalID: 248911546 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: aba3193e4bfdb3047a1cb7dde923cc89 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_Left_0: 6323198320570251567 + Character_Left_1: 2077389439 + Character_Left_2: 1523082789 + Character_Left_3: 248911546 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_Right.png b/Assets/03_Models/Characters/Red/Character/Character_Right.png new file mode 100644 index 0000000..f32ff2c --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Right.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb01f16512bbc152774ab2b82fd46abc29246ffcbd4c28e7d5687e57adda6963 +size 787 diff --git a/Assets/03_Models/Characters/Red/Character/Character_Right.png.meta b/Assets/03_Models/Characters/Red/Character/Character_Right.png.meta new file mode 100644 index 0000000..b69d3cd --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Right.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 003f01de30e310c458e027df6695ea75 +TextureImporter: + internalIDToNameTable: + - first: + 213: 4366376558412252299 + second: Character_Right_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_Right_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: b8441c7885c789c30800000000000000 + internalID: 4366376558412252299 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Right_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15e59d8dfff881c43a3eb9463a83daf6 + internalID: 352346790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Right_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac42a9f8f772c124697a48d0508dd209 + internalID: -139900346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Right_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd2c8c2da8211c84996ec46afe8f1c7c + internalID: -388774521 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: f9aad99f4cff55f40a23547816b6de66 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_Right_0: 4366376558412252299 + Character_Right_1: 352346790 + Character_Right_2: -139900346 + Character_Right_3: -388774521 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollDown.png b/Assets/03_Models/Characters/Red/Character/Character_RollDown.png new file mode 100644 index 0000000..2f8705a --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollDown.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77bc2ce5a5fddd885fc10e2b33c5aa80c6c42e9d508dbac46163d6ccae19ada +size 1184 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollDown.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollDown.png.meta new file mode 100644 index 0000000..0de23b4 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollDown.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 38305a8046ef69f40bc6de7de85bc39c +TextureImporter: + internalIDToNameTable: + - first: + 213: -4406142517737382987 + second: Character_RollDown_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollDown_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5bb948099bc3ad2c0800000000000000 + internalID: -4406142517737382987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDown_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 79b2b4388a15dc04cbf45244b320cafa + internalID: 961314404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDown_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f8b85bdd44d1d04f9c13722419d4f27 + internalID: 1983546441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDown_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 49e9b3b8300d55044ab3516a55ebfa2d + internalID: 876397606 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 1788d2e1b1512be42bf32ad3bd9bbc58 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollDown_0: -4406142517737382987 + Character_RollDown_1: 961314404 + Character_RollDown_2: 1983546441 + Character_RollDown_3: 876397606 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollDownLeft.png b/Assets/03_Models/Characters/Red/Character/Character_RollDownLeft.png new file mode 100644 index 0000000..4040f7c --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollDownLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d16fcb85d51d89de54aae7988e86de25200dbba29c2a5128dbae6ac6cc7a9547 +size 1307 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollDownLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollDownLeft.png.meta new file mode 100644 index 0000000..4794b54 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollDownLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: aca155a3a8b11e1439235d993c32a68f +TextureImporter: + internalIDToNameTable: + - first: + 213: -6629130001035418957 + second: Character_RollDownLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollDownLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 3b2266ef2699004a0800000000000000 + internalID: -6629130001035418957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDownLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b15f2bcd8eb846947910f8d1ac066d58 + internalID: -557708058 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDownLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 326ecac217eab44469ef04b5acf374a0 + internalID: -245263678 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDownLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2d30a948d6ba7464987be15812317c38 + internalID: -85286709 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 797ab2f9485f97a4aaba58120a7891c1 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollDownLeft_0: -6629130001035418957 + Character_RollDownLeft_1: -557708058 + Character_RollDownLeft_2: -245263678 + Character_RollDownLeft_3: -85286709 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollDownRight.png b/Assets/03_Models/Characters/Red/Character/Character_RollDownRight.png new file mode 100644 index 0000000..a476d4e --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollDownRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ab9079330749bdb5d3a26c8945b366615391f293ec29eac3abf0980c157c19 +size 1272 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollDownRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollDownRight.png.meta new file mode 100644 index 0000000..ba2bee3 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollDownRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: e32d461035bc06a4aa9778f261911113 +TextureImporter: + internalIDToNameTable: + - first: + 213: 1937442297791204690 + second: Character_RollDownRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollDownRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 25d49ac318d23ea10800000000000000 + internalID: 1937442297791204690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDownRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1b06374ab1002ee4aa92721e04041563 + internalID: -520136204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDownRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d699daf56f08df4e9b0f5e9c05bd67a + internalID: -60265218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollDownRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d5d9aabbdf5d5424993f4877ae208e2a + internalID: -1777191965 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 9f63cd1b8ea542d409b3eefe3190ef4c + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollDownRight_0: 1937442297791204690 + Character_RollDownRight_1: -520136204 + Character_RollDownRight_2: -60265218 + Character_RollDownRight_3: -1777191965 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollLeft.png b/Assets/03_Models/Characters/Red/Character/Character_RollLeft.png new file mode 100644 index 0000000..eb3734b --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7092f158a3a6d790f23745ae4515dafa8de8cb8a54eb69e04f48cb95368df3 +size 1114 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollLeft.png.meta new file mode 100644 index 0000000..418abe6 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: da0bc655d0820d24287929e3ca610104 +TextureImporter: + internalIDToNameTable: + - first: + 213: 9070195876825967319 + second: Character_RollLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 7daac61181fcfdd70800000000000000 + internalID: 9070195876825967319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba2547391664fb245bbaceaa99818582 + internalID: -320415362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ddd9a92d159c1c24fbb6204daa36fd9e + internalID: -1454596831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 18b61015326db9948bc67f17716dd528 + internalID: 1459142401 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 0fad2f53b2df84d4487eca28bccf31fb + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollLeft_0: 9070195876825967319 + Character_RollLeft_1: -320415362 + Character_RollLeft_2: -1454596831 + Character_RollLeft_3: 1459142401 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollRight.png b/Assets/03_Models/Characters/Red/Character/Character_RollRight.png new file mode 100644 index 0000000..e691739 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c230e45b5da5be4fddc2995069e7e5f1f4688bf00178068b42e4dd43e00ae92 +size 1076 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollRight.png.meta new file mode 100644 index 0000000..99e30b7 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: dc52b5769fdae374c9ae0c44f6697d9b +TextureImporter: + internalIDToNameTable: + - first: + 213: -8394412074353766083 + second: Character_RollRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d31d4e1a1be018b80800000000000000 + internalID: -8394412074353766083 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f05ad5f8a225f2e469569d78a0870d68 + internalID: -414847763 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 788beba9582d0a74ea7e8ea594876b0e + internalID: 164589441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f33456a514c653441bf70060eb146f73 + internalID: 447047809 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 0bea1039658b719449904f81fc61d7e8 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollRight_0: -8394412074353766083 + Character_RollRight_1: -414847763 + Character_RollRight_2: 164589441 + Character_RollRight_3: 447047809 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollUp.png b/Assets/03_Models/Characters/Red/Character/Character_RollUp.png new file mode 100644 index 0000000..3c1b01f --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollUp.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:704d48ecc2256eeb5654ca996ed1de4922d42b29e7794cb3dae60beb02d72f18 +size 1135 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollUp.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollUp.png.meta new file mode 100644 index 0000000..a5fe8e8 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollUp.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: ca60e2c70efaad6448555e9879658fa7 +TextureImporter: + internalIDToNameTable: + - first: + 213: -4793486297244473211 + second: Character_RollUp_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollUp_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 5886a011c9d1a7db0800000000000000 + internalID: -4793486297244473211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUp_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9bca10a4e1b2d94488c17de31191afdd + internalID: -472909606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUp_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63e89f209ca69394c8504d617219ea13 + internalID: -1062015492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUp_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c71b6385e6203e4d98ffc10127fca40 + internalID: 1501213803 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 1d271622a16668b4d9e1f8ec4632e7ae + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollUp_0: -4793486297244473211 + Character_RollUp_1: -472909606 + Character_RollUp_2: -1062015492 + Character_RollUp_3: 1501213803 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollUpLeft.png b/Assets/03_Models/Characters/Red/Character/Character_RollUpLeft.png new file mode 100644 index 0000000..a8a218d --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollUpLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b89857da094b1e08c2015341ce78efce2e6f878cb895a5b4122883dd2fb3ceb8 +size 1152 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollUpLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollUpLeft.png.meta new file mode 100644 index 0000000..c6bf2ae --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollUpLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: dd3e521eb7c520740a0890c27462c52a +TextureImporter: + internalIDToNameTable: + - first: + 213: 4496591250536788072 + second: Character_RollUpLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollUpLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 860ff5c1be9176e30800000000000000 + internalID: 4496591250536788072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUpLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38966720cca3ead41982aa64c949266b + internalID: -250989702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUpLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9087345c5c0d093498109066182e9126 + internalID: 1091737252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUpLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c242393490136c947ba49bba94369e3b + internalID: 2101312391 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 170f8f218f2db4c44a1fc8efeac69401 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollUpLeft_0: 4496591250536788072 + Character_RollUpLeft_1: -250989702 + Character_RollUpLeft_2: 1091737252 + Character_RollUpLeft_3: 2101312391 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollUpRight.png b/Assets/03_Models/Characters/Red/Character/Character_RollUpRight.png new file mode 100644 index 0000000..1eb916a --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollUpRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b723146410ba314acadbb25113791b9c415430a77df6c2cd26c8c699be4ec9c6 +size 1108 diff --git a/Assets/03_Models/Characters/Red/Character/Character_RollUpRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_RollUpRight.png.meta new file mode 100644 index 0000000..42f91d2 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_RollUpRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: d7ecda63cec28284d97a91fa651b572a +TextureImporter: + internalIDToNameTable: + - first: + 213: 1871622799916997001 + second: Character_RollUpRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_RollUpRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 989139e250759f910800000000000000 + internalID: 1871622799916997001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUpRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3d31f29eebd1db044aba15ef18f983a2 + internalID: -109368420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUpRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 997265da060468a4eb32ea0e60580cea + internalID: -736176427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_RollUpRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af555aa1f29d23244842296445d9d951 + internalID: 2035973389 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: e3bef2fed2b10e24d85642e64f25f06a + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_RollUpRight_0: 1871622799916997001 + Character_RollUpRight_1: -109368420 + Character_RollUpRight_2: -736176427 + Character_RollUpRight_3: 2035973389 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashDownLeft.png b/Assets/03_Models/Characters/Red/Character/Character_SlashDownLeft.png new file mode 100644 index 0000000..c134509 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashDownLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe3d212db88c2430db2cb3a57c7e00a4e913e1150fff65ceca30459826d290f +size 864 diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashDownLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_SlashDownLeft.png.meta new file mode 100644 index 0000000..6521c36 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashDownLeft.png.meta @@ -0,0 +1,289 @@ +fileFormatVersion: 2 +guid: a163608e96e6bcd4eb97b656ca2a64d3 +TextureImporter: + internalIDToNameTable: + - first: + 213: -3527426440161428920 + second: Character_SlashDownLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_SlashDownLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 84a7bde77501c0fc0800000000000000 + internalID: -3527426440161428920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 56b425cf7d298c747ad19e48b629bcbf + internalID: 479169134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff72994ae07286648af353b480d64b61 + internalID: -1847877323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9c8b9a3794b53fb49b81c03dd237e96b + internalID: -1705792420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownLeft_4 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 77c13eb8bd08ac941a6eaca281883080 + internalID: 11163749 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: cb66445cacbcf154a9ab8805a9227f19 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_SlashDownLeft_0: -3527426440161428920 + Character_SlashDownLeft_1: 479169134 + Character_SlashDownLeft_2: -1847877323 + Character_SlashDownLeft_3: -1705792420 + Character_SlashDownLeft_4: 11163749 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashDownRight.png b/Assets/03_Models/Characters/Red/Character/Character_SlashDownRight.png new file mode 100644 index 0000000..fee9da7 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashDownRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0be5dd711c56eadccef576ed13cc380e81170cdd6963b05f61fd91ced6c64b4 +size 881 diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashDownRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_SlashDownRight.png.meta new file mode 100644 index 0000000..8da5a3c --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashDownRight.png.meta @@ -0,0 +1,289 @@ +fileFormatVersion: 2 +guid: bee40fb31a0633141851be8b3b0f21d4 +TextureImporter: + internalIDToNameTable: + - first: + 213: -794231797426845082 + second: Character_SlashDownRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_SlashDownRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 66a8d0563625af4f0800000000000000 + internalID: -794231797426845082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87ffb8a01a2056b4898cff417718176c + internalID: 281737134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 28e79382521cd4648af556d574185135 + internalID: 1904991256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ee145fcb41bd8824e8c5272ed1b206dd + internalID: 5166745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashDownRight_4 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 293b651640bbb194e84915a15c942d3a + internalID: 1635237117 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 40970fdad9825864d8ebbf36c6227293 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_SlashDownRight_0: -794231797426845082 + Character_SlashDownRight_1: 281737134 + Character_SlashDownRight_2: 1904991256 + Character_SlashDownRight_3: 5166745 + Character_SlashDownRight_4: 1635237117 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashUpLeft.png b/Assets/03_Models/Characters/Red/Character/Character_SlashUpLeft.png new file mode 100644 index 0000000..60e41e5 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashUpLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da684376029a017cb394af9034b8c3190b52b331d11cc0bf75dd3ee9b5a6a88d +size 934 diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashUpLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_SlashUpLeft.png.meta new file mode 100644 index 0000000..78cd2c7 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashUpLeft.png.meta @@ -0,0 +1,289 @@ +fileFormatVersion: 2 +guid: 3c5120bcb9f5cfd44ae9b0033ff70209 +TextureImporter: + internalIDToNameTable: + - first: + 213: -1891966549544768212 + second: Character_SlashUpLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_SlashUpLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: c2d667f72726eb5e0800000000000000 + internalID: -1891966549544768212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d35cebbf83629de4584f3d5d97ca2da8 + internalID: 614435953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bbe32194e239ac64f86d7180c5903723 + internalID: -2098585290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 819ee1ccfa758d447a913138e1e8b760 + internalID: 1876555010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpLeft_4 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5bbfb5d7043796f4583f8a70b05a2dd2 + internalID: 1802202579 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 4b1f656a0e4a57a4ca7b056831d1dfcf + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_SlashUpLeft_0: -1891966549544768212 + Character_SlashUpLeft_1: 614435953 + Character_SlashUpLeft_2: -2098585290 + Character_SlashUpLeft_3: 1876555010 + Character_SlashUpLeft_4: 1802202579 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashUpRight.png b/Assets/03_Models/Characters/Red/Character/Character_SlashUpRight.png new file mode 100644 index 0000000..d579bfd --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashUpRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eacf9e828461a009a28738ec138ec78538e989e5954e9233d98d4e9c19cb60d4 +size 895 diff --git a/Assets/03_Models/Characters/Red/Character/Character_SlashUpRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_SlashUpRight.png.meta new file mode 100644 index 0000000..629f86d --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_SlashUpRight.png.meta @@ -0,0 +1,289 @@ +fileFormatVersion: 2 +guid: 752df679c2b8367418f812e742823fb8 +TextureImporter: + internalIDToNameTable: + - first: + 213: 3527565980006212420 + second: Character_SlashUpRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_SlashUpRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 443e508a19e64f030800000000000000 + internalID: 3527565980006212420 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c9d7a8f4e9e041f4995fecf66d8848a2 + internalID: -424635039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1098b1959487d5949b117b14aba299a7 + internalID: 1296101843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8137b170a51b3454883b86f2abb57775 + internalID: -1934058384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_SlashUpRight_4 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1324475a37731db429ea4c64f7314fda + internalID: -1547512533 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: c9a00a1ca70b5f14c8cda31cb5c98809 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_SlashUpRight_0: 3527565980006212420 + Character_SlashUpRight_1: -424635039 + Character_SlashUpRight_2: 1296101843 + Character_SlashUpRight_3: -1934058384 + Character_SlashUpRight_4: -1547512533 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_Up.png b/Assets/03_Models/Characters/Red/Character/Character_Up.png new file mode 100644 index 0000000..8d2bb88 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Up.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c9c0bf002e6ce46bcbd51f7fada9cf522fec1522ca761b5afaebcb98a05e953 +size 905 diff --git a/Assets/03_Models/Characters/Red/Character/Character_Up.png.meta b/Assets/03_Models/Characters/Red/Character/Character_Up.png.meta new file mode 100644 index 0000000..ee3a0d2 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_Up.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: d5b08a4c288d4f04aaf0343e68bc73f1 +TextureImporter: + internalIDToNameTable: + - first: + 213: 5068305268097238896 + second: Character_Up_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_Up_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 0774d2ec9cc365640800000000000000 + internalID: 5068305268097238896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Up_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1f066a058103b4d43afb93453754b50e + internalID: 414071849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Up_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7e30eb6371e51cb4d90ae8108516a9b7 + internalID: 1341356533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_Up_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a7484d82a23e0c646a47b6faf1966103 + internalID: -560177895 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 81b7f5e7d423d6a4ebfda69fcc1cf730 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_Up_0: 5068305268097238896 + Character_Up_1: 414071849 + Character_Up_2: 1341356533 + Character_Up_3: -560177895 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_UpLeft.png b/Assets/03_Models/Characters/Red/Character/Character_UpLeft.png new file mode 100644 index 0000000..e447d66 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_UpLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86d94c998ef19eab5627e2be29403c75d78eae6368fbdf0a4499ae252733a964 +size 818 diff --git a/Assets/03_Models/Characters/Red/Character/Character_UpLeft.png.meta b/Assets/03_Models/Characters/Red/Character/Character_UpLeft.png.meta new file mode 100644 index 0000000..b83e14f --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_UpLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 07903fffb64825448ac2ce2148796aa9 +TextureImporter: + internalIDToNameTable: + - first: + 213: 6528450528052623461 + second: Character_UpLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_UpLeft_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 568b9428a27b99a50800000000000000 + internalID: 6528450528052623461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_UpLeft_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a0d5c38825fa633408e3b18422c06e2e + internalID: -843582478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_UpLeft_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 47743f96c40f427479455b46b0dfe0fe + internalID: -1920177384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_UpLeft_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 180c1e27096d0d1459e69aa56d5a44c2 + internalID: -230261462 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 9e312f5a00156cd40a0c794d3788a7e8 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_UpLeft_0: 6528450528052623461 + Character_UpLeft_1: -843582478 + Character_UpLeft_2: -1920177384 + Character_UpLeft_3: -230261462 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Character/Character_UpRight.png b/Assets/03_Models/Characters/Red/Character/Character_UpRight.png new file mode 100644 index 0000000..10b05dd --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_UpRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:713d823ac474808cb993d3c00dac81cc0bdc1429d8322d93c3469e6d4c28572b +size 821 diff --git a/Assets/03_Models/Characters/Red/Character/Character_UpRight.png.meta b/Assets/03_Models/Characters/Red/Character/Character_UpRight.png.meta new file mode 100644 index 0000000..26e07e8 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Character/Character_UpRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: bd0bfba050d1e29429551d932a729346 +TextureImporter: + internalIDToNameTable: + - first: + 213: -2239716230562882166 + second: Character_UpRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Character_UpRight_0 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: a8d5f9f64fdeae0e0800000000000000 + internalID: -2239716230562882166 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_UpRight_1 + rect: + serializedVersion: 2 + x: 32 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cf5eedf079ae0064a99ebb2e7b17f0d6 + internalID: -26898186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_UpRight_2 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ec98817745dca2e40926c2764cafc907 + internalID: -454509850 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Character_UpRight_3 + rect: + serializedVersion: 2 + x: 96 + y: 0 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46d7f5449a69bb04aac715282db68c32 + internalID: -289573051 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: f180a1772e2fc4d4e8d68c38395ef2fe + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":4.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Character_UpRight_0: -2239716230562882166 + Character_UpRight_1: -26898186 + Character_UpRight_2: -454509850 + Character_UpRight_3: -289573051 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Weapon.meta b/Assets/03_Models/Characters/Red/Weapon.meta new file mode 100644 index 0000000..7ab3610 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc69aba31fd01e84c9f6d6b46145be4d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_DownLeft.png b/Assets/03_Models/Characters/Red/Weapon/Sword_DownLeft.png new file mode 100644 index 0000000..44e2bdf --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_DownLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c30e9fdd5c369dcca8d023c5c07f59ac04c83ba651667dee506606f89c621b0 +size 591 diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_DownLeft.png.meta b/Assets/03_Models/Characters/Red/Weapon/Sword_DownLeft.png.meta new file mode 100644 index 0000000..4064634 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_DownLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 999bd5edb3c6baa4e9c065d2b20b1d51 +TextureImporter: + internalIDToNameTable: + - first: + 213: -2142824480320328751 + second: Sword_DownLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 64 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Sword_DownLeft_0 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1dbee720d782342e0800000000000000 + internalID: -2142824480320328751 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_DownLeft_1 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 818ebb97b06556247b2395b93d9fbfed + internalID: 317373939 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_DownLeft_2 + rect: + serializedVersion: 2 + x: 192 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6bd9b6bab6aedfb41bae98551a74e179 + internalID: -1931335359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_DownLeft_3 + rect: + serializedVersion: 2 + x: 256 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfee8cf087fa35a42b75c8dbc6b56bef + internalID: -1828721921 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 7d856795e23df194c81af8a8e2d2667b + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":64.0,"y":64.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Sword_DownLeft_0: -2142824480320328751 + Sword_DownLeft_1: 317373939 + Sword_DownLeft_2: -1931335359 + Sword_DownLeft_3: -1828721921 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_DownRight.png b/Assets/03_Models/Characters/Red/Weapon/Sword_DownRight.png new file mode 100644 index 0000000..6e4e6ca --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_DownRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd4247fac41151e23fa036af3bb6859253cf68309ae75a9e8baaaf6dc571918 +size 477 diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_DownRight.png.meta b/Assets/03_Models/Characters/Red/Weapon/Sword_DownRight.png.meta new file mode 100644 index 0000000..7ee7a4e --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_DownRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: cabdc88076631734aab470e3b9a53872 +TextureImporter: + internalIDToNameTable: + - first: + 213: 2856535245279941732 + second: Sword_DownRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 64 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Sword_DownRight_0 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 4645b47cba374a720800000000000000 + internalID: 2856535245279941732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_DownRight_1 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 51f81d9945abae143a4280f1732393c6 + internalID: 719989901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_DownRight_2 + rect: + serializedVersion: 2 + x: 192 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 56203bb5b118f8f46a8be2cf106e748f + internalID: -2017814075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_DownRight_3 + rect: + serializedVersion: 2 + x: 256 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 82dc1054c92269643b41162e4addf96f + internalID: 2133557999 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 914b166c0242753429f3aa5c331bd489 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":64.0,"y":64.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Sword_DownRight_0: 2856535245279941732 + Sword_DownRight_1: 719989901 + Sword_DownRight_2: -2017814075 + Sword_DownRight_3: 2133557999 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_UpLeft.png b/Assets/03_Models/Characters/Red/Weapon/Sword_UpLeft.png new file mode 100644 index 0000000..db56fb6 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_UpLeft.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ec8b5cc78448c103a2a9a0afbda893230748ef982bacf34a23c733d9d8e272 +size 540 diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_UpLeft.png.meta b/Assets/03_Models/Characters/Red/Weapon/Sword_UpLeft.png.meta new file mode 100644 index 0000000..776c6d2 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_UpLeft.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: 13452aeea47888049b80fe325c595d0b +TextureImporter: + internalIDToNameTable: + - first: + 213: 1474592964514004401 + second: Sword_UpLeft_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 64 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Sword_UpLeft_0 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 1bdb52e0d7ec67410800000000000000 + internalID: 1474592964514004401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_UpLeft_1 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 50fcf3404230b76498b8af7a301cf37a + internalID: 644872843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_UpLeft_2 + rect: + serializedVersion: 2 + x: 192 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c6016e4a8abd8eb428bbacf656113213 + internalID: -1934979349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_UpLeft_3 + rect: + serializedVersion: 2 + x: 256 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4327f808224c7e3498443030e63cf28f + internalID: -1038432139 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 04306965397766f40b9e98314d00a57e + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":64.0,"y":64.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Sword_UpLeft_0: 1474592964514004401 + Sword_UpLeft_1: 644872843 + Sword_UpLeft_2: -1934979349 + Sword_UpLeft_3: -1038432139 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_UpRight.png b/Assets/03_Models/Characters/Red/Weapon/Sword_UpRight.png new file mode 100644 index 0000000..b1a463d --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_UpRight.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:552ca0eb8213ba0865cee20248e02fd6868d187953b28546fbda52f625fcded3 +size 580 diff --git a/Assets/03_Models/Characters/Red/Weapon/Sword_UpRight.png.meta b/Assets/03_Models/Characters/Red/Weapon/Sword_UpRight.png.meta new file mode 100644 index 0000000..ac03528 --- /dev/null +++ b/Assets/03_Models/Characters/Red/Weapon/Sword_UpRight.png.meta @@ -0,0 +1,266 @@ +fileFormatVersion: 2 +guid: aaefb85bf91b8d849a1cd126d073de56 +TextureImporter: + internalIDToNameTable: + - first: + 213: 5894810292097335965 + second: Sword_UpRight_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 64 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Sword_UpRight_0 + rect: + serializedVersion: 2 + x: 64 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: d9247c68ab29ec150800000000000000 + internalID: 5894810292097335965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_UpRight_1 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4718078a837bfe24a82d05c8f2af7aa3 + internalID: 1272279361 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_UpRight_2 + rect: + serializedVersion: 2 + x: 192 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 270f77920382ce742888f41a1657bc5c + internalID: -1561795567 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Sword_UpRight_3 + rect: + serializedVersion: 2 + x: 256 + y: 0 + width: 64 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 20602c3bd1ffaf649ae58a6503fb858e + internalID: 201452026 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 1706eefb229103a4bb3f6eb4d2696352 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":5.0,"y":1.0},"gridSpriteSize":{"x":64.0,"y":64.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":2,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Sword_UpRight_0: 5894810292097335965 + Sword_UpRight_1: 1272279361 + Sword_UpRight_2: -1561795567 + Sword_UpRight_3: 201452026 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps.meta b/Assets/03_Models/Maps.meta new file mode 100644 index 0000000..4ee120f --- /dev/null +++ b/Assets/03_Models/Maps.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f8fcc9b54db8d84788f6d7f18dd0519 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps/ForgottenMemories.meta b/Assets/03_Models/Maps/ForgottenMemories.meta new file mode 100644 index 0000000..37a49e9 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4023ee1709a734e4990453504a148b50 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps/ForgottenMemories/Props.png b/Assets/03_Models/Maps/ForgottenMemories/Props.png new file mode 100644 index 0000000..d722d9f --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/Props.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa776b955624e579aa0b171fda05b3b5bc259a85b6dcf6d4df1234b9ee1320ba +size 59130 diff --git a/Assets/03_Models/Maps/ForgottenMemories/Props.png.meta b/Assets/03_Models/Maps/ForgottenMemories/Props.png.meta new file mode 100644 index 0000000..a53993f --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/Props.png.meta @@ -0,0 +1,1324 @@ +fileFormatVersion: 2 +guid: 1932345c377c56f42834d164dec47b2b +TextureImporter: + internalIDToNameTable: + - first: + 213: 7265313343042191254 + second: Props_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Props_0 + rect: + serializedVersion: 2 + x: 2 + y: 884 + width: 74 + height: 136 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 69f7fe10ef393d460800000000000000 + internalID: 7265313343042191254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_1 + rect: + serializedVersion: 2 + x: 105 + y: 885 + width: 94 + height: 135 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61e0e178d1f3edf4bb5244aea9627f18 + internalID: 127425526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_2 + rect: + serializedVersion: 2 + x: 229 + y: 897 + width: 56 + height: 125 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c31cb4c42513b6045a45b390ada679bf + internalID: 258705245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_3 + rect: + serializedVersion: 2 + x: 298 + y: 898 + width: 48 + height: 122 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8e2eb7354c3ad17489aebc29f445785b + internalID: -614825861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_4 + rect: + serializedVersion: 2 + x: 357 + y: 775 + width: 183 + height: 231 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8e39c70d2a59c4b44a4e58cf385d7836 + internalID: 1431276429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_5 + rect: + serializedVersion: 2 + x: 576 + y: 928 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ea77f53a40c2d746aee174ed2bad2ce + internalID: -794017369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_6 + rect: + serializedVersion: 2 + x: 609 + y: 929 + width: 30 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 167e6af998a7d4c41a06cede1392df93 + internalID: 1036430080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_7 + rect: + serializedVersion: 2 + x: 647 + y: 928 + width: 54 + height: 45 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4186e6edbcc4ca04b82df8775c784e59 + internalID: 35261229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_8 + rect: + serializedVersion: 2 + x: 704 + y: 928 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd2871fe2ee2bd74fb6b6615c60ad3ee + internalID: 1484273996 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_9 + rect: + serializedVersion: 2 + x: 261 + y: 837 + width: 53 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e33eaa91a7979954da758b525354a398 + internalID: 1864347064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_10 + rect: + serializedVersion: 2 + x: 576 + y: 864 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd74b563fe058bb429045df428317324 + internalID: 1485060152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_11 + rect: + serializedVersion: 2 + x: 609 + y: 865 + width: 30 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: abf07f4702971784ab4b38c4c408a580 + internalID: 920649756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_12 + rect: + serializedVersion: 2 + x: 647 + y: 864 + width: 54 + height: 45 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6abfab412d87184d90748a01d28e4f5 + internalID: -2075108418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_13 + rect: + serializedVersion: 2 + x: 704 + y: 864 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4ca5916c1f15dbb4f9c403e3f3f5227e + internalID: -1447350279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_14 + rect: + serializedVersion: 2 + x: 35 + y: 836 + width: 26 + height: 25 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4f7b433ed3bebe34daba11cabe29ae42 + internalID: -108904093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_15 + rect: + serializedVersion: 2 + x: 98 + y: 835 + width: 28 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 26abb491317f72d4e97030c48d49e1e5 + internalID: 1459582487 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_16 + rect: + serializedVersion: 2 + x: 169 + y: 838 + width: 17 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 816c23138682f844caba01fd19617764 + internalID: -994163427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_17 + rect: + serializedVersion: 2 + x: 231 + y: 837 + width: 17 + height: 22 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a7964896c3cd8ac4ab416e6ddd1b4b8d + internalID: 1107727425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_18 + rect: + serializedVersion: 2 + x: 647 + y: 800 + width: 54 + height: 45 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c240c9e27219827419203a35cbe7c9d1 + internalID: 1378138698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_19 + rect: + serializedVersion: 2 + x: 576 + y: 800 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f4ed7a08aa250914fb20737b5af7abbb + internalID: 617942919 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_20 + rect: + serializedVersion: 2 + x: 609 + y: 801 + width: 30 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 82d531eeb028acd44b1f243315c80430 + internalID: -1498096346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_21 + rect: + serializedVersion: 2 + x: 704 + y: 800 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bcc69ead9bb40574fa3176942c6ef982 + internalID: 4394847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_22 + rect: + serializedVersion: 2 + x: 18 + y: 768 + width: 41 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb1496249da71624c80f0f2d82f2bc25 + internalID: -1549314341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_23 + rect: + serializedVersion: 2 + x: 66 + y: 768 + width: 30 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f31f5195e4259124d84547a0614ab096 + internalID: 1019944146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_24 + rect: + serializedVersion: 2 + x: 129 + y: 718 + width: 57 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 530a4f71232541f4da9bf6efbce0cee4 + internalID: -1031338423 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_25 + rect: + serializedVersion: 2 + x: 257 + y: 718 + width: 57 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cfd6d8e7de2746440870f510c914d21e + internalID: 383376085 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_26 + rect: + serializedVersion: 2 + x: 609 + y: 737 + width: 30 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f363e3e5a59fd3a4b8a0fad417a3f10c + internalID: 1973119799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_27 + rect: + serializedVersion: 2 + x: 647 + y: 736 + width: 54 + height: 45 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2844b5aff7808a4797fffd6722c0fe8 + internalID: -777415657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_28 + rect: + serializedVersion: 2 + x: 1 + y: 740 + width: 31 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 97e14612f8be1384ca0ca51505ec07e0 + internalID: -1179194010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_29 + rect: + serializedVersion: 2 + x: 36 + y: 737 + width: 11 + height: 12 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a4f5f9b410a1499449c9c27bada1108f + internalID: -316085491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_30 + rect: + serializedVersion: 2 + x: 45 + y: 746 + width: 16 + height: 13 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 52e4a771c12a1b14a9428dede6073d38 + internalID: -541512311 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_31 + rect: + serializedVersion: 2 + x: 73 + y: 741 + width: 15 + height: 14 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fcf8998b4c37deb4395a908cb7c891c2 + internalID: -1728392685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_32 + rect: + serializedVersion: 2 + x: 204 + y: 709 + width: 40 + height: 56 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f1ed5589ed7ef4429d8652c1395204f + internalID: 1874951417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_33 + rect: + serializedVersion: 2 + x: 332 + y: 709 + width: 40 + height: 56 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d06c321960795af409f7775f8b7a85e3 + internalID: 820258799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_34 + rect: + serializedVersion: 2 + x: 576 + y: 736 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ecbdc1dc326980a46a58c64734c5ad78 + internalID: 1403572936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_35 + rect: + serializedVersion: 2 + x: 704 + y: 736 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3d51d8da7964a0d4a9234f7c7a1ab408 + internalID: -1052647979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_36 + rect: + serializedVersion: 2 + x: 18 + y: 704 + width: 41 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c87b60909114de34a9a3caa8632fd3bd + internalID: 993756457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_37 + rect: + serializedVersion: 2 + x: 66 + y: 704 + width: 30 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 879d4496d90b3fb4b978fbb7345d3714 + internalID: 1545184593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_38 + rect: + serializedVersion: 2 + x: 609 + y: 673 + width: 30 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 68d22ee4324c41f4e960812193f341e7 + internalID: 371008402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_39 + rect: + serializedVersion: 2 + x: 647 + y: 672 + width: 54 + height: 45 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e493638471667304d98bb20c9d4f9109 + internalID: 1342586985 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_40 + rect: + serializedVersion: 2 + x: 1 + y: 676 + width: 31 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd4ea63eb674ac24ab107b52bd783779 + internalID: 1051876363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_41 + rect: + serializedVersion: 2 + x: 36 + y: 673 + width: 11 + height: 12 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2ff817027cc0f3747b2e9671f0a4a556 + internalID: -1822610807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_42 + rect: + serializedVersion: 2 + x: 45 + y: 682 + width: 16 + height: 13 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6f53711cdf883e34a8f53c6b51ea304f + internalID: 1047729244 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_43 + rect: + serializedVersion: 2 + x: 73 + y: 677 + width: 15 + height: 14 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5cf578449ea87c49955ee4770481da1 + internalID: -1100924784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_44 + rect: + serializedVersion: 2 + x: 129 + y: 622 + width: 57 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f3ca14d549d3ae743af7dac8544f5235 + internalID: -1170611779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_45 + rect: + serializedVersion: 2 + x: 257 + y: 622 + width: 57 + height: 71 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4561176e722cb7c4c84dbb7522f09c7e + internalID: -1072684243 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_46 + rect: + serializedVersion: 2 + x: 576 + y: 672 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25746499647169e419bc40ee61b90717 + internalID: -1507437153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_47 + rect: + serializedVersion: 2 + x: 704 + y: 672 + width: 32 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4bc5d3d63b121f04cab28a366f8f3522 + internalID: 1241820333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_48 + rect: + serializedVersion: 2 + x: 204 + y: 613 + width: 40 + height: 56 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7aea8fac0d2ce874099e0bd6562655c9 + internalID: -971548458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Props_49 + rect: + serializedVersion: 2 + x: 332 + y: 613 + width: 40 + height: 56 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d6142015c750cd5499e153a822dc46be + internalID: 365206762 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 072ca5480aa14bb4ca99d8c153c40aa4 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":0,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Props_0: 7265313343042191254 + Props_1: 127425526 + Props_10: 1485060152 + Props_11: 920649756 + Props_12: -2075108418 + Props_13: -1447350279 + Props_14: -108904093 + Props_15: 1459582487 + Props_16: -994163427 + Props_17: 1107727425 + Props_18: 1378138698 + Props_19: 617942919 + Props_2: 258705245 + Props_20: -1498096346 + Props_21: 4394847 + Props_22: -1549314341 + Props_23: 1019944146 + Props_24: -1031338423 + Props_25: 383376085 + Props_26: 1973119799 + Props_27: -777415657 + Props_28: -1179194010 + Props_29: -316085491 + Props_3: -614825861 + Props_30: -541512311 + Props_31: -1728392685 + Props_32: 1874951417 + Props_33: 820258799 + Props_34: 1403572936 + Props_35: -1052647979 + Props_36: 993756457 + Props_37: 1545184593 + Props_38: 371008402 + Props_39: 1342586985 + Props_4: 1431276429 + Props_40: 1051876363 + Props_41: -1822610807 + Props_42: 1047729244 + Props_43: -1100924784 + Props_44: -1170611779 + Props_45: -1072684243 + Props_46: -1507437153 + Props_47: 1241820333 + Props_48: -971548458 + Props_49: 365206762 + Props_5: -794017369 + Props_6: 1036430080 + Props_7: 35261229 + Props_8: 1484273996 + Props_9: 1864347064 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps/ForgottenMemories/TileSet.png b/Assets/03_Models/Maps/ForgottenMemories/TileSet.png new file mode 100644 index 0000000..851386a --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/TileSet.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:325b068faddaa881f344fabf4ef5f9789396807f17a31145d2056ff3a8606950 +size 256074 diff --git a/Assets/03_Models/Maps/ForgottenMemories/TileSet.png.meta b/Assets/03_Models/Maps/ForgottenMemories/TileSet.png.meta new file mode 100644 index 0000000..ea84557 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/TileSet.png.meta @@ -0,0 +1,28533 @@ +fileFormatVersion: 2 +guid: 5430ccebfe1465842ac83f7683f9092e +TextureImporter: + internalIDToNameTable: + - first: + 213: -8213782765776912250 + second: TileSet_0 + 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: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: TileSet_0 + rect: + serializedVersion: 2 + x: 0 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 68044afc718c20e80800000000000000 + internalID: -8213782765776912250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1 + rect: + serializedVersion: 2 + x: 32 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b243bfc01de17ed4b854a5e608e18671 + internalID: -2091980023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_2 + rect: + serializedVersion: 2 + x: 64 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 41d076cf72789744c9bbb913136ac655 + internalID: 808602542 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_3 + rect: + serializedVersion: 2 + x: 96 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9570e08a4110d9e488d40b0232869001 + internalID: 1034729842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_4 + rect: + serializedVersion: 2 + x: 128 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a87b551991f990d4ba713069de259040 + internalID: -1969391351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_5 + rect: + serializedVersion: 2 + x: 160 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 47cf0bbf78d196244b6ab6c24871353a + internalID: 345020307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_6 + rect: + serializedVersion: 2 + x: 192 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5113f7ec829a8e943b4ce83e0ed20f18 + internalID: -771129666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_7 + rect: + serializedVersion: 2 + x: 224 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 08437f8529229cf418cbf55920d09c1c + internalID: 1028756973 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_8 + rect: + serializedVersion: 2 + x: 256 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0ed2cc56be85a394d9ba44da6e5b6d60 + internalID: 1023129100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_9 + rect: + serializedVersion: 2 + x: 288 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 90a0bf53c4d6a69439409c0e467c9d1d + internalID: -1317182054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_10 + rect: + serializedVersion: 2 + x: 320 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2847497f1545d034199500fc74bd04f1 + internalID: -1637022591 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_11 + rect: + serializedVersion: 2 + x: 352 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7561af45a355c5d49989436a4a4758cd + internalID: -1973918448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_12 + rect: + serializedVersion: 2 + x: 384 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0e42163de963ab148bbc5fdd447d5769 + internalID: -11663998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_13 + rect: + serializedVersion: 2 + x: 416 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 56804a3c20f40a2458d37548a184bd98 + internalID: 672345152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_14 + rect: + serializedVersion: 2 + x: 448 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 821bee33e3dc418479e845a8a98a7257 + internalID: -22889969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_15 + rect: + serializedVersion: 2 + x: 480 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3579b960cdf3b8140a07bfb5c067b2b0 + internalID: -1893594737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_16 + rect: + serializedVersion: 2 + x: 512 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5dfa97785a6665a43b3b4eaeec3ed7e2 + internalID: -1711137627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_17 + rect: + serializedVersion: 2 + x: 544 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6dfeea9eac3d9554dbf146e0c9372208 + internalID: -1679529351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_18 + rect: + serializedVersion: 2 + x: 576 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd82a1ac31ab3524bbb36757963b0f84 + internalID: 306902444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_19 + rect: + serializedVersion: 2 + x: 608 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a6589959b0a8c849944208eb9b25323 + internalID: 690725602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_20 + rect: + serializedVersion: 2 + x: 640 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0dd964f7a6b6da48b4efaff339d4069 + internalID: 378923535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_21 + rect: + serializedVersion: 2 + x: 672 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 51bea8ebbb85f014687790647280dbdb + internalID: -1974037133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_22 + rect: + serializedVersion: 2 + x: 704 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 944513c83823b1b4687aa77a4b230a46 + internalID: -1869416980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_23 + rect: + serializedVersion: 2 + x: 736 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f012379c9c017304f839f587a8113ec5 + internalID: 2078236195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_24 + rect: + serializedVersion: 2 + x: 768 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9281b3678236ffb418692a543d7950af + internalID: -2069395093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_25 + rect: + serializedVersion: 2 + x: 800 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a6e7d09828ede6b46a62779c89c99073 + internalID: 464389270 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_26 + rect: + serializedVersion: 2 + x: 832 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 48472299d84910847b2785b53ae5f631 + internalID: 492131593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_27 + rect: + serializedVersion: 2 + x: 864 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c7791fed6cfae334fa3b27d31eff029c + internalID: 1478282920 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_28 + rect: + serializedVersion: 2 + x: 896 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0b7fb25eae4401949a470c001aacff8f + internalID: 756613790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_29 + rect: + serializedVersion: 2 + x: 928 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2ef72de28fde04d4392a7e79884356f7 + internalID: 1504914557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_30 + rect: + serializedVersion: 2 + x: 1024 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 01cfc45b3372a464081f58780fba505e + internalID: -614783829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_31 + rect: + serializedVersion: 2 + x: 1056 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2b837146be1f2fc4f9325d7daf4c7118 + internalID: 441543216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_32 + rect: + serializedVersion: 2 + x: 1088 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bfe7b02a714465d4d93ee1850353d669 + internalID: -332368863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_33 + rect: + serializedVersion: 2 + x: 1152 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c8e4f0f97d9cec4bb8555d8717a5a03 + internalID: 934303591 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_34 + rect: + serializedVersion: 2 + x: 1184 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 50115ab3c7895b24f97eccd3b2238697 + internalID: 1761075173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_35 + rect: + serializedVersion: 2 + x: 1216 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0bd3600d2ed9f8843aef4ab380f86d0b + internalID: 1408086333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_36 + rect: + serializedVersion: 2 + x: 1248 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eaf5f8727cd2f304dad32efedb91775a + internalID: -1558838387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_37 + rect: + serializedVersion: 2 + x: 1280 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b8d6fd2a649fae743a351f174147058b + internalID: 1608773898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_38 + rect: + serializedVersion: 2 + x: 1440 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 789d083f253623d44bbb3d038aa34bdf + internalID: 744791909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_39 + rect: + serializedVersion: 2 + x: 1472 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 05d79714c08ebc94596ee8d32867409c + internalID: -501495129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_40 + rect: + serializedVersion: 2 + x: 1504 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 150859663c8ffb84882a320ace9abdcc + internalID: 688914714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_41 + rect: + serializedVersion: 2 + x: 1536 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4b0b39be4ad80464399a2e2540e0f654 + internalID: 1518634099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_42 + rect: + serializedVersion: 2 + x: 1568 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 51bf914db3e2c0a46a2cc2acd7469c8c + internalID: -1318014903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_43 + rect: + serializedVersion: 2 + x: 1600 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: abc41a9af2f46bf42adeff6a6f66431c + internalID: 1191597225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_44 + rect: + serializedVersion: 2 + x: 1632 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e55ebe5f964f724aa34cf038b9054d2 + internalID: 1297063972 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_45 + rect: + serializedVersion: 2 + x: 1664 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9ff03347f54fbef43ae7f8995fb3315a + internalID: -970920152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_46 + rect: + serializedVersion: 2 + x: 1696 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 767743917925f344a8cd769943ffcd2d + internalID: -1272814326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_47 + rect: + serializedVersion: 2 + x: 1728 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e52fd06956a02f346bc85e04b5ded977 + internalID: 1903439206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_48 + rect: + serializedVersion: 2 + x: 1760 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e0d82eb21d4436448a4035638e285f9f + internalID: -1315279713 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_49 + rect: + serializedVersion: 2 + x: 1792 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ae6c1b8a761f8b8498c5ee5dfffe6109 + internalID: 403941079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_50 + rect: + serializedVersion: 2 + x: 1824 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62901501fab59ee46a133bd9bed8aa82 + internalID: 880789252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_51 + rect: + serializedVersion: 2 + x: 1856 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff71b2b6789689f49afc3fe5e3390f86 + internalID: 232506583 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_52 + rect: + serializedVersion: 2 + x: 1888 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b823bccc01e952b40b0fb7f6de77a6f8 + internalID: 795479210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_53 + rect: + serializedVersion: 2 + x: 1920 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3974e34c0389cc419816f9e6cf36203 + internalID: 591810075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_54 + rect: + serializedVersion: 2 + x: 1952 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb25a9e9653fb4341b6dde5ae628162a + internalID: 1672794281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_55 + rect: + serializedVersion: 2 + x: 1984 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 06fa1621449c32e4a8f76c9bad13661d + internalID: 1161709212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_56 + rect: + serializedVersion: 2 + x: 2016 + y: 2016 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 28198e7654aed314c810c70f83da23e7 + internalID: -895575445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_57 + rect: + serializedVersion: 2 + x: 0 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f33da323aaa595143a65d7905386f9e6 + internalID: -609577957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_58 + rect: + serializedVersion: 2 + x: 32 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 863ed7311fe2ce04c9506faff6b41d43 + internalID: -1660658742 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_59 + rect: + serializedVersion: 2 + x: 64 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7dff14ebe4355164c8346c98d88c670e + internalID: 1735855620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_60 + rect: + serializedVersion: 2 + x: 96 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6b228abc1598a1b47a5327862416a75a + internalID: 521289206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_61 + rect: + serializedVersion: 2 + x: 128 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 897c23c5241c8af4b9a7ecd492349a7c + internalID: -980643652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_62 + rect: + serializedVersion: 2 + x: 160 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 237fe36f72a23bb4698c758cbc6de971 + internalID: -1770452712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_63 + rect: + serializedVersion: 2 + x: 192 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fc2c13a62458bfd4dbcf32d5dd4bd12e + internalID: -2142568595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_64 + rect: + serializedVersion: 2 + x: 224 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 29cec9a303b166244b9a2897108dc469 + internalID: 1388364783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_65 + rect: + serializedVersion: 2 + x: 256 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 79227454fe1efbb49ade7a93ba10a786 + internalID: 61163666 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_66 + rect: + serializedVersion: 2 + x: 288 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 07da3b9d818c07244a1df1b697f7c1b9 + internalID: 1459420229 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_67 + rect: + serializedVersion: 2 + x: 320 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4c27e5d37e5d6594e87fee3de98c3730 + internalID: -556691269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_68 + rect: + serializedVersion: 2 + x: 352 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d8c53faecb747b740b674f9da8121f7b + internalID: -599313497 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_69 + rect: + serializedVersion: 2 + x: 384 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 59d0f10413a0cb945991a9909727976d + internalID: -304851384 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_70 + rect: + serializedVersion: 2 + x: 416 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34a55878af46f1441a61fbd10be1d444 + internalID: -2140536376 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_71 + rect: + serializedVersion: 2 + x: 448 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0ca6606143e1d2d44a8ab3371f14c4a4 + internalID: 42217777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_72 + rect: + serializedVersion: 2 + x: 480 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c61c10fbd9c87e14ca44d23d3b4db7d7 + internalID: 417988734 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_73 + rect: + serializedVersion: 2 + x: 512 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1c33841566333794c9ec8960146d000a + internalID: 1971329622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_74 + rect: + serializedVersion: 2 + x: 544 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9b545817a0ec2b74fbf63660e824598b + internalID: -749745694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_75 + rect: + serializedVersion: 2 + x: 576 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2841b93d67767e442a39a361c095e9c7 + internalID: 1195910346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_76 + rect: + serializedVersion: 2 + x: 608 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 81ddc8e2f2620874faa16a6aff72a46d + internalID: 1598002379 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_77 + rect: + serializedVersion: 2 + x: 640 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a82bcf791fd5f544e9314821c7b62d12 + internalID: 693198921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_78 + rect: + serializedVersion: 2 + x: 672 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b749b75634ebfa84db486afe5711844e + internalID: 1849728072 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_79 + rect: + serializedVersion: 2 + x: 704 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f2661480db193546b15039e27936d4a + internalID: -649555225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_80 + rect: + serializedVersion: 2 + x: 736 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1ccbc47fc58b3f54a9b6d581dafbd143 + internalID: 284577078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_81 + rect: + serializedVersion: 2 + x: 768 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0b4cf340da1984346bb1e50c80b73b77 + internalID: 46740683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_82 + rect: + serializedVersion: 2 + x: 800 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9052437e2aa741246a4636b713d81f2c + internalID: -1966276520 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_83 + rect: + serializedVersion: 2 + x: 832 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cc89710e50bf63942b97426c177dcb95 + internalID: 1774512314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_84 + rect: + serializedVersion: 2 + x: 864 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a5d2c280d4a57e44ab46fe4be9efcfd5 + internalID: 1248685899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_85 + rect: + serializedVersion: 2 + x: 896 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4138b12df4d02ab43ac7c31a6c7e1936 + internalID: -518502598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_86 + rect: + serializedVersion: 2 + x: 928 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c514f9a6d29dc449b00c7f3a1a89871 + internalID: -1628924112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_87 + rect: + serializedVersion: 2 + x: 992 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1716d12805e104c4188f0ef90a9c28dc + internalID: 1697749064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_88 + rect: + serializedVersion: 2 + x: 1024 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 074ee3bd3a8086f418d1e66f11e3a335 + internalID: 1670725231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_89 + rect: + serializedVersion: 2 + x: 1056 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c224b53ac3db40c42a947e1d0f577a1d + internalID: -892484406 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_90 + rect: + serializedVersion: 2 + x: 1088 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 83cce86a0f89eb94cb3be599894a1502 + internalID: 318696124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_91 + rect: + serializedVersion: 2 + x: 1120 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f205b926e25ce4f40b1830a61eb09f17 + internalID: -1587880220 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_92 + rect: + serializedVersion: 2 + x: 1152 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d31430fc57d6f47498bae0cbba03b296 + internalID: 505804250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_93 + rect: + serializedVersion: 2 + x: 1184 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1cdc86e99c8af954f9a40c9a9ab7ee94 + internalID: 166090502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_94 + rect: + serializedVersion: 2 + x: 1216 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4af2a46cb46a53142a789807cef23852 + internalID: 464863633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_95 + rect: + serializedVersion: 2 + x: 1248 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: feb0946dadd142a4d9969b17541a2a1c + internalID: -1923256931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_96 + rect: + serializedVersion: 2 + x: 1280 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25ded19e829e1b1438394f91d31e19bf + internalID: -198470280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_97 + rect: + serializedVersion: 2 + x: 1440 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 633653528c52aba448f69b6c1d49c501 + internalID: -1460477981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_98 + rect: + serializedVersion: 2 + x: 1472 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2b9a9d0843b5a54da17b750b41b55dd + internalID: 344918654 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_99 + rect: + serializedVersion: 2 + x: 1504 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1e45b0f62b5d0e047aee400161e5b376 + internalID: 1746600562 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_100 + rect: + serializedVersion: 2 + x: 1536 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0c826c5dcd4f8fe438e951bd18476418 + internalID: 2115995682 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_101 + rect: + serializedVersion: 2 + x: 1568 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5df48fd9aa0364b4bacc295dc9f4cca1 + internalID: -1148682216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_102 + rect: + serializedVersion: 2 + x: 1600 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d42ba7ec6318c0348ac9d00f93f948d7 + internalID: 396318470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_103 + rect: + serializedVersion: 2 + x: 1632 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6e8664ac5abfa944198c6d8998879147 + internalID: 1496244623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_104 + rect: + serializedVersion: 2 + x: 1664 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 764bdc9e10b6f0e4ca3f62caf340cc26 + internalID: 468218745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_105 + rect: + serializedVersion: 2 + x: 1696 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8b6c2e39c5b74334fa413d718c5c15ef + internalID: -533934185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_106 + rect: + serializedVersion: 2 + x: 1728 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 442aeade71895eb409210fa23a089388 + internalID: -687463160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_107 + rect: + serializedVersion: 2 + x: 1760 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1218586345c372d40a377c540987880c + internalID: 1825280849 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_108 + rect: + serializedVersion: 2 + x: 1792 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 676abc9705317eb4fb45cadf4411273c + internalID: 1075392401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_109 + rect: + serializedVersion: 2 + x: 1824 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 05047214d0150cc44a7fe496e9f05038 + internalID: -1537153625 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_110 + rect: + serializedVersion: 2 + x: 1856 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a02fef995ecf95b498a983722182cd47 + internalID: -1424443496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_111 + rect: + serializedVersion: 2 + x: 1888 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a1a96236d629cc4dab5d88fa3cbf06e + internalID: 590413322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_112 + rect: + serializedVersion: 2 + x: 1920 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eacc33d648ffb9d4f8313b6ff73b20df + internalID: -680851810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_113 + rect: + serializedVersion: 2 + x: 1952 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0c76991877ec24c4c9a0ccf69ef722a5 + internalID: -1775194622 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_114 + rect: + serializedVersion: 2 + x: 1984 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 16b2a2d00a7bf2048af64431980aae55 + internalID: 1344572484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_115 + rect: + serializedVersion: 2 + x: 2016 + y: 1984 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d56562b9f88c504c925f5af683372b0 + internalID: 713485235 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_116 + rect: + serializedVersion: 2 + x: 0 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: effc1a81f7e3a1d4f82fd4daa5d7a8a4 + internalID: 1648002840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_117 + rect: + serializedVersion: 2 + x: 32 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5d3b50a7cf32b44db572d1c4902c4f8 + internalID: -1871665692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_118 + rect: + serializedVersion: 2 + x: 64 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2fb081b37c3fd60409d5a85d4bbccc0e + internalID: -1225933359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_119 + rect: + serializedVersion: 2 + x: 96 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b55a98166203552418b46c595009eb12 + internalID: 1415029393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_120 + rect: + serializedVersion: 2 + x: 128 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d1dbe4cd4fc343f4c8ff4d19daa51689 + internalID: 776918860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_121 + rect: + serializedVersion: 2 + x: 160 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e1afaa604c32ac14db27a5be06c4a28f + internalID: -225258149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_122 + rect: + serializedVersion: 2 + x: 192 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cd24d422a1de27048826777633220198 + internalID: 683439245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_123 + rect: + serializedVersion: 2 + x: 224 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0bbd717a406e3df49bfec04859d6b16a + internalID: 763755308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_124 + rect: + serializedVersion: 2 + x: 256 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d47949042064ca242b737a81cd570d48 + internalID: 111490021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_125 + rect: + serializedVersion: 2 + x: 288 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 046552ef0ef285f4f8bd95fa06dfd762 + internalID: -1218077437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_126 + rect: + serializedVersion: 2 + x: 320 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ede23e33a99fd2745ac4e61052ea51d6 + internalID: 236641872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_127 + rect: + serializedVersion: 2 + x: 352 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c012b5500e3d23e41b35ebb7c73df693 + internalID: -942933979 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_128 + rect: + serializedVersion: 2 + x: 384 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d9efbf9c827df7841972e3b7d91d2b7d + internalID: -248264959 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_129 + rect: + serializedVersion: 2 + x: 416 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cc67ae5d4af6ed3469fb0651ff38718d + internalID: 2074191945 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_130 + rect: + serializedVersion: 2 + x: 448 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e68681f6509fc95489ca229d92bd780d + internalID: 1686481162 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_131 + rect: + serializedVersion: 2 + x: 480 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e244ef7e71b9beb45b374de587648ad1 + internalID: -62192800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_132 + rect: + serializedVersion: 2 + x: 512 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af4ca4804d4bc304aaecbef367a9971b + internalID: -424083006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_133 + rect: + serializedVersion: 2 + x: 544 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2b63ae6aea19a1b44a32e657c730553d + internalID: 170099020 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_134 + rect: + serializedVersion: 2 + x: 576 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d91b88d3c7b96041a180cc2c6d12bca + internalID: -776125353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_135 + rect: + serializedVersion: 2 + x: 608 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0eef93b56190c24e9d2e6b28cfc027b + internalID: 604128772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_136 + rect: + serializedVersion: 2 + x: 640 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da3824590906b874697f181a5193e12a + internalID: 1479046242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_137 + rect: + serializedVersion: 2 + x: 672 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11cee0fbe0cec4b498ae1d30b0a0a875 + internalID: 1036145197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_138 + rect: + serializedVersion: 2 + x: 704 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7fc5e877b5cfe5f4b8ddf942319d711c + internalID: -851756212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_139 + rect: + serializedVersion: 2 + x: 736 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55fd0502bad838d448c7ca038eb429a2 + internalID: -480120362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_140 + rect: + serializedVersion: 2 + x: 768 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8a256eed1658e794f9a9355f6c2d2d77 + internalID: -51674748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_141 + rect: + serializedVersion: 2 + x: 800 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1412448493019544e85566f08a9f43cb + internalID: -1060573878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_142 + rect: + serializedVersion: 2 + x: 832 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c29333233ffd29948b991ac90f84f543 + internalID: 648922895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_143 + rect: + serializedVersion: 2 + x: 864 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8655296c184fbb7418392fc5898e76a3 + internalID: -912325060 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_144 + rect: + serializedVersion: 2 + x: 896 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 89c8cec3785375340b0bd78b99ddd080 + internalID: 1174797886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_145 + rect: + serializedVersion: 2 + x: 928 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 98782368b2cc04a48aa0080b266e2e0e + internalID: -2007108876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_146 + rect: + serializedVersion: 2 + x: 992 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e61f5e05157361d42805bf094eb661d0 + internalID: -984989407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_147 + rect: + serializedVersion: 2 + x: 1024 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8458ba13b2ace474ca54e8be514cb22e + internalID: 1495002010 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_148 + rect: + serializedVersion: 2 + x: 1056 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3273e374fd319d4a849c61c5d3e6c3a + internalID: 365972031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_149 + rect: + serializedVersion: 2 + x: 1088 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3650eec2adcd59946bf8437de115522c + internalID: 1679207389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_150 + rect: + serializedVersion: 2 + x: 1120 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: aafaae801fb581f4f980cad8dd903eba + internalID: 2007803605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_151 + rect: + serializedVersion: 2 + x: 1152 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a4009a4dcd2ae144e80845fe9d4b5dcf + internalID: -751951 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_152 + rect: + serializedVersion: 2 + x: 1184 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f4badc0a61fac594598bfa6004770da0 + internalID: 730727156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_153 + rect: + serializedVersion: 2 + x: 1248 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d1fcad1fbbc439a40a94b57b5729bfb2 + internalID: 954353095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_154 + rect: + serializedVersion: 2 + x: 1280 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f8702414491afd747ba6ffc38d6ce113 + internalID: 1199537524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_155 + rect: + serializedVersion: 2 + x: 1440 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 52d38df55bf14314b941e275e600b770 + internalID: 698348605 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_156 + rect: + serializedVersion: 2 + x: 1472 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6922564284120f438094a8fcd67ee7c + internalID: 766873566 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_157 + rect: + serializedVersion: 2 + x: 1504 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1035bfea2b7d4644bb6b20bd54995c4 + internalID: 1163182255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_158 + rect: + serializedVersion: 2 + x: 1536 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 30cf6b2adfe0dd94082a718685782107 + internalID: -1406732878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_159 + rect: + serializedVersion: 2 + x: 1568 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7dc70689d7e127945bf51d6250dac6b0 + internalID: -371823062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_160 + rect: + serializedVersion: 2 + x: 1600 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fdc2b74442186a94ab648e9d240956f3 + internalID: 1180238655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_161 + rect: + serializedVersion: 2 + x: 1632 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11b1d7666f4a4f944a16c99d8753363f + internalID: -1521669129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_162 + rect: + serializedVersion: 2 + x: 1664 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba186f83c86286b479c449574200a93d + internalID: -1203889100 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_163 + rect: + serializedVersion: 2 + x: 1696 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e7fc8d7ff882ed44813e34ab7e3d018 + internalID: -1204660457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_164 + rect: + serializedVersion: 2 + x: 1728 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 80408aae191efd54490ee907858ecdfa + internalID: -1806893787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_165 + rect: + serializedVersion: 2 + x: 1760 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5f7f542bf36b1804fa52230525938a3c + internalID: 299133911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_166 + rect: + serializedVersion: 2 + x: 1792 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8eeb457220e39c84a905c0d60639e5fb + internalID: -1429938792 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_167 + rect: + serializedVersion: 2 + x: 1824 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8ce2ccfbf30967243959261271191d23 + internalID: -870172209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_168 + rect: + serializedVersion: 2 + x: 1856 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f131ec769eac9cf4b97352aa9ab5f7e9 + internalID: -862427844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_169 + rect: + serializedVersion: 2 + x: 1888 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8a881b4a56e5f42469d24a5b517748dd + internalID: -1994783994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_170 + rect: + serializedVersion: 2 + x: 1920 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5ac81a58ba1e28045b67d92e0c8671e5 + internalID: 794856011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_171 + rect: + serializedVersion: 2 + x: 1952 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3c88df29854f74743bd081e44a58a0b4 + internalID: -532063324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_172 + rect: + serializedVersion: 2 + x: 1984 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3b98a25744dd92a4cb679916e80bd171 + internalID: 1934162689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_173 + rect: + serializedVersion: 2 + x: 2016 + y: 1952 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d29a567d71b9d4b45bb261d87d91ac2f + internalID: -1629505792 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_174 + rect: + serializedVersion: 2 + x: 0 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9b1f50dbe2cacfd41a915ecddf6fbad4 + internalID: 167059563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_175 + rect: + serializedVersion: 2 + x: 32 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eca06e68e1fa109479124eb53d8944e8 + internalID: 1750200064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_176 + rect: + serializedVersion: 2 + x: 64 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6033d0efa2bcde94c86518d134337e8f + internalID: 2128979195 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_177 + rect: + serializedVersion: 2 + x: 96 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a712546944a13f943ad7f324eca05b27 + internalID: -1646926345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_178 + rect: + serializedVersion: 2 + x: 128 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f859f15ca2f575246ba5e3a452a9298c + internalID: -1483966942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_179 + rect: + serializedVersion: 2 + x: 160 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a6462e0a3585907468d9d26f35cc08d6 + internalID: -659115796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_180 + rect: + serializedVersion: 2 + x: 192 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6785ab54cda9dd64487483620aa9f557 + internalID: 244771206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_181 + rect: + serializedVersion: 2 + x: 224 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd47529395cfe834a85fbc2222bb076d + internalID: -2092798826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_182 + rect: + serializedVersion: 2 + x: 256 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d74b75e9b2ebc6f42aaec9adbc1835a2 + internalID: -230018557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_183 + rect: + serializedVersion: 2 + x: 288 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 899fb05602d287244a6d2fc4ab4cd262 + internalID: 205230550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_184 + rect: + serializedVersion: 2 + x: 320 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 19b0aa4f95eef8d41beef4dcc093d78f + internalID: -879367219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_185 + rect: + serializedVersion: 2 + x: 352 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b139524ff8788254b8a775ccb51cf577 + internalID: -1184114684 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_186 + rect: + serializedVersion: 2 + x: 384 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 27c0e2697dc84a24ba92b298c76c0e43 + internalID: -998783402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_187 + rect: + serializedVersion: 2 + x: 416 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2a3be71414874148acd028c67c0ed9c + internalID: -1248432042 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_188 + rect: + serializedVersion: 2 + x: 448 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1ca7efd3c14ee0d43bba3dd7956d53ec + internalID: -367777265 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_189 + rect: + serializedVersion: 2 + x: 480 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 333f52e14ccacb04ab903300a8d0dd35 + internalID: 889132835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_190 + rect: + serializedVersion: 2 + x: 512 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d8e80c2f36f1b044ca7933a900d16521 + internalID: -1141310186 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_191 + rect: + serializedVersion: 2 + x: 544 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3624f1306c38ec84fbf8ce24fd422359 + internalID: -466605291 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_192 + rect: + serializedVersion: 2 + x: 576 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f32bba40af7020946a51a711fc41ac06 + internalID: 1694330680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_193 + rect: + serializedVersion: 2 + x: 608 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e4d731ac96f511a40acd91d1a5b5742f + internalID: 382706765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_194 + rect: + serializedVersion: 2 + x: 640 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8e8945467d530224eb372ea0d8fa13a2 + internalID: 129078980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_195 + rect: + serializedVersion: 2 + x: 672 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b496cbc4825f3a24c9282bc294ea7a85 + internalID: -386400462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_196 + rect: + serializedVersion: 2 + x: 704 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 789563671b389d845bc02bceca58f5eb + internalID: -1413852089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_197 + rect: + serializedVersion: 2 + x: 736 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fe51edf34807dd647a024141a32ea2d1 + internalID: 1250627094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_198 + rect: + serializedVersion: 2 + x: 768 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b3bd132be8830ae4ea50d5223d7eb331 + internalID: 773994660 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_199 + rect: + serializedVersion: 2 + x: 800 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cbacc4d18bf0d4a40aa8b39ee1cf12fb + internalID: -1580260822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_200 + rect: + serializedVersion: 2 + x: 832 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 76c96958fbd406049bf43555454d7206 + internalID: -2066076163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_201 + rect: + serializedVersion: 2 + x: 864 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21214e80f92456644b43c188bb333017 + internalID: 1311438394 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_202 + rect: + serializedVersion: 2 + x: 896 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd2ddef10d1455d46bf1da055fe9fe36 + internalID: 1985140594 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_203 + rect: + serializedVersion: 2 + x: 928 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6981fab2efa70e549a13d84181e3920f + internalID: 470360621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_204 + rect: + serializedVersion: 2 + x: 992 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 41425ba705cada447bc57a6d01597a93 + internalID: 1665890503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_205 + rect: + serializedVersion: 2 + x: 1024 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a198e03f443f4ef4ead8c1ccd8afe407 + internalID: 1404156797 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_206 + rect: + serializedVersion: 2 + x: 1056 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0e95f836f5aa558488bb99705eb945da + internalID: 845547674 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_207 + rect: + serializedVersion: 2 + x: 1088 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 525bdf11dd3625649bd29f7f6a1d2a69 + internalID: 312005271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_208 + rect: + serializedVersion: 2 + x: 1120 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fa7e5cc233393644494f361b6ce9c950 + internalID: 507454322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_209 + rect: + serializedVersion: 2 + x: 1152 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e277bde7fd87c2148a4d7665a79d67db + internalID: 1013598659 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_210 + rect: + serializedVersion: 2 + x: 1184 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 114de053bd765db4ab087f0648bcfeb3 + internalID: -1336304544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_211 + rect: + serializedVersion: 2 + x: 1216 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fac802717b064144e85ed990faf92180 + internalID: 106799981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_212 + rect: + serializedVersion: 2 + x: 1248 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 615d5275c5cff42488f4b72f6b15156c + internalID: 2009408028 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_213 + rect: + serializedVersion: 2 + x: 1280 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e0fa491a60429a42b6abde891baeddb + internalID: -676061210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_214 + rect: + serializedVersion: 2 + x: 1440 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0cbb611179cdd342adfeb0733763e4a + internalID: 817858247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_215 + rect: + serializedVersion: 2 + x: 1472 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 035e2e261e15d3d46bd87cc2eefb4f1a + internalID: -1197979903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_216 + rect: + serializedVersion: 2 + x: 1504 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ffc1fc26cf3c00f4aae1ceb1d1c9c24a + internalID: -1446794808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_217 + rect: + serializedVersion: 2 + x: 1536 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7304ac9aca52f694eb867e2db50a15d6 + internalID: -576302054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_218 + rect: + serializedVersion: 2 + x: 1568 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e86b36e8401b1145902104ff96b56d2 + internalID: -901986593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_219 + rect: + serializedVersion: 2 + x: 1600 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9eb6c794059cad74d9dc1b14759259e0 + internalID: 832637691 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_220 + rect: + serializedVersion: 2 + x: 1632 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d430d38c45a4f446a86357b3b557884 + internalID: -151298080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_221 + rect: + serializedVersion: 2 + x: 1664 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2562d1f5d18c79244bd8431e7f8632e7 + internalID: 1239016068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_222 + rect: + serializedVersion: 2 + x: 1696 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 26e279018acc34348acb6717097abb9c + internalID: -1524875766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_223 + rect: + serializedVersion: 2 + x: 1728 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f681493dc51efd049932eea82ed195a6 + internalID: -678228096 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_224 + rect: + serializedVersion: 2 + x: 1760 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2a3afa58395224f4aa99b22217c1a77d + internalID: -1045939134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_225 + rect: + serializedVersion: 2 + x: 1792 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2ed2d874a6db6af42b6d18f378c33b7b + internalID: 1861590909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_226 + rect: + serializedVersion: 2 + x: 1824 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 35a1fbd1811d42c4188353191d5cddf3 + internalID: -719629909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_227 + rect: + serializedVersion: 2 + x: 1856 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 487ddaa7d8484b04391e508809873bcb + internalID: 2024754158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_228 + rect: + serializedVersion: 2 + x: 1888 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0259a591e9d65634eb1bb3e78a934386 + internalID: -1533408240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_229 + rect: + serializedVersion: 2 + x: 1920 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af98da89be3f676419311fd54664f8e9 + internalID: -1999527456 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_230 + rect: + serializedVersion: 2 + x: 1952 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eda871d9b5d56104e9f40ae26b97ab56 + internalID: 1558789645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_231 + rect: + serializedVersion: 2 + x: 1984 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b7c71d38fbfc1464180a624ef9b72d3f + internalID: -1048605038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_232 + rect: + serializedVersion: 2 + x: 2016 + y: 1920 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3ccce82ef9ded24489f95ff42b58c4cd + internalID: -1390095950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_233 + rect: + serializedVersion: 2 + x: 0 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2185887e3ef02664982116d407068088 + internalID: 517427004 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_234 + rect: + serializedVersion: 2 + x: 32 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34f3a6e20e29529419283b756a72e9eb + internalID: 1691616612 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_235 + rect: + serializedVersion: 2 + x: 64 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b693e80a77c6a1e4eb6b4447e572716f + internalID: 1248086800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_236 + rect: + serializedVersion: 2 + x: 96 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 02530d2ad42dcb44fa6c4fde959075d4 + internalID: -310479177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_237 + rect: + serializedVersion: 2 + x: 128 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 14981bd7b7f845c4a832e90251508d75 + internalID: -288672975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_238 + rect: + serializedVersion: 2 + x: 160 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2c394f44c4aecfa4799e1a24b6267024 + internalID: -1973644386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_239 + rect: + serializedVersion: 2 + x: 192 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11fb9ef1cd131184a8b85781415019d0 + internalID: -1341234865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_240 + rect: + serializedVersion: 2 + x: 224 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6f42b8fe42f9bee439fbec9919082ce7 + internalID: -1298585828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_241 + rect: + serializedVersion: 2 + x: 256 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 88d0ddf41911c2d42af4a865412950f9 + internalID: -169204017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_242 + rect: + serializedVersion: 2 + x: 288 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3f5cfd997bee71247ad216fcbf3b9d1b + internalID: 15133664 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_243 + rect: + serializedVersion: 2 + x: 320 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 211b3b1a33743844a8d30927ff22fc7d + internalID: -981942340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_244 + rect: + serializedVersion: 2 + x: 352 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af6036f659f74a54ab7adb05df8b607e + internalID: 901080240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_245 + rect: + serializedVersion: 2 + x: 384 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 09f92b10f93a4304c86e3b687bd2ff87 + internalID: -111142796 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_246 + rect: + serializedVersion: 2 + x: 416 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cf3200b5310a17247bd8291452b21910 + internalID: 1166284081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_247 + rect: + serializedVersion: 2 + x: 448 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3c022a09a0b9cd54d8ed5b66a2b509b5 + internalID: -2099479650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_248 + rect: + serializedVersion: 2 + x: 480 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a5502fbe02194354399daf2347ed61da + internalID: -1543229647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_249 + rect: + serializedVersion: 2 + x: 512 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dbb9fad2f5b674d42a612b31d615d730 + internalID: 115497041 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_250 + rect: + serializedVersion: 2 + x: 544 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 121656f07cc24fd4a8eba465bf94f4bb + internalID: -601280333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_251 + rect: + serializedVersion: 2 + x: 576 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 10b594a5f84e51147a697184a91b70f4 + internalID: 1950819203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_252 + rect: + serializedVersion: 2 + x: 608 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 616fa7bcd0486d94384036ae105310c2 + internalID: 112287333 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_253 + rect: + serializedVersion: 2 + x: 640 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eed89709f8a922f4cafe8d0584a0284e + internalID: 1319831837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_254 + rect: + serializedVersion: 2 + x: 672 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 71263c048c848d9429f41266543d6565 + internalID: 589910740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_255 + rect: + serializedVersion: 2 + x: 704 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23b15dcb7c931e34382f84ce5c4f1b6c + internalID: 1547036711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_256 + rect: + serializedVersion: 2 + x: 736 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb5df34723a34944b9947219998e3862 + internalID: 1307042698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_257 + rect: + serializedVersion: 2 + x: 768 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 879db2830a10e4f4db194d0140f847b7 + internalID: 387613221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_258 + rect: + serializedVersion: 2 + x: 800 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7efc3dd9ef7cbd448899bc28b5975bfa + internalID: 1379560110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_259 + rect: + serializedVersion: 2 + x: 832 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ee054b7ebde97234cae25deaa8b76b10 + internalID: -632051061 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_260 + rect: + serializedVersion: 2 + x: 864 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 99807112c7a29de4b9563dcdaa197b27 + internalID: -662548916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_261 + rect: + serializedVersion: 2 + x: 896 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bcdb11a0a451a5c4f82bcb3d1934b440 + internalID: 606279399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_262 + rect: + serializedVersion: 2 + x: 928 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25c4c8407c51e6b46b8cb5b873ff43dc + internalID: -114207356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_263 + rect: + serializedVersion: 2 + x: 1024 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 817ac9824a3b0384ebb1b58321ccf35c + internalID: -565536200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_264 + rect: + serializedVersion: 2 + x: 1056 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f25395186642d544c80c09c479ab7f46 + internalID: -1079287170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_265 + rect: + serializedVersion: 2 + x: 1088 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 18a70ec7b3e86f342a67fd26f7e8cb0c + internalID: -309561837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_266 + rect: + serializedVersion: 2 + x: 1152 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 502fa70f2f65aff4e851a8fb6b63904a + internalID: 2114164467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_267 + rect: + serializedVersion: 2 + x: 1184 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d828253f58f8fc54e9e9742c5a57280c + internalID: 1184268703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_268 + rect: + serializedVersion: 2 + x: 1216 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dafbd34bdc43b1144a4c3381cb697e42 + internalID: -1359561364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_269 + rect: + serializedVersion: 2 + x: 1248 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: abb66e3ec28b9084faa157af87f7abde + internalID: -2026090579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_270 + rect: + serializedVersion: 2 + x: 1280 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2a2431c32fbbe64ab63bedd2d73c893 + internalID: 1725504199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_271 + rect: + serializedVersion: 2 + x: 1344 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d52160fcb5fbd42429155bdcc7263229 + internalID: -1718963148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_272 + rect: + serializedVersion: 2 + x: 1376 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab23e0dec7063fa4da76c30f877b8af0 + internalID: -389402969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_273 + rect: + serializedVersion: 2 + x: 1408 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 52bb5a8d0cee24b4d87a1a9673d0e8fe + internalID: 210496663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_274 + rect: + serializedVersion: 2 + x: 1824 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0130b0a64cfc2f46b89bf5e76d80f92 + internalID: -200069396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_275 + rect: + serializedVersion: 2 + x: 1856 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e818afb092dae144b951813f5361c67f + internalID: 2044221917 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_276 + rect: + serializedVersion: 2 + x: 1888 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 795a1cc4205fc014fab4eb9c9c03b10c + internalID: 1529192251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_277 + rect: + serializedVersion: 2 + x: 1920 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ee56b9fae21a7b64da102e56d0a7bc93 + internalID: -111883396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_278 + rect: + serializedVersion: 2 + x: 1952 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 96fec9ceb5f35714d9b3bc56ab256b42 + internalID: 699689109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_279 + rect: + serializedVersion: 2 + x: 1984 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1c9655f1afa952a4396fe638fafe89d6 + internalID: 1923057879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_280 + rect: + serializedVersion: 2 + x: 2016 + y: 1888 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4373ff261dd98f640862a07ef7ec2dae + internalID: -516417342 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_281 + rect: + serializedVersion: 2 + x: 32 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8853cd1a7ae7e804b8cb521425dc9a69 + internalID: -55745990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_282 + rect: + serializedVersion: 2 + x: 64 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 33365e959da77074e810840517ab6786 + internalID: -965244695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_283 + rect: + serializedVersion: 2 + x: 96 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d0e503b0bef186946accc319fc30bd3c + internalID: -1647497597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_284 + rect: + serializedVersion: 2 + x: 160 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8358d9c29e211ee46a2c82a89bd42c3f + internalID: 1790955174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_285 + rect: + serializedVersion: 2 + x: 192 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 36d1c8a504fe675438ed2c46df8f9d29 + internalID: -692935483 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_286 + rect: + serializedVersion: 2 + x: 224 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bff9a66c2ec236e458c08113f270e59b + internalID: 906877987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_287 + rect: + serializedVersion: 2 + x: 256 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c4bdbaa5590b65d408b2c86708f6eb27 + internalID: -949534415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_288 + rect: + serializedVersion: 2 + x: 288 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 690ab258bfb39c844878d867d175cc6a + internalID: -1501459844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_289 + rect: + serializedVersion: 2 + x: 352 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 960e4c80253d9564da61d36ce85c5fcb + internalID: 1732497648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_290 + rect: + serializedVersion: 2 + x: 384 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0f88f4c46d55a8141a9fe67659b6730f + internalID: -1991156522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_291 + rect: + serializedVersion: 2 + x: 416 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f64e2d2839c30b42ae5955e5079c55b + internalID: -356219212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_292 + rect: + serializedVersion: 2 + x: 480 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d28902f542851347a2c4a81d5fd73a1 + internalID: 1326708771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_293 + rect: + serializedVersion: 2 + x: 512 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 110ab35a59ab570498d75d187cbbb154 + internalID: -809208982 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_294 + rect: + serializedVersion: 2 + x: 544 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2ea15306bc27594486cc7c226032925 + internalID: -771401738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_295 + rect: + serializedVersion: 2 + x: 576 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46a626c947bec6343a9ec990180c69ea + internalID: -47495578 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_296 + rect: + serializedVersion: 2 + x: 608 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 43ef43255abdffb4dba1c53d2c67ce9d + internalID: -209457998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_297 + rect: + serializedVersion: 2 + x: 640 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 72dd7eab01636ef4abc2e29068f819b1 + internalID: -1339577257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_298 + rect: + serializedVersion: 2 + x: 672 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b8fa6cc6df48fb4eb384e36c12e2d29 + internalID: -2039413027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_299 + rect: + serializedVersion: 2 + x: 704 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 04bf9dc150c085546afd7b98ab83e047 + internalID: -390647743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_300 + rect: + serializedVersion: 2 + x: 736 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 43298f72b17b5d34cb0957658a3e1965 + internalID: 1338296683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_301 + rect: + serializedVersion: 2 + x: 768 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54d21c11f5636c348b0c85650119023f + internalID: -18734218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_302 + rect: + serializedVersion: 2 + x: 800 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a4504af3b90a8c043882216e3df9beca + internalID: 332626717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_303 + rect: + serializedVersion: 2 + x: 832 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f8f1cbac75d7b634782e424fa69a4fa5 + internalID: -1705694771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_304 + rect: + serializedVersion: 2 + x: 864 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0ee9efbe002ca494fbd00b4a5e735b5a + internalID: -1182677322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_305 + rect: + serializedVersion: 2 + x: 896 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2495a67982803ff4f84d2c3234845cd8 + internalID: 692468290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_306 + rect: + serializedVersion: 2 + x: 928 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11e911f94be23df428d4b6de1cf1c684 + internalID: -1150326614 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_307 + rect: + serializedVersion: 2 + x: 1024 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: acc1996ce063d6a4cbf34d5412354ede + internalID: 617683137 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_308 + rect: + serializedVersion: 2 + x: 1056 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6b16379bab3bcb0458985a62b18247c0 + internalID: -1178838810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_309 + rect: + serializedVersion: 2 + x: 1088 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 47f3cf3126633d141b6f1a68ba44bad0 + internalID: 1083120984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_310 + rect: + serializedVersion: 2 + x: 1152 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eadc77b1d9b2d8748b816cfdecb71806 + internalID: -285357115 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_311 + rect: + serializedVersion: 2 + x: 1184 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c7d5c28e03edc14bac3ccdd1f72d6d9 + internalID: -964117831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_312 + rect: + serializedVersion: 2 + x: 1216 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2ebc1ff4a6c99074183bc6ea4a4dc59b + internalID: 1104002873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_313 + rect: + serializedVersion: 2 + x: 1248 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 80a5753c86bace54ba5cb989d2432bb7 + internalID: -1944299262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_314 + rect: + serializedVersion: 2 + x: 1280 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 484ea0def5b492e418e6927a467d73e7 + internalID: -1025690254 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_315 + rect: + serializedVersion: 2 + x: 1312 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c4fa5646f54b8fb4e972e14650bd1fd9 + internalID: -1703270944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_316 + rect: + serializedVersion: 2 + x: 1344 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1434f6b387de53e4da7867dea17b32b3 + internalID: -2107371658 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_317 + rect: + serializedVersion: 2 + x: 1376 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a1c0078faa9b31d4284ee295465fe71d + internalID: -521817034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_318 + rect: + serializedVersion: 2 + x: 1408 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1a8d49714b1f7e45bcb299405e70bec + internalID: 264670492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_319 + rect: + serializedVersion: 2 + x: 1824 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: abf269187bc86d6408f19910e7c30931 + internalID: 175459571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_320 + rect: + serializedVersion: 2 + x: 1856 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0dd4c43ac78235048bc6bccca0a81b7e + internalID: 1464634238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_321 + rect: + serializedVersion: 2 + x: 1888 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4e397d55d8f69e948b0e8ba47051f8ad + internalID: -806056994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_322 + rect: + serializedVersion: 2 + x: 1920 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2ed53c98a0ca184db5831443e8f89be + internalID: -2126321018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_323 + rect: + serializedVersion: 2 + x: 1952 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 88c744f94550b1d47a1ce08b6b050193 + internalID: -1730021095 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_324 + rect: + serializedVersion: 2 + x: 1984 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 01482b6faea2ee54e921a1c1c424dacc + internalID: -1020167632 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_325 + rect: + serializedVersion: 2 + x: 2016 + y: 1856 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 891e55bc07a961c4ea06478853e2786d + internalID: -2042310149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_326 + rect: + serializedVersion: 2 + x: 0 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 41d38044ba8c0234f847fbf4fce09203 + internalID: -1200999885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_327 + rect: + serializedVersion: 2 + x: 32 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ee864d4212f6f87429047d39e8168d2a + internalID: 2020197899 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_328 + rect: + serializedVersion: 2 + x: 64 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 544400cc4ed613b4eaaf3e2fd4c176e8 + internalID: 937825422 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_329 + rect: + serializedVersion: 2 + x: 96 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3cd71f2bf0776424d8b9a3f45bf25bef + internalID: -709010380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_330 + rect: + serializedVersion: 2 + x: 128 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2db63effd2f45c14f8769303fe6345f4 + internalID: -989895381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_331 + rect: + serializedVersion: 2 + x: 160 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac8c3c851fe44994cbaf84e558729385 + internalID: -770475222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_332 + rect: + serializedVersion: 2 + x: 192 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 629cbdff00cb3a244ab1aeae7bd0d75a + internalID: 912795325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_333 + rect: + serializedVersion: 2 + x: 224 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e6395c416d90aa54a8d4c5c5f6fae3a7 + internalID: 1964967981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_334 + rect: + serializedVersion: 2 + x: 256 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1008cb2f528526d42aba1549e2d14fc8 + internalID: -1586436596 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_335 + rect: + serializedVersion: 2 + x: 288 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 33a20e08eedf4e44482d65a866edcf6c + internalID: 2044922827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_336 + rect: + serializedVersion: 2 + x: 320 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1190219ad82b6674da00b2e69ddefba2 + internalID: -2066247616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_337 + rect: + serializedVersion: 2 + x: 352 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f98aa422a629ed4c8116e6864e0ba09 + internalID: 1228379139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_338 + rect: + serializedVersion: 2 + x: 384 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0876e0606c01754cae587e2046b69a4 + internalID: 1934238339 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_339 + rect: + serializedVersion: 2 + x: 416 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 39a7a00f02fe2d744b68cd54048bf66a + internalID: 724125331 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_340 + rect: + serializedVersion: 2 + x: 448 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f87be307c4e98dd42bee9e5be666ae7f + internalID: 1616070227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_341 + rect: + serializedVersion: 2 + x: 480 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 251f6e341b292744fa43ace3f1d5fdf4 + internalID: 1278862127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_342 + rect: + serializedVersion: 2 + x: 512 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11d0665706f5d5846b1ffe784e98a28c + internalID: 1750224391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_343 + rect: + serializedVersion: 2 + x: 544 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15eb065cbdaf81e45953dde13c8bb6fd + internalID: -256006884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_344 + rect: + serializedVersion: 2 + x: 576 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ea05c58f2452e3469f09b92c930aae6 + internalID: -492066109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_345 + rect: + serializedVersion: 2 + x: 608 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c99bafe78a652c44fabb19f0bf53e31e + internalID: -1425913756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_346 + rect: + serializedVersion: 2 + x: 640 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c188cba81e394404b81c0a9020396159 + internalID: 841482424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_347 + rect: + serializedVersion: 2 + x: 672 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9705f088ca690684ea4514d365d0ddf9 + internalID: -217351607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_348 + rect: + serializedVersion: 2 + x: 704 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a34f665d9d1ce7e4b908e16803953cbe + internalID: 1096114068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_349 + rect: + serializedVersion: 2 + x: 736 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a50ac9a85cb258847b219254ff1dd132 + internalID: 2013610835 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_350 + rect: + serializedVersion: 2 + x: 768 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2b39257cafc1f4a469978a0bca2f99a2 + internalID: 68279746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_351 + rect: + serializedVersion: 2 + x: 800 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b2c983d01db11264aa724325b6d64971 + internalID: -1834148297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_352 + rect: + serializedVersion: 2 + x: 832 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7c097dc30e7afef4c91e1dcf34ceeb0f + internalID: 323823108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_353 + rect: + serializedVersion: 2 + x: 864 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17c2885394e43c148aace116094ec51e + internalID: 1475862348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_354 + rect: + serializedVersion: 2 + x: 896 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 14022e9b5d69118409a1b3dd9738443a + internalID: -588474639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_355 + rect: + serializedVersion: 2 + x: 928 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38722639a15d29d4d9d6ea6d69983f6a + internalID: -457812062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_356 + rect: + serializedVersion: 2 + x: 992 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 48f6d79291f9dda4a9756c615b6dfa44 + internalID: -1537056638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_357 + rect: + serializedVersion: 2 + x: 1024 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34a4e8f1080306b47b66b8cd6b349230 + internalID: 1925672746 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_358 + rect: + serializedVersion: 2 + x: 1056 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0db947ed7117e0b42a54e4b0d98b6004 + internalID: 1559490232 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_359 + rect: + serializedVersion: 2 + x: 1088 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 99837b3232a34fd4dab15e5a81e0fde7 + internalID: 1426867007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_360 + rect: + serializedVersion: 2 + x: 1120 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a8296d7ce955e54489c0956d3496a13 + internalID: -865347438 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_361 + rect: + serializedVersion: 2 + x: 1152 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e3db17d36bca7004ba1b754731130163 + internalID: -422010068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_362 + rect: + serializedVersion: 2 + x: 1184 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f2dbd461bb7c88d438facaa1e768a270 + internalID: -256373695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_363 + rect: + serializedVersion: 2 + x: 1216 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 67d94f34653619546be8fd88c82c4de4 + internalID: -1260768086 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_364 + rect: + serializedVersion: 2 + x: 1248 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 121e78d278647ed4fb840a15e951fa18 + internalID: -1639772057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_365 + rect: + serializedVersion: 2 + x: 1280 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15cf8f2aadf2cef40a62e38dc58c2bde + internalID: -1329439837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_366 + rect: + serializedVersion: 2 + x: 1312 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1f6e22329e91d041840d902c01adeb5 + internalID: -1791608393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_367 + rect: + serializedVersion: 2 + x: 1344 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5fd68debbaa65734c98e118bd38f2e38 + internalID: 1639494283 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_368 + rect: + serializedVersion: 2 + x: 1376 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b4a1b606a6ce1184e8bad29d6b6b76c9 + internalID: -154659819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_369 + rect: + serializedVersion: 2 + x: 1408 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f629802a16f9bea498506e2a647f9bf1 + internalID: 1543142001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_370 + rect: + serializedVersion: 2 + x: 1440 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d07cb92a5f2b5649a8bf658746f8230 + internalID: -758697139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_371 + rect: + serializedVersion: 2 + x: 2016 + y: 1824 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 398790d26ca130f44b910a64a37260b7 + internalID: -1038173937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_372 + rect: + serializedVersion: 2 + x: 0 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ce854363953c1544e9858f1c703e195e + internalID: -643983628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_373 + rect: + serializedVersion: 2 + x: 32 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f9fae10896f29e44385dc23c75cf8b74 + internalID: -1687850070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_374 + rect: + serializedVersion: 2 + x: 64 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c037d40c1b0331498deb4c383792126 + internalID: -121169144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_375 + rect: + serializedVersion: 2 + x: 96 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a39ecd9f6aa90f44b6b575a5908cf3f + internalID: 462360729 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_376 + rect: + serializedVersion: 2 + x: 128 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bb357de4beac61844a4122b8d93dd073 + internalID: 69477053 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_377 + rect: + serializedVersion: 2 + x: 160 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0aa234e866a90db4792b4267e368a4b5 + internalID: 2044619515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_378 + rect: + serializedVersion: 2 + x: 192 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 664d253ea72525144bb0349972c42fdd + internalID: -1747593961 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_379 + rect: + serializedVersion: 2 + x: 256 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af7c4ef2c40984c4a9ea6315cec307d5 + internalID: 664281504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_380 + rect: + serializedVersion: 2 + x: 288 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2debf52268a2b9a48bb23a72996aa7fc + internalID: 458922029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_381 + rect: + serializedVersion: 2 + x: 320 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2289d83864fcc05458dc0252994844f9 + internalID: 390591916 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_382 + rect: + serializedVersion: 2 + x: 352 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0929227af00853b41a81c5d96d46ccef + internalID: 161866652 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_383 + rect: + serializedVersion: 2 + x: 384 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 40475e1583847cd419165e8a7a98f3ac + internalID: 122639502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_384 + rect: + serializedVersion: 2 + x: 416 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7712332ef71eef3448b077fa91634011 + internalID: -592901511 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_385 + rect: + serializedVersion: 2 + x: 448 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d7735d62bd2018f45974b9cc15c810a4 + internalID: 625168274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_386 + rect: + serializedVersion: 2 + x: 480 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3f26f86b00ce60849a0d3f54a6c851ef + internalID: 782163888 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_387 + rect: + serializedVersion: 2 + x: 512 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 279408438cae0054f906c1cb4877a598 + internalID: 1127861189 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_388 + rect: + serializedVersion: 2 + x: 576 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9ddeb9a6be56a264cb434a4e9575bdb5 + internalID: -500495237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_389 + rect: + serializedVersion: 2 + x: 608 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7cf2ecdf08197bc49a3df49a68d7ee31 + internalID: -148375688 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_390 + rect: + serializedVersion: 2 + x: 640 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a01206d1a4c8876449d1c3cd717e09c8 + internalID: 1499809179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_391 + rect: + serializedVersion: 2 + x: 672 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c5095d1f703117499223c8e25515920 + internalID: -1325431647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_392 + rect: + serializedVersion: 2 + x: 704 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 193cd9c9de2c60a44a37c61a4a881647 + internalID: -523736992 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_393 + rect: + serializedVersion: 2 + x: 736 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 79d696b9a54f55f4cbc6181ca03818e8 + internalID: 811988231 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_394 + rect: + serializedVersion: 2 + x: 768 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6e2996c713aaa6e40b3a5dbb21977e5a + internalID: 689582677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_395 + rect: + serializedVersion: 2 + x: 800 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 348be094d4e8cb5418cb2adab0f62f4c + internalID: -1925848756 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_396 + rect: + serializedVersion: 2 + x: 832 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d17e623040a6be34b8f5395f5d329ad4 + internalID: 599292031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_397 + rect: + serializedVersion: 2 + x: 864 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab4fce2d453f61045857b84ccd26bbf4 + internalID: -916654285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_398 + rect: + serializedVersion: 2 + x: 896 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8a12d3a164d159d479aff658a5b0994f + internalID: -1360371017 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_399 + rect: + serializedVersion: 2 + x: 928 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8289f455b07cd14aacad6ee0dd999d7 + internalID: 1460993213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_400 + rect: + serializedVersion: 2 + x: 992 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 44fcb5a461b9bf7459f13ec993826a4d + internalID: -1961300710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_401 + rect: + serializedVersion: 2 + x: 1024 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 98c6c1ce47735d44cb11c4835180b0aa + internalID: 640130280 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_402 + rect: + serializedVersion: 2 + x: 1056 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17eb4c81ce29bd34f94be44fcef55850 + internalID: 2132862838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_403 + rect: + serializedVersion: 2 + x: 1088 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17476c56dd9441949b5669704f377283 + internalID: 1747962737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_404 + rect: + serializedVersion: 2 + x: 1120 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b9027d3674ade554485f87d49c3707cd + internalID: 1538948677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_405 + rect: + serializedVersion: 2 + x: 1152 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e3ccb8d901232a4dbb1ccd0dac5b3ba + internalID: 1574439452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_406 + rect: + serializedVersion: 2 + x: 1184 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bb6bba4b97ecfcb409fefe47df780226 + internalID: 275906363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_407 + rect: + serializedVersion: 2 + x: 1248 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25955e06bcb585d4dadee7b209d71b98 + internalID: -541572912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_408 + rect: + serializedVersion: 2 + x: 1280 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af4806c18bcbe784d8012c9a3d7f768a + internalID: -1243956592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_409 + rect: + serializedVersion: 2 + x: 1312 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3069647ba28fc504f8e0c7ef6a7f8bfa + internalID: -285555896 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_410 + rect: + serializedVersion: 2 + x: 1344 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b075873df8790c944a20486890307ff6 + internalID: -1961688611 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_411 + rect: + serializedVersion: 2 + x: 1376 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2c54ee13aeb3b4643a15ff788173805a + internalID: 862559023 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_412 + rect: + serializedVersion: 2 + x: 1408 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ef57615d426920041a4fc7b1821fc138 + internalID: 526228375 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_413 + rect: + serializedVersion: 2 + x: 1440 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62cd9ab78295d9e45a222d775081f2d4 + internalID: -1270029014 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_414 + rect: + serializedVersion: 2 + x: 2016 + y: 1792 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9cb09c6b1e7337d43aaef015cf18137b + internalID: 1283503815 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_415 + rect: + serializedVersion: 2 + x: 0 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 78ad1520246fce040b2d514ed7ef043d + internalID: -1392007156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_416 + rect: + serializedVersion: 2 + x: 32 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61d0103ec08cb2e48863a8615a5bc509 + internalID: -1466708385 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_417 + rect: + serializedVersion: 2 + x: 64 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66dcc46662b08ad46aeb7d6095f2b098 + internalID: -360254929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_418 + rect: + serializedVersion: 2 + x: 96 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a87139abfe4067f47b75c31ae80254d7 + internalID: 415218600 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_419 + rect: + serializedVersion: 2 + x: 128 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5825de96841db304bb0439c358f6d3ef + internalID: -1864196749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_420 + rect: + serializedVersion: 2 + x: 160 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6674b02d45baa3244b17e8b884461961 + internalID: 1319160198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_421 + rect: + serializedVersion: 2 + x: 192 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b76214e03d949b2409443c088c8e61a3 + internalID: -717790924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_422 + rect: + serializedVersion: 2 + x: 224 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 58f7795d99ee99049af4822b42d89451 + internalID: -213422407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_423 + rect: + serializedVersion: 2 + x: 256 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d924be2860dc094e965a36e24860dda + internalID: 209345036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_424 + rect: + serializedVersion: 2 + x: 288 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 31fca958b4a87a240ac216414c583101 + internalID: 588891256 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_425 + rect: + serializedVersion: 2 + x: 320 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6fd463f65d1a4cb498d112be86a4785f + internalID: -1047122938 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_426 + rect: + serializedVersion: 2 + x: 352 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 665cb9cc7edf1d542a8391f38be03ea0 + internalID: -1388210669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_427 + rect: + serializedVersion: 2 + x: 384 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3ce8289aed6392a4692343a2c33d3c0a + internalID: -2042349717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_428 + rect: + serializedVersion: 2 + x: 416 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 743b53791f4d820458beb07c2326e53f + internalID: 1836153225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_429 + rect: + serializedVersion: 2 + x: 448 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87b79491ec8030b4f9b87a768ccfcbf6 + internalID: -1311901947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_430 + rect: + serializedVersion: 2 + x: 480 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 224ad2d1c9aac134bb0f65e0708ea9f8 + internalID: 618487766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_431 + rect: + serializedVersion: 2 + x: 512 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d9231e3e0afa574ca5050bbc611512d + internalID: -1603266610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_432 + rect: + serializedVersion: 2 + x: 544 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e8af9ceee6dac3f4786401af2b7f2d19 + internalID: 1371797441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_433 + rect: + serializedVersion: 2 + x: 576 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 19ca2da890b653e40b2753ced2da83fd + internalID: -614707767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_434 + rect: + serializedVersion: 2 + x: 608 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2fb6efbbce098ee4e8536b4cbdba9709 + internalID: -806308165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_435 + rect: + serializedVersion: 2 + x: 640 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7006ad3fd5d15be449a82b131ad826eb + internalID: -1886251469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_436 + rect: + serializedVersion: 2 + x: 672 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fa13a81811d1e9b48bdf58e61f4c9672 + internalID: 1206133819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_437 + rect: + serializedVersion: 2 + x: 704 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 42c452f8ce627a54fafdd225843e79e0 + internalID: -1728326717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_438 + rect: + serializedVersion: 2 + x: 736 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bfaf1ef4440df5145a512915be46a30f + internalID: 347947193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_439 + rect: + serializedVersion: 2 + x: 768 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0d93cedb2b7ba94882feb3d957b0a46 + internalID: -1841097575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_440 + rect: + serializedVersion: 2 + x: 800 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2ad28b31a8e614a4fa0aedbaf3ae81f4 + internalID: 1506121580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_441 + rect: + serializedVersion: 2 + x: 832 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38793629e792419499a63e7f2bec7b9e + internalID: 188346974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_442 + rect: + serializedVersion: 2 + x: 864 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac7c191abcc81e74392b327f326c34ca + internalID: 1798409357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_443 + rect: + serializedVersion: 2 + x: 896 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c06eacf2ee8b1b94099a60a312af38fd + internalID: 463340211 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_444 + rect: + serializedVersion: 2 + x: 928 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9775d0d4e3e069f4bbdb15b5a2198871 + internalID: 367293374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_445 + rect: + serializedVersion: 2 + x: 992 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4c8446120c51a004d84b5dc5294249b7 + internalID: 463954183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_446 + rect: + serializedVersion: 2 + x: 1024 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2f8864eb2c8635488b245783c79b54a + internalID: 574178910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_447 + rect: + serializedVersion: 2 + x: 1056 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bf8b4c674c9d4a64e8ff0253f1e5051e + internalID: 1314848354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_448 + rect: + serializedVersion: 2 + x: 1088 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ce73ad0e918f43945938a6ffca60a05a + internalID: 527348104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_449 + rect: + serializedVersion: 2 + x: 1120 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a4e246f36885c6542bf9922535c3e799 + internalID: -694346403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_450 + rect: + serializedVersion: 2 + x: 1152 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 484b1a0a5fe17b7488ff541e70c82b2b + internalID: -1228595194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_451 + rect: + serializedVersion: 2 + x: 1184 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc3057f533bd3d54ab2eac90e304b813 + internalID: -1944682570 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_452 + rect: + serializedVersion: 2 + x: 1216 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0567bb7e14424b34eb75093d6557d8d8 + internalID: 1655066385 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_453 + rect: + serializedVersion: 2 + x: 1248 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 562cea9f5bbed6742912e1a4cdc0ac5b + internalID: 645972290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_454 + rect: + serializedVersion: 2 + x: 1280 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15fb0036df96de04f8d271aafc678c66 + internalID: 119154412 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_455 + rect: + serializedVersion: 2 + x: 1344 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0a9fec8884de7a14d9a527e129650d5e + internalID: -1957654589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_456 + rect: + serializedVersion: 2 + x: 1376 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 94d665712e8eeee4d89de62fc6587d3c + internalID: 719224770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_457 + rect: + serializedVersion: 2 + x: 1408 + y: 1760 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab83e1f297010b345838ae7fdb118f61 + internalID: 547781055 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_458 + rect: + serializedVersion: 2 + x: 32 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d318379d3897feb4fbe338872fe88f85 + internalID: -2135939717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_459 + rect: + serializedVersion: 2 + x: 64 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d6f70d762cff4934e9eaac7157f3e814 + internalID: -1124360216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_460 + rect: + serializedVersion: 2 + x: 96 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e96b2dd1588b9c48a3aa9066ffeb8b7 + internalID: 1672258766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_461 + rect: + serializedVersion: 2 + x: 160 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5fead94b48d636f45aee76c9d6aecdc7 + internalID: -1532640855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_462 + rect: + serializedVersion: 2 + x: 192 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c7a8303a5a73ef74a9cca27e874a6a5c + internalID: -1397130373 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_463 + rect: + serializedVersion: 2 + x: 224 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cc15970c5e25e6b438259e0a9044689c + internalID: 1150440743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_464 + rect: + serializedVersion: 2 + x: 256 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38d512daf6bb4344cb1b9c41304482f2 + internalID: 1879888391 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_465 + rect: + serializedVersion: 2 + x: 288 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6e961174cf93dbf40b2b9e9cc1c81080 + internalID: 584997838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_466 + rect: + serializedVersion: 2 + x: 352 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0462636d0957704e89bd853912db00e + internalID: -1107809535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_467 + rect: + serializedVersion: 2 + x: 384 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 99ecd5cf085190943baf7aa263d227f3 + internalID: -985680964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_468 + rect: + serializedVersion: 2 + x: 416 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 094a959a236e9104ea56c513f6f0b278 + internalID: -456842197 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_469 + rect: + serializedVersion: 2 + x: 480 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7d27cb9d25eb1b74e84d4711b8622263 + internalID: 1897625572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_470 + rect: + serializedVersion: 2 + x: 512 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 47f7baa58482c454199bf723fb0a0487 + internalID: -1442526602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_471 + rect: + serializedVersion: 2 + x: 544 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5541e6b4e2d5795449cbd8eb2041f5bc + internalID: -638875847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_472 + rect: + serializedVersion: 2 + x: 576 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b3400b2e2e491a8468b2d469b99be67b + internalID: 596969960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_473 + rect: + serializedVersion: 2 + x: 608 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4baac6532c4af254cb7eb2d8d1cf9146 + internalID: -1274580489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_474 + rect: + serializedVersion: 2 + x: 640 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3617a183d3e5c5e449e1ff7ec3df7b5d + internalID: -1680179310 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_475 + rect: + serializedVersion: 2 + x: 672 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e3a79da91adae394c996790a601e3707 + internalID: -2086249315 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_476 + rect: + serializedVersion: 2 + x: 704 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d93445c0ed973643b8228244c5e0f43 + internalID: -584746202 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_477 + rect: + serializedVersion: 2 + x: 736 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 609d57ef7ecd4984f8cff5b4b057b1a6 + internalID: -672645159 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_478 + rect: + serializedVersion: 2 + x: 768 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 30cde35ccbbde5e439d4969e744459c1 + internalID: 235635355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_479 + rect: + serializedVersion: 2 + x: 800 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: aaa79872af2fa6840b6d0bea560960a4 + internalID: 939512653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_480 + rect: + serializedVersion: 2 + x: 832 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fc6edf46c0f4df04ebedf836a390f22b + internalID: 1700123747 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_481 + rect: + serializedVersion: 2 + x: 864 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fd097bbd728a35d43ae40a4dd66addd2 + internalID: 1345114102 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_482 + rect: + serializedVersion: 2 + x: 896 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 138ea33d0c1900c49a9f0535bfcba1b6 + internalID: 1963617163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_483 + rect: + serializedVersion: 2 + x: 928 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b8d2ddaba7fc99c40acfbdc0f4360b9f + internalID: 1059591378 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_484 + rect: + serializedVersion: 2 + x: 1024 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9df5fb538604e22499b57347503a8160 + internalID: 1732920021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_485 + rect: + serializedVersion: 2 + x: 1056 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 91ae0bc13358fc941a023a5ebfe25917 + internalID: -2082174680 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_486 + rect: + serializedVersion: 2 + x: 1088 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bb51d5a57d039e74081df4ee492dd19d + internalID: -1796467332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_487 + rect: + serializedVersion: 2 + x: 1152 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a2609a516a63cd1468729b6a479df169 + internalID: 993473278 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_488 + rect: + serializedVersion: 2 + x: 1184 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a5a0ed66c5302840ab4caab189be6e9 + internalID: -982083582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_489 + rect: + serializedVersion: 2 + x: 1216 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb71296cda5b4ba40962d0b91109aa88 + internalID: 959384962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_490 + rect: + serializedVersion: 2 + x: 1248 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 272f1b5d2aabd5345be4cf79c42c3247 + internalID: -1612240619 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_491 + rect: + serializedVersion: 2 + x: 1280 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0524f4372ac9f8a4eb8eea2343f004c7 + internalID: 1726231056 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_492 + rect: + serializedVersion: 2 + x: 1920 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d6ee6cc0d6ddb584bbdcd2c198802db8 + internalID: -360411158 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_493 + rect: + serializedVersion: 2 + x: 1952 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 47835d957c1cefd448de145ed087921d + internalID: -1009268886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_494 + rect: + serializedVersion: 2 + x: 1984 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d1b273d0640aa64ba74b97955887c96 + internalID: 133299723 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_495 + rect: + serializedVersion: 2 + x: 2016 + y: 1728 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9fc2e40e017a9a440bbdfb057da33d0b + internalID: -415228198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_496 + rect: + serializedVersion: 2 + x: 32 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 084617375a9ea3348a72a45196bd49d3 + internalID: -1334568484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_497 + rect: + serializedVersion: 2 + x: 64 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cc5c2b0928c4e404baa8e8595b6b9cf1 + internalID: 271758396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_498 + rect: + serializedVersion: 2 + x: 96 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c55f3491e9b8a834684a2e63ec2c92a2 + internalID: 1824547154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_499 + rect: + serializedVersion: 2 + x: 160 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b50b9c7924632ef42bec4dacb49a813f + internalID: 1797234116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_500 + rect: + serializedVersion: 2 + x: 192 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 850d0368b9cdc1b4b93a6e952457727c + internalID: -26310226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_501 + rect: + serializedVersion: 2 + x: 224 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 041ec606ff53976448889b7295029bb3 + internalID: 2148498 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_502 + rect: + serializedVersion: 2 + x: 256 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 82838fc621c567545a7bcafbe6a6352a + internalID: -1859923355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_503 + rect: + serializedVersion: 2 + x: 288 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da4b607245e03b1499312d496049adcf + internalID: -952699418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_504 + rect: + serializedVersion: 2 + x: 352 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6d4564e811d6c7144a9503d842ad9581 + internalID: -2037471521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_505 + rect: + serializedVersion: 2 + x: 384 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15cb96288a27cbd4cb8791130785f6cb + internalID: -817367079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_506 + rect: + serializedVersion: 2 + x: 416 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7a4ba5d821b2fd04c8a09f07fa85fb23 + internalID: 291459114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_507 + rect: + serializedVersion: 2 + x: 480 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 979da4586ac46f845a5f55aa471517e8 + internalID: 851477870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_508 + rect: + serializedVersion: 2 + x: 512 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8f596000077d3d745b470d45455cbe1b + internalID: -77263987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_509 + rect: + serializedVersion: 2 + x: 544 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 014bcb0a05ecc7946bfa513bf28a747b + internalID: 1789472401 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_510 + rect: + serializedVersion: 2 + x: 576 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af56348762f4c3a4cb6f31c8e1e6bea1 + internalID: 1845919430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_511 + rect: + serializedVersion: 2 + x: 608 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e7a4e7d420f9b324a8b4d4a2272c6806 + internalID: -651976332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_512 + rect: + serializedVersion: 2 + x: 672 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2bbdc0cfff50c6a4cb051651a29e271d + internalID: 769992003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_513 + rect: + serializedVersion: 2 + x: 704 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bc7d4ba8b46994f4fa99dac30e5a9067 + internalID: 474873407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_514 + rect: + serializedVersion: 2 + x: 736 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a21ad87b29bc8d749b4e292a2eb82049 + internalID: 1724844503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_515 + rect: + serializedVersion: 2 + x: 832 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ef24b0122ff878f4ba17b04d2cddc416 + internalID: 163720353 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_516 + rect: + serializedVersion: 2 + x: 864 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f3e862139a3a08a4c944ab8235b3de55 + internalID: -1011803099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_517 + rect: + serializedVersion: 2 + x: 896 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 181bd580fbd9fae4e9df0823e6689654 + internalID: -1853348630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_518 + rect: + serializedVersion: 2 + x: 960 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a1deb639e9f4d5e45b948b497236a8a8 + internalID: 2049129330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_519 + rect: + serializedVersion: 2 + x: 992 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c57d37ab0f572cf4681124911395ae9d + internalID: 2110331155 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_520 + rect: + serializedVersion: 2 + x: 1024 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0c4fbf21304d76d448ba48454629da39 + internalID: -318731677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_521 + rect: + serializedVersion: 2 + x: 1056 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1aca40ccf046e784ea6a7bb61473cb60 + internalID: 1639234757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_522 + rect: + serializedVersion: 2 + x: 1088 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2cc24f8501395374c8ce40ed60ff9f70 + internalID: -300073872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_523 + rect: + serializedVersion: 2 + x: 1152 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 521bc9a377184f94eaa945015e160248 + internalID: -259556843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_524 + rect: + serializedVersion: 2 + x: 1184 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9befe3d38d26d2847b5b103b858e4c3e + internalID: -1188871154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_525 + rect: + serializedVersion: 2 + x: 1216 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6afd6bcb437de4a429a969ed1515ff1a + internalID: -1718953647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_526 + rect: + serializedVersion: 2 + x: 1312 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 18f2386e1db1bb7428bd4d779d3c584d + internalID: -1516056561 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_527 + rect: + serializedVersion: 2 + x: 1344 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dba61eb77cbaa0b4fa6cc6e1ab7a2806 + internalID: 1776235759 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_528 + rect: + serializedVersion: 2 + x: 1376 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bb034ede323147a4099b54e4a72a4e89 + internalID: 1207313398 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_529 + rect: + serializedVersion: 2 + x: 1408 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34c4ec16f3d0f5b4f93b2ee747ff2bb5 + internalID: 115627471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_530 + rect: + serializedVersion: 2 + x: 1440 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f4112cf6418bd044dafde1f14e810e53 + internalID: 1178755370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_531 + rect: + serializedVersion: 2 + x: 1472 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ac1de8f73dff97498b8ead3932e97d6 + internalID: 798528549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_532 + rect: + serializedVersion: 2 + x: 1504 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b748eb3f4c74b814b9402c20c4c40cba + internalID: 397732504 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_533 + rect: + serializedVersion: 2 + x: 1536 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7b13e7a8a4a0aac458d334b2889f17d0 + internalID: -513184672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_534 + rect: + serializedVersion: 2 + x: 1568 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 101693d78c005514faa21a803d3a3fb4 + internalID: 605036293 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_535 + rect: + serializedVersion: 2 + x: 1600 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 962653300a5843043b5b51820b302716 + internalID: -2011091862 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_536 + rect: + serializedVersion: 2 + x: 1632 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4fbf4be8c446f6144b488af19269da14 + internalID: 1712057509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_537 + rect: + serializedVersion: 2 + x: 1664 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a26442f233e6b5b47b3b60a64b936eee + internalID: -2044889258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_538 + rect: + serializedVersion: 2 + x: 1696 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 828f3a91b4f21234496c8848beb5e481 + internalID: -1375391812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_539 + rect: + serializedVersion: 2 + x: 1728 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a89de1957e54b64b93e14d8a081cb7f + internalID: -241853555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_540 + rect: + serializedVersion: 2 + x: 1760 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c2ccf775c14619a47b672dca72d9b067 + internalID: 1052723084 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_541 + rect: + serializedVersion: 2 + x: 1792 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba20e56a3f5e6c94ab0614180ba5ef69 + internalID: -434318034 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_542 + rect: + serializedVersion: 2 + x: 1920 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2dd60fedfb8f8204788c248b66454973 + internalID: -1841130376 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_543 + rect: + serializedVersion: 2 + x: 1952 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 226fcaae16cb3d744b0ede6115603f78 + internalID: 1922994686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_544 + rect: + serializedVersion: 2 + x: 1984 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1636b86bd3537184ea9bfe94d2978c05 + internalID: -1440299381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_545 + rect: + serializedVersion: 2 + x: 2016 + y: 1696 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62846dcc67e83434e9bf4b0a63a3f621 + internalID: -558162728 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_546 + rect: + serializedVersion: 2 + x: 0 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 634368b1103e61c47ac34de5f6b47a6c + internalID: 828571371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_547 + rect: + serializedVersion: 2 + x: 32 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a876198d7e034134a8abe41b66abf6b5 + internalID: -1319038647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_548 + rect: + serializedVersion: 2 + x: 64 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a8e5792622935d4b81916f4b3fd358e + internalID: -1510357489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_549 + rect: + serializedVersion: 2 + x: 96 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0f0ea506d1590704ba8284a8cab532e3 + internalID: 193122902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_550 + rect: + serializedVersion: 2 + x: 128 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 75424efbaf4d91b4b952040445e46e6e + internalID: -1990596006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_551 + rect: + serializedVersion: 2 + x: 160 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d79f6bfe175c14349950088ca6fe24d7 + internalID: -131072201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_552 + rect: + serializedVersion: 2 + x: 192 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eda90623165f0fb428ae4b4b348cb383 + internalID: 1818323814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_553 + rect: + serializedVersion: 2 + x: 224 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fa45f0941386c3b4b9450048a04db262 + internalID: -1843765129 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_554 + rect: + serializedVersion: 2 + x: 256 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 949773128e0291e46aa9f3eef8ece87c + internalID: 1090431132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_555 + rect: + serializedVersion: 2 + x: 288 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0390d1a1d70fb5f41ba13cba1d37657a + internalID: 742221673 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_556 + rect: + serializedVersion: 2 + x: 320 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1fe0c2dc8e96144c911ff2f59af8186 + internalID: 562840153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_557 + rect: + serializedVersion: 2 + x: 352 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5270b339ef82c294a8825cf2cbc76953 + internalID: 614478969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_558 + rect: + serializedVersion: 2 + x: 384 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ad9981d65d31a64aa7eb6538f53e7e6 + internalID: -1036223694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_559 + rect: + serializedVersion: 2 + x: 416 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 44f23048f2d61114881501f8020662bf + internalID: -1879361269 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_560 + rect: + serializedVersion: 2 + x: 448 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c02571bf7cbbae64887610b22d2fa61a + internalID: -1589354503 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_561 + rect: + serializedVersion: 2 + x: 480 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9d650fa8e26c627419698cffbf70cc52 + internalID: -2014591395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_562 + rect: + serializedVersion: 2 + x: 512 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f8b916a141342854ebf80ecc87ae394c + internalID: 314550057 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_563 + rect: + serializedVersion: 2 + x: 544 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 320d030192ddf6f4a898d509a74ac7ec + internalID: 1725599510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_564 + rect: + serializedVersion: 2 + x: 576 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eafaf7441606fea4f9596b5ffb807800 + internalID: 1812848891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_565 + rect: + serializedVersion: 2 + x: 608 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b41b3410b51df7f47b99714d99765356 + internalID: 472998926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_566 + rect: + serializedVersion: 2 + x: 640 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 972519efdca914d4cad40023b619f459 + internalID: -1246201857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_567 + rect: + serializedVersion: 2 + x: 672 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 31628623ea2364a4a9d796526323779f + internalID: -323327451 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_568 + rect: + serializedVersion: 2 + x: 704 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a2336f12f95463645bd70f4d91b1bef8 + internalID: 1257802405 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_569 + rect: + serializedVersion: 2 + x: 736 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 360d63317de9cb845abb05d24bd83abe + internalID: 1116432645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_570 + rect: + serializedVersion: 2 + x: 768 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a6a8a816e0fcd514782328240fe057c6 + internalID: 752711119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_571 + rect: + serializedVersion: 2 + x: 800 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da1c3a4dba433f34da7cb7d82554789e + internalID: 428943417 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_572 + rect: + serializedVersion: 2 + x: 832 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5483342aed17e8240a96471641e544e8 + internalID: -841160125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_573 + rect: + serializedVersion: 2 + x: 864 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ed93480edb2684f46b3cd89869d85bd5 + internalID: -1245987101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_574 + rect: + serializedVersion: 2 + x: 896 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c7dc5424767e6bb40923d90077d6b828 + internalID: 166563524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_575 + rect: + serializedVersion: 2 + x: 928 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7ba733893472c9f4d80d2e9b4c388666 + internalID: 508736357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_576 + rect: + serializedVersion: 2 + x: 960 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d7e6d0d2eac8924468f3053a81d910dd + internalID: 1291567409 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_577 + rect: + serializedVersion: 2 + x: 992 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0425955d535cd244386250683ff3f887 + internalID: -1563489863 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_578 + rect: + serializedVersion: 2 + x: 1024 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 086defcd24ced924e97411d67bf89910 + internalID: 925364163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_579 + rect: + serializedVersion: 2 + x: 1056 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c0ddcbd82d8d33844adf0184b021dfd1 + internalID: 935557921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_580 + rect: + serializedVersion: 2 + x: 1088 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61924787e2bba354cae3df679c11c36b + internalID: 2102287589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_581 + rect: + serializedVersion: 2 + x: 1120 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff17a167543cc174b98c9faec882d4ff + internalID: -1060047891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_582 + rect: + serializedVersion: 2 + x: 1152 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: efbbd34ea1c66a7468308e96e953215e + internalID: -2123234724 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_583 + rect: + serializedVersion: 2 + x: 1184 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4c9be6eaeca0d454e9b2e556154778bf + internalID: 1192591149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_584 + rect: + serializedVersion: 2 + x: 1216 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8708da445bf8576469980064dbef0d3b + internalID: 890438510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_585 + rect: + serializedVersion: 2 + x: 1248 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfd8d33108ce88049bccd573c531b422 + internalID: 493276496 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_586 + rect: + serializedVersion: 2 + x: 1312 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3c69638302048d64d94be8d6780ab7e5 + internalID: 1992381769 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_587 + rect: + serializedVersion: 2 + x: 1344 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e6802054b6dfc1549b73aff3a6b788e1 + internalID: 849984522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_588 + rect: + serializedVersion: 2 + x: 1376 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7a3128f20bbc4334a885bc048c8ce1bb + internalID: -1520052407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_589 + rect: + serializedVersion: 2 + x: 1408 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 974f815ef755c9e45b3455d974fb76bf + internalID: 835080892 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_590 + rect: + serializedVersion: 2 + x: 1440 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4e054a2b4e6f48e458a0ab7e6df96451 + internalID: 42922983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_591 + rect: + serializedVersion: 2 + x: 1472 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ece816993c83b77428850ca069cc21cf + internalID: 991107201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_592 + rect: + serializedVersion: 2 + x: 1504 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66b5b5b3e051a954698cd9aead803fd5 + internalID: 1190238308 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_593 + rect: + serializedVersion: 2 + x: 1536 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4df6d5fa877e2ea4d98cd0900eb1629d + internalID: -33538371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_594 + rect: + serializedVersion: 2 + x: 1568 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6890bfec2d1943e40bf4042b9c7a109a + internalID: -597734427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_595 + rect: + serializedVersion: 2 + x: 1600 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63e64ab072ee01344800b330bcbed99b + internalID: -2079016826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_596 + rect: + serializedVersion: 2 + x: 1632 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 80b85740bef16de44bf684529c29816c + internalID: -1436540610 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_597 + rect: + serializedVersion: 2 + x: 1664 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 809b1dccd2f67964ea4b495f01640bee + internalID: 1059313267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_598 + rect: + serializedVersion: 2 + x: 1696 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7c13fbd4f8540b64ba647cec677d3c33 + internalID: 1269876501 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_599 + rect: + serializedVersion: 2 + x: 1728 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 933c0bd000acc8c469c71ce1fecd268b + internalID: -1241624924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_600 + rect: + serializedVersion: 2 + x: 1760 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 715d464d36c562f4492867011757e33f + internalID: 779082493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_601 + rect: + serializedVersion: 2 + x: 1792 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e1ecf9bd0fd80645be1e5c617b4f898 + internalID: -1661641926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_602 + rect: + serializedVersion: 2 + x: 1920 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: acd7c3055a3e3264d8c4c3f3797b11d8 + internalID: 622955177 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_603 + rect: + serializedVersion: 2 + x: 1952 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fe66bb36858a90f4a86b99e62ac49c9a + internalID: -772637933 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_604 + rect: + serializedVersion: 2 + x: 1984 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63a8be9a048735143a8fcb4a788ecd26 + internalID: 2018633094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_605 + rect: + serializedVersion: 2 + x: 2016 + y: 1664 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a1cbd3855accf8f41a4bba4501623367 + internalID: 82798770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_606 + rect: + serializedVersion: 2 + x: 0 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 71386f475215b374aa5f80735a4d1f03 + internalID: 1169437513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_607 + rect: + serializedVersion: 2 + x: 32 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 78b147dc1f26e3f4bb48d21178df81a8 + internalID: 246000194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_608 + rect: + serializedVersion: 2 + x: 64 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c7e21d17581a494ebede9bde794d05f + internalID: -1880934783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_609 + rect: + serializedVersion: 2 + x: 96 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9b456795b588478489550901989da5a3 + internalID: -1054654289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_610 + rect: + serializedVersion: 2 + x: 128 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46fdace3951794244ad839539f1a38eb + internalID: -1502234352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_611 + rect: + serializedVersion: 2 + x: 160 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 95b365a4bcbf36e45bbc70eb6684fbea + internalID: -1297694719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_612 + rect: + serializedVersion: 2 + x: 192 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6d9467e9553b69b488edc3a3efc6f690 + internalID: 720901669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_613 + rect: + serializedVersion: 2 + x: 256 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7a8ece16d98363b49b04ce31cef41b20 + internalID: -757121593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_614 + rect: + serializedVersion: 2 + x: 288 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 611d62f0f87da5141837ccdc096fd794 + internalID: -874652868 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_615 + rect: + serializedVersion: 2 + x: 320 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 20b4101f6ca665c4aba9a1a44e99a257 + internalID: -99931526 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_616 + rect: + serializedVersion: 2 + x: 352 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e14c992c3dde51c4fa57b56ec83cddee + internalID: -1804183062 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_617 + rect: + serializedVersion: 2 + x: 384 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8ade6fe4490a89e489ae9ac0dc353777 + internalID: 996234153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_618 + rect: + serializedVersion: 2 + x: 416 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c747e362357a5c346b857f4f8e9b5aa0 + internalID: -1348764919 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_619 + rect: + serializedVersion: 2 + x: 448 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21af6bf2267911c4d8f64b7f5ddeb4c1 + internalID: 1792165492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_620 + rect: + serializedVersion: 2 + x: 480 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ef72cc1b78ce0064bb4a3c651a0df1ba + internalID: 532032895 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_621 + rect: + serializedVersion: 2 + x: 512 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9772f6417f617a048bc7ba51b3729539 + internalID: 1217482321 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_622 + rect: + serializedVersion: 2 + x: 544 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cd9c1ab13ee43304eb17461b5ae64ef9 + internalID: 518027196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_623 + rect: + serializedVersion: 2 + x: 576 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a9441c0b34df48a4baa58ea7201b3223 + internalID: -1110574340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_624 + rect: + serializedVersion: 2 + x: 608 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fb4a0568f85153f4ab445dceff0194ee + internalID: -1339371711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_625 + rect: + serializedVersion: 2 + x: 640 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a16bc29045f5a5e48a9b04a5ae191650 + internalID: -787259836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_626 + rect: + serializedVersion: 2 + x: 672 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7a53261d01bf87646b022cc44eb1795c + internalID: -215126175 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_627 + rect: + serializedVersion: 2 + x: 704 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f93a7ee8e9765a14890750e8d77dc0e2 + internalID: 1005627136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_628 + rect: + serializedVersion: 2 + x: 736 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 322bbf2fe538a0a45a36a72a005e4ca3 + internalID: -547205152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_629 + rect: + serializedVersion: 2 + x: 768 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7234e6c225772a146a6850303e8cd0f4 + internalID: -121972492 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_630 + rect: + serializedVersion: 2 + x: 800 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a338cbb8f384dac459d1302e8b31f33c + internalID: 1067699188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_631 + rect: + serializedVersion: 2 + x: 832 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9fc7b6f00f141a6458cd2e06224bf4c9 + internalID: 1136972262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_632 + rect: + serializedVersion: 2 + x: 864 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8cc2e8ac57ee39a40aea2049819f29b4 + internalID: -1123258787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_633 + rect: + serializedVersion: 2 + x: 896 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a1a245cb05a737f4380e474e4bed8c0e + internalID: 448281329 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_634 + rect: + serializedVersion: 2 + x: 928 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8f8496d2990c04d408cebade3dad5e24 + internalID: 39497722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_635 + rect: + serializedVersion: 2 + x: 960 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0cc456393ad3ba94abb98894f3d01788 + internalID: 1927826854 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_636 + rect: + serializedVersion: 2 + x: 992 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1f85c850b31773a4181d52c48ec29c9d + internalID: -1233063829 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_637 + rect: + serializedVersion: 2 + x: 1024 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d488d2b17c4334f4596602abef601980 + internalID: -798671079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_638 + rect: + serializedVersion: 2 + x: 1056 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b87b53da36538a94096dfac57c7ff0b2 + internalID: 2035247803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_639 + rect: + serializedVersion: 2 + x: 1088 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 090fa60760694a845a45e4e1f43d8ca6 + internalID: 1890605168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_640 + rect: + serializedVersion: 2 + x: 1120 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c2925fb68b33df4e9830fe7ea942023 + internalID: 1821383855 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_641 + rect: + serializedVersion: 2 + x: 1152 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 222d5b4796f2726459b19f07eeb86bcb + internalID: -242448940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_642 + rect: + serializedVersion: 2 + x: 1184 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 64b0d0b30a77ce2419ce40c36f615acc + internalID: 1926848877 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_643 + rect: + serializedVersion: 2 + x: 1216 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da6149595003b61438cc24088483e686 + internalID: -428762597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_644 + rect: + serializedVersion: 2 + x: 1248 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ce39ec636c50b9b47a14c9e2d31ff061 + internalID: 1025257452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_645 + rect: + serializedVersion: 2 + x: 1312 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7701aaf1e2c1ee64d9ff44a9aea25e3b + internalID: -1468193114 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_646 + rect: + serializedVersion: 2 + x: 1344 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ec5be3bc9b984674fbaf27fd17700e5f + internalID: 1419872509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_647 + rect: + serializedVersion: 2 + x: 1376 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7d7d2042947ad784c9573b99e2dabe57 + internalID: 1945921984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_648 + rect: + serializedVersion: 2 + x: 1408 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 800454bb799f381449b1e46412f632d0 + internalID: 926912026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_649 + rect: + serializedVersion: 2 + x: 1440 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3ae1d49284ef2d479b3ace011de13da + internalID: -1584081732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_650 + rect: + serializedVersion: 2 + x: 1472 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 14768daf8b09ac847a321951c4e3baed + internalID: -747088750 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_651 + rect: + serializedVersion: 2 + x: 1504 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8b8b36d0cbb826b438c4056aff55a4d2 + internalID: 574973780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_652 + rect: + serializedVersion: 2 + x: 1536 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc4b0f297264af542923db0da367915e + internalID: -1482735698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_653 + rect: + serializedVersion: 2 + x: 1568 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fe4e4856043177646bc5585eeb6f31cf + internalID: 752004547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_654 + rect: + serializedVersion: 2 + x: 1600 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 835fd119bbc2e4b478aecbde15b7ede8 + internalID: -1543339695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_655 + rect: + serializedVersion: 2 + x: 1632 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6e678141efd82c4eae77824a286f906 + internalID: -2078083054 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_656 + rect: + serializedVersion: 2 + x: 1664 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f9a933dfd3b745e4fbe194a1e637c920 + internalID: -1098225733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_657 + rect: + serializedVersion: 2 + x: 1696 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 73c5b7cd608e9d446bbd8454e729e664 + internalID: 574592685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_658 + rect: + serializedVersion: 2 + x: 1728 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d11a6fafa7138e24d87ac48915106d15 + internalID: 1892330227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_659 + rect: + serializedVersion: 2 + x: 1760 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6b052ae08b45f84458eb993b87659606 + internalID: 670061879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_660 + rect: + serializedVersion: 2 + x: 1792 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc4d2bfecefe9604ab790a184d7408b0 + internalID: -1493661845 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_661 + rect: + serializedVersion: 2 + x: 1920 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b2d2a8d70e28b974cabcb0a3384a3e06 + internalID: 1121695840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_662 + rect: + serializedVersion: 2 + x: 1952 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd5362c67821a0d40abaf9481c3f1ad3 + internalID: -242499463 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_663 + rect: + serializedVersion: 2 + x: 1984 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 79c4495c62b3cdb4c9376c9804dc74b6 + internalID: 1180193777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_664 + rect: + serializedVersion: 2 + x: 2016 + y: 1632 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ca7fc453e828bee4eaf7bfb315608a21 + internalID: 615060613 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_665 + rect: + serializedVersion: 2 + x: 0 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a062980129e78054687cb8df54e404ab + internalID: 464147227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_666 + rect: + serializedVersion: 2 + x: 32 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1cb5baa98d64ea34aa46a0d0fb4849e6 + internalID: -780937152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_667 + rect: + serializedVersion: 2 + x: 64 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f68529c0f41303940ba927924559db2d + internalID: 1175708424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_668 + rect: + serializedVersion: 2 + x: 96 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e9f0065efc95cd948b9e65ee9d3a5645 + internalID: 360046320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_669 + rect: + serializedVersion: 2 + x: 128 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2b1a7063c51bf7241a92c0559739a412 + internalID: 1234330634 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_670 + rect: + serializedVersion: 2 + x: 160 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e75f695612ce62e4793ca96c03b0ef50 + internalID: 1208889644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_671 + rect: + serializedVersion: 2 + x: 192 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 24df84fd2b585f342a00f06f0a45d641 + internalID: -307429950 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_672 + rect: + serializedVersion: 2 + x: 224 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 85b1b827f3dd5b349863c12665395a22 + internalID: -1094102212 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_673 + rect: + serializedVersion: 2 + x: 256 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 370dcaabf00022d43aeddc8d503bd7f6 + internalID: 913697946 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_674 + rect: + serializedVersion: 2 + x: 288 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b4f6e96909599da40befc2a208fd792d + internalID: -2009490169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_675 + rect: + serializedVersion: 2 + x: 320 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d44ec66864602834eb6fc764786b6cba + internalID: -493134402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_676 + rect: + serializedVersion: 2 + x: 352 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1152bce7e9dbdec4da44f65bd48b35fd + internalID: 234809615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_677 + rect: + serializedVersion: 2 + x: 384 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cc840bc1a6f373b489a8005d8f97998c + internalID: -1619449066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_678 + rect: + serializedVersion: 2 + x: 416 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ea20e560e6eb0d24b8fe850310d9d124 + internalID: -770806474 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_679 + rect: + serializedVersion: 2 + x: 448 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: aa69e073ec454334781c89c2fb1676ea + internalID: -1979906176 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_680 + rect: + serializedVersion: 2 + x: 480 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1f281d1a91a33b42ad70e3a6ec454ea + internalID: 736330442 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_681 + rect: + serializedVersion: 2 + x: 512 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e02a2b0fee7bf0444ab7ce291fbc15b2 + internalID: 610320349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_682 + rect: + serializedVersion: 2 + x: 544 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bfb402a1e9ecb534d9322bffd1b79400 + internalID: 2074339693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_683 + rect: + serializedVersion: 2 + x: 576 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b21896749254ad240baf5ffc956598ea + internalID: -456743873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_684 + rect: + serializedVersion: 2 + x: 608 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cbf3cf83dd5723d46a8bab213cfdb780 + internalID: 1959131324 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_685 + rect: + serializedVersion: 2 + x: 640 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 60cec70f8b956e04db7d07f393f6f9e8 + internalID: 16284510 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_686 + rect: + serializedVersion: 2 + x: 672 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 804e10914e6cff54daebdf3d504df495 + internalID: -454876296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_687 + rect: + serializedVersion: 2 + x: 704 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 113f0005138c1544e994c53b6325a20d + internalID: 190582092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_688 + rect: + serializedVersion: 2 + x: 736 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e0294c8422b91a45bb8edaf82f7d751 + internalID: 1216973260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_689 + rect: + serializedVersion: 2 + x: 768 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3bc5fa94795723a4eb192aaec3f01110 + internalID: 966514842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_690 + rect: + serializedVersion: 2 + x: 800 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 69a8b5d69857b95458876492de41ea26 + internalID: 1798285755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_691 + rect: + serializedVersion: 2 + x: 832 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e06a7d9cc106e394e877e9d2b30828bb + internalID: -3249913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_692 + rect: + serializedVersion: 2 + x: 864 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3ed3f3e9ca457434081cc9a1fcfa7890 + internalID: -172447316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_693 + rect: + serializedVersion: 2 + x: 896 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54a77cd496357ad4095157e134cc5723 + internalID: -563632965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_694 + rect: + serializedVersion: 2 + x: 928 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6d0c2f679201e34abb61fa23b106cdd + internalID: -1717941323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_695 + rect: + serializedVersion: 2 + x: 960 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9165b29eefc0b934aa7a5e5a75a140fa + internalID: 1704838150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_696 + rect: + serializedVersion: 2 + x: 992 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f0728975eaffcc49968b2b0339411af + internalID: 1055201520 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_697 + rect: + serializedVersion: 2 + x: 1024 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f61af1717a3449940b9929c5e31be1c5 + internalID: -1652305910 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_698 + rect: + serializedVersion: 2 + x: 1056 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 552515d4b25eae64d9422c8fd25bccad + internalID: 892092110 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_699 + rect: + serializedVersion: 2 + x: 1088 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 907721b61a14e154f8e47ec77bcdeb02 + internalID: -1462062216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_700 + rect: + serializedVersion: 2 + x: 1120 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9689a8c283c78c4498cec2b9f82d8ed4 + internalID: 1770565519 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_701 + rect: + serializedVersion: 2 + x: 1152 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd34fe5009ea46444aa0ac287a6c34aa + internalID: 1566475676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_702 + rect: + serializedVersion: 2 + x: 1184 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fbef0ce20b8f6fd40a98f045608ad991 + internalID: -746636963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_703 + rect: + serializedVersion: 2 + x: 1216 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8205f6e403330e444a6c7cd860722eda + internalID: 903230026 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_704 + rect: + serializedVersion: 2 + x: 1248 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2d44976442620a04b9c86bbca95848eb + internalID: -891709741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_705 + rect: + serializedVersion: 2 + x: 1312 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 122a7135aeaa5f64386a02520159aeca + internalID: -1558941912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_706 + rect: + serializedVersion: 2 + x: 1344 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b364ffa12f72e89448d40790633df322 + internalID: 961146367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_707 + rect: + serializedVersion: 2 + x: 1376 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d10e02d04c2ab1f4fb7500b7c9665f7a + internalID: 2142119794 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_708 + rect: + serializedVersion: 2 + x: 1408 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6a3fae5492092de41855a5c7d1d1e3c0 + internalID: -274347825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_709 + rect: + serializedVersion: 2 + x: 1440 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fd126c95316e26a4489eaa316437d203 + internalID: -1502954958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_710 + rect: + serializedVersion: 2 + x: 1472 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87ee8aa5c4cac6e4289bfa390eada485 + internalID: 1867867374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_711 + rect: + serializedVersion: 2 + x: 1504 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5d2a869186392b4792817d4d60076f3 + internalID: 1193550193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_712 + rect: + serializedVersion: 2 + x: 1536 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9230fbe5760e6dc45b3ef6f904b013a1 + internalID: -87723469 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_713 + rect: + serializedVersion: 2 + x: 1568 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a20d79e10f2bbd54e9946034c17c6c60 + internalID: -1261283656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_714 + rect: + serializedVersion: 2 + x: 1600 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 12c95b8a3a5b8be4884ef3b432a5f23c + internalID: -557276539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_715 + rect: + serializedVersion: 2 + x: 1632 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 37fd179d350a49f43936ff599acee6ff + internalID: 141875794 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_716 + rect: + serializedVersion: 2 + x: 1664 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: afeaa43ede4796b4bbdf598520701ea5 + internalID: 921375690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_717 + rect: + serializedVersion: 2 + x: 1696 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e8659fd7ea7f4a845916e5ef76f79971 + internalID: -2139977298 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_718 + rect: + serializedVersion: 2 + x: 1728 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 348abc2fd5c007e49aa701aa8c18d205 + internalID: 1111756119 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_719 + rect: + serializedVersion: 2 + x: 1760 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 144129b657fd2e04baf8d274affcede3 + internalID: -1672348627 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_720 + rect: + serializedVersion: 2 + x: 1792 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a3f97092cf2688640b0bfa73e15d1272 + internalID: -1705337520 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_721 + rect: + serializedVersion: 2 + x: 1920 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 45b4870b4fcf07b4fae5ba67083de98f + internalID: -1054327341 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_722 + rect: + serializedVersion: 2 + x: 1952 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 405d7999dc3ef5240945009d4a49cb60 + internalID: -1428752875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_723 + rect: + serializedVersion: 2 + x: 1984 + y: 1600 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38d905392c356464aa2ebbbe12d955b1 + internalID: 188173998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_724 + rect: + serializedVersion: 2 + x: 32 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e43fbd04e03e26f4498d21e2bdcd9e60 + internalID: 762608199 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_725 + rect: + serializedVersion: 2 + x: 64 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2f712b53bf4d686489199cc595d086a3 + internalID: -268632712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_726 + rect: + serializedVersion: 2 + x: 96 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63d9cf8436e59a146a92c603a1cd3547 + internalID: 1797347593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_727 + rect: + serializedVersion: 2 + x: 160 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1579a20fcc8dc3640b81fc2cee45dc97 + internalID: 1956782631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_728 + rect: + serializedVersion: 2 + x: 192 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8f4ede0d76d244647a167edaba42022a + internalID: 521142639 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_729 + rect: + serializedVersion: 2 + x: 224 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15f4e19ec22bd3c4698ce269b7e8b6cc + internalID: 619101716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_730 + rect: + serializedVersion: 2 + x: 256 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55056182d49ae364b979da3b508af00a + internalID: 441726094 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_731 + rect: + serializedVersion: 2 + x: 288 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92b17f5fd14b93142bc51a13b41a7284 + internalID: 2094543577 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_732 + rect: + serializedVersion: 2 + x: 320 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b90ba03c2a9c9dc48ac7fd4ac952268a + internalID: 463587105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_733 + rect: + serializedVersion: 2 + x: 352 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5404fb46e7f5f414da3e08e9ed2506a1 + internalID: 1658532376 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_734 + rect: + serializedVersion: 2 + x: 384 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dedbff237f6734d4b9173646b61857e4 + internalID: -457834190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_735 + rect: + serializedVersion: 2 + x: 416 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd376879eb3013144a2f14c9fd12d5f6 + internalID: 1085368234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_736 + rect: + serializedVersion: 2 + x: 448 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63cea4bad7d4c8a45ab3ca673732bfe3 + internalID: 759472297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_737 + rect: + serializedVersion: 2 + x: 480 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 415b419d2eb9dce40b105afb7f16d7d2 + internalID: -551397007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_738 + rect: + serializedVersion: 2 + x: 512 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a0f8c6f9686a6e94593e10e9eaaa5c45 + internalID: -1232321533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_739 + rect: + serializedVersion: 2 + x: 544 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17771a4dfb5fee24893eee87b9695853 + internalID: 426143873 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_740 + rect: + serializedVersion: 2 + x: 576 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 43cf394f17ffc9745a66dc1a093c467b + internalID: -250607884 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_741 + rect: + serializedVersion: 2 + x: 608 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6b093a1c9701b484692e43ea796151f2 + internalID: -435871170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_742 + rect: + serializedVersion: 2 + x: 640 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a78c0be6cadb2104d9cc1bb97d807e0b + internalID: 1006736776 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_743 + rect: + serializedVersion: 2 + x: 672 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23496741bc7867748a21e6f07d35ee66 + internalID: 1798668150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_744 + rect: + serializedVersion: 2 + x: 704 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2773c6a9866408442a3536b4dfc15ba4 + internalID: -298182075 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_745 + rect: + serializedVersion: 2 + x: 736 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e7c94514eb02ca4085f96d45a5c289c + internalID: -1197230082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_746 + rect: + serializedVersion: 2 + x: 768 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 653218c43151d2148968cc4c399f32ea + internalID: 130244142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_747 + rect: + serializedVersion: 2 + x: 832 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 02a86ce40a3892e4ab916b0efac6f1c1 + internalID: 1559370205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_748 + rect: + serializedVersion: 2 + x: 864 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a0f7505476cd7349bfbc7d4dd588809 + internalID: 892299915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_749 + rect: + serializedVersion: 2 + x: 896 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9eb08a6a1742eed4396b1d66d0a0c001 + internalID: -1706609386 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_750 + rect: + serializedVersion: 2 + x: 960 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5922ea622bad5e04083ecf9797e4359b + internalID: 1297000546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_751 + rect: + serializedVersion: 2 + x: 992 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f474e5eeeab6ff947859f1cb8c44c3e6 + internalID: 277436990 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_752 + rect: + serializedVersion: 2 + x: 1024 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fd5e3ab1e29601140b6bf66aa8e2fa12 + internalID: 1158918367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_753 + rect: + serializedVersion: 2 + x: 1056 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 44cb8cb48346bae4ba4360d91f0fb5e6 + internalID: 1575097978 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_754 + rect: + serializedVersion: 2 + x: 1088 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0b55daceb8dcdc94abc4a706c3ea9e86 + internalID: -1029051395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_755 + rect: + serializedVersion: 2 + x: 1152 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 67a9a8a14a2f8ea42b04dcad40335763 + internalID: -1921074780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_756 + rect: + serializedVersion: 2 + x: 1184 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87125bbc62e77b549803c79e714bac7a + internalID: -567634828 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_757 + rect: + serializedVersion: 2 + x: 1216 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2c9917258b219784c9b814be58b75c5d + internalID: 1022219435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_758 + rect: + serializedVersion: 2 + x: 1312 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e777e01f48c351d40a673b64e890f16b + internalID: 2120290716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_759 + rect: + serializedVersion: 2 + x: 1344 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9b41ec75efd896d4fa83bc2a53da20e2 + internalID: -1118929787 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_760 + rect: + serializedVersion: 2 + x: 1376 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e3eabbdadf6ce0d40bd48a4a4479c40f + internalID: -1288754777 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_761 + rect: + serializedVersion: 2 + x: 1408 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ed108d7b1bb4a6547b2affa70b5605d8 + internalID: -84915396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_762 + rect: + serializedVersion: 2 + x: 1440 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0c77193a211a7aa4a9d1b1e69b12d5e6 + internalID: -22988599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_763 + rect: + serializedVersion: 2 + x: 1472 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfad4b065c9abc344a1c8b9f6c1550d6 + internalID: 1447654766 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_764 + rect: + serializedVersion: 2 + x: 1504 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 70e439ea25ce7904a83aa6c6d561a335 + internalID: -215944146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_765 + rect: + serializedVersion: 2 + x: 1536 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e47ad9bfc9121dc43bdaaca9701ab2da + internalID: 161442330 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_766 + rect: + serializedVersion: 2 + x: 1568 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 447960faf3809f94681bfc0e17691ace + internalID: 970244804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_767 + rect: + serializedVersion: 2 + x: 1600 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a2f9e1a780ee15d4fa1577ef57fd5c8b + internalID: 1981352924 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_768 + rect: + serializedVersion: 2 + x: 1632 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d6ba3cca78fcb5b4fb561ddf5d4622c3 + internalID: -1420088672 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_769 + rect: + serializedVersion: 2 + x: 1664 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a120224b7055627409deedf15630c938 + internalID: 2130430120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_770 + rect: + serializedVersion: 2 + x: 1696 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 48df70437c2be6643b1579ebec60dd03 + internalID: -960201894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_771 + rect: + serializedVersion: 2 + x: 1728 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5dba4e4c7174e14418e247b46c8d9ac5 + internalID: 2030992261 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_772 + rect: + serializedVersion: 2 + x: 1760 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ecc6200aa6465dc41ad744b0869478f8 + internalID: -997511807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_773 + rect: + serializedVersion: 2 + x: 1792 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 45fa39851dbe89c4d8a59827b5b2b6fd + internalID: 1462609847 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_774 + rect: + serializedVersion: 2 + x: 1920 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bdb676c30b6b4ca438a065ae87e70997 + internalID: -1070039912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_775 + rect: + serializedVersion: 2 + x: 1952 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4b13682e6ad27244daffb2c848cb063b + internalID: -1101345073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_776 + rect: + serializedVersion: 2 + x: 1984 + y: 1568 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 44e39d36223e3ca4692f5a198c80d7d1 + internalID: -1393818144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_777 + rect: + serializedVersion: 2 + x: 0 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a167391a936415941844afd8b8ee43fe + internalID: -2109662947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_778 + rect: + serializedVersion: 2 + x: 32 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6051cf1541d18474ea7f204c903b0bc0 + internalID: -1423636219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_779 + rect: + serializedVersion: 2 + x: 64 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e4a958338eda82e4191beec80df16c48 + internalID: -331807621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_780 + rect: + serializedVersion: 2 + x: 96 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 444fce3c39971e049aedd780120eba0f + internalID: -1660762549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_781 + rect: + serializedVersion: 2 + x: 128 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cd626cb0a193f954eaf9abfb3539c6a4 + internalID: 371259779 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_782 + rect: + serializedVersion: 2 + x: 192 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d01ff6ad8453294b8498dfc3b116a7d + internalID: 1002182521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_783 + rect: + serializedVersion: 2 + x: 224 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 921191c2d3281264f8b4a7b801b8e988 + internalID: 1993399499 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_784 + rect: + serializedVersion: 2 + x: 256 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 849051f3740f6594ebb0b9e92eff3de0 + internalID: -1956939237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_785 + rect: + serializedVersion: 2 + x: 320 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d853d36feb7adfb4da02955008859900 + internalID: 1210590414 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_786 + rect: + serializedVersion: 2 + x: 352 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b55d9d0c8393c02489f6992d61d3d8cc + internalID: -353917679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_787 + rect: + serializedVersion: 2 + x: 384 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2e6b0cf7deacf014fb3279b0f1a3031b + internalID: -1938821477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_788 + rect: + serializedVersion: 2 + x: 416 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 45b529409f5d3f54192b94c1ac336739 + internalID: 892658210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_789 + rect: + serializedVersion: 2 + x: 448 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab5426b45625ab843a5e36cd27e6ec8f + internalID: -1027477222 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_790 + rect: + serializedVersion: 2 + x: 480 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ec899adb32b51de499c81de516e244ae + internalID: 614213833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_791 + rect: + serializedVersion: 2 + x: 512 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4f9572ed2ca3ae84caecf43c293be3cf + internalID: -544851128 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_792 + rect: + serializedVersion: 2 + x: 544 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b67e4ff556166c247be090ad1e9e98ee + internalID: 1978681424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_793 + rect: + serializedVersion: 2 + x: 576 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8346d12217432f841955855a31397817 + internalID: 824279719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_794 + rect: + serializedVersion: 2 + x: 608 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 677c3eeacae21f54888f6c1394982194 + internalID: 1309439091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_795 + rect: + serializedVersion: 2 + x: 640 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 781b9e6d4590e5645925be45ef1642f2 + internalID: -736802272 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_796 + rect: + serializedVersion: 2 + x: 672 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6bac5ed1641105046addadcb7622f051 + internalID: -624218431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_797 + rect: + serializedVersion: 2 + x: 704 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7ca5a439f803c574d8a216fef76e30a7 + internalID: -2056685302 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_798 + rect: + serializedVersion: 2 + x: 736 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f541cfd92bef44548ad9eea76e76a64c + internalID: -972406553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_799 + rect: + serializedVersion: 2 + x: 768 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 00343760549d2d44ba87e485e480b8cb + internalID: 1985959148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_800 + rect: + serializedVersion: 2 + x: 832 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfc9d288eef1990448cb1563db631252 + internalID: 473861694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_801 + rect: + serializedVersion: 2 + x: 864 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fc6de0acfd4934f4c9e9f017d893c6ea + internalID: 1426422653 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_802 + rect: + serializedVersion: 2 + x: 896 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4e2eaec1c8b180643abdbeac7c1f6c4e + internalID: -942348392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_803 + rect: + serializedVersion: 2 + x: 960 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a5ffa4d8b76d5a54abf735be012a3075 + internalID: -967275853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_804 + rect: + serializedVersion: 2 + x: 992 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a529f998efc790f4c96ec7c4b9b7861a + internalID: -1529448709 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_805 + rect: + serializedVersion: 2 + x: 1024 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 65458af10c3e10748a56d4dd81ed7fbf + internalID: -353760818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_806 + rect: + serializedVersion: 2 + x: 1056 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 59d5c747f4d4d9341a0c38c73a6d1c4b + internalID: -1439701224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_807 + rect: + serializedVersion: 2 + x: 1088 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 361522d88340ef443a3b74622a22421e + internalID: -1849340174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_808 + rect: + serializedVersion: 2 + x: 1152 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 14046af2558a5934bbe6ba766875dc32 + internalID: -815264223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_809 + rect: + serializedVersion: 2 + x: 1184 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4d36ecec5c4ffd343aeca13f75fb8815 + internalID: -412777983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_810 + rect: + serializedVersion: 2 + x: 1216 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ce6876fd71beb094d93d68b73be4feec + internalID: -1771236103 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_811 + rect: + serializedVersion: 2 + x: 1312 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e525e4ff513db1640826c4b93e597958 + internalID: 381890856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_812 + rect: + serializedVersion: 2 + x: 1344 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c1169e6a449d9940bc05561827e8800 + internalID: 1647176668 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_813 + rect: + serializedVersion: 2 + x: 1376 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 310906ab3b62daf40b20551b8416beeb + internalID: 1068094524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_814 + rect: + serializedVersion: 2 + x: 1408 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fed368380b7114b4bb8cc3de3209d697 + internalID: 2069731711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_815 + rect: + serializedVersion: 2 + x: 1440 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2dc9863988ae738439835b40a8201ee1 + internalID: 773827615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_816 + rect: + serializedVersion: 2 + x: 1472 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 41f91535c2d4d4d45b7e2f62508e62d5 + internalID: 2095803164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_817 + rect: + serializedVersion: 2 + x: 1504 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 85b8b86fcf99f0148ac2889d60affe3f + internalID: 1669299050 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_818 + rect: + serializedVersion: 2 + x: 1536 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 70c33569e5a2189419899107d28cfd19 + internalID: 2016236733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_819 + rect: + serializedVersion: 2 + x: 1568 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b1df9147e9597b74e9dc380d47135abd + internalID: 1163619267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_820 + rect: + serializedVersion: 2 + x: 1600 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9da072e6c5b8ad443a7048302b9b445d + internalID: -880812708 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_821 + rect: + serializedVersion: 2 + x: 1632 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9459e3dc96c31dc4d9be12989f10e004 + internalID: 992616196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_822 + rect: + serializedVersion: 2 + x: 1664 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f8c1f9aeb0862a646babc86257f284df + internalID: 1991660915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_823 + rect: + serializedVersion: 2 + x: 1696 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b8a0da83d3369e4c89459940a48811b + internalID: -643574434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_824 + rect: + serializedVersion: 2 + x: 1728 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a75d7d28baa6f9047809fa040ad65e00 + internalID: -586324870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_825 + rect: + serializedVersion: 2 + x: 1760 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 010c6ef718c65544e8780f5313448856 + internalID: 1770016582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_826 + rect: + serializedVersion: 2 + x: 1792 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7b972c3abd2dc834e8326531dcc442de + internalID: 1513091595 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_827 + rect: + serializedVersion: 2 + x: 1920 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1b9abc4245466804dbb43be5b1d963df + internalID: 357489171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_828 + rect: + serializedVersion: 2 + x: 1952 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cf5787eeefa46fd47a5faa063b204606 + internalID: 397098618 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_829 + rect: + serializedVersion: 2 + x: 1984 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: df76fe918cb2aca41981d1686b98a595 + internalID: -2003735446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_830 + rect: + serializedVersion: 2 + x: 2016 + y: 1536 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 514f2c14240a72c4c92f9ad51b67c616 + internalID: -1734137698 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_831 + rect: + serializedVersion: 2 + x: 0 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 72cf9538f59300d448d7ddf3a98f5c86 + internalID: 417810826 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_832 + rect: + serializedVersion: 2 + x: 32 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3d21f011b80e66b48ad9d9185789ff4c + internalID: -403478367 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_833 + rect: + serializedVersion: 2 + x: 64 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 08401c2e4389bd34ba28d1980253454f + internalID: -1367023133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_834 + rect: + serializedVersion: 2 + x: 96 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 668999e2e93352249a053f8b00a05bcc + internalID: 489848069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_835 + rect: + serializedVersion: 2 + x: 128 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 325402ab7b4385341bd5c29cb799581e + internalID: 1255133046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_836 + rect: + serializedVersion: 2 + x: 160 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d7a0d314b16d8b41bfaeb6b7746e29b + internalID: -1945963737 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_837 + rect: + serializedVersion: 2 + x: 192 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 540c35a0d8805bf46931d1b561df63d8 + internalID: -766832620 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_838 + rect: + serializedVersion: 2 + x: 224 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8ef207d4371092e4a84d2e45a387b40f + internalID: 415134027 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_839 + rect: + serializedVersion: 2 + x: 256 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9c3d7848959da1144954304e47176fe1 + internalID: 1270418236 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_840 + rect: + serializedVersion: 2 + x: 288 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3c2849dd110fd4844a00942378b517e0 + internalID: 1540790805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_841 + rect: + serializedVersion: 2 + x: 352 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d5e514a2e3461a4cb72215ad967d413 + internalID: -1921158754 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_842 + rect: + serializedVersion: 2 + x: 384 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0b35bbaf8472ba4abca27a27ea77018 + internalID: -2118923191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_843 + rect: + serializedVersion: 2 + x: 416 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 35193f6a7222ea74aa1cad57ffc72cad + internalID: 2034337357 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_844 + rect: + serializedVersion: 2 + x: 480 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e9b04f42a8b1d284eb44cd09f7585a5c + internalID: -161937851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_845 + rect: + serializedVersion: 2 + x: 512 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e3b3d723e5d3f6e4cbe46e1fefbd1cb0 + internalID: -88609878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_846 + rect: + serializedVersion: 2 + x: 544 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 30b0c68195410e849bcf60636eef0dc8 + internalID: 347321781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_847 + rect: + serializedVersion: 2 + x: 576 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c60821896d6e73547b6648ae8489982e + internalID: 1010447065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_848 + rect: + serializedVersion: 2 + x: 608 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c3d7f02b9c3480458a50ddc81590bc4 + internalID: -538088036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_849 + rect: + serializedVersion: 2 + x: 672 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 999ab30b1b18f9445961842f2ba4da57 + internalID: 1594821135 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_850 + rect: + serializedVersion: 2 + x: 704 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c42a35ed79f4505439fa9e5dcff1892f + internalID: -916780080 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_851 + rect: + serializedVersion: 2 + x: 736 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e97bfedd3b0ba9047a3741e651347458 + internalID: -1505336821 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_852 + rect: + serializedVersion: 2 + x: 800 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 870f96d0170061f459541d53c73e72b6 + internalID: -412527812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_853 + rect: + serializedVersion: 2 + x: 832 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dbe9d6d17e255194aa7e628f47abdf80 + internalID: -757034840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_854 + rect: + serializedVersion: 2 + x: 864 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0622ac36d7d70da459256d6db021788a + internalID: -2088372233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_855 + rect: + serializedVersion: 2 + x: 896 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55a746ba9f2eade4fa5021bd43a57e8f + internalID: -1440848689 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_856 + rect: + serializedVersion: 2 + x: 928 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a7662ae767faf92419522fbfe31994e3 + internalID: -1875482081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_857 + rect: + serializedVersion: 2 + x: 960 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 58e991f39f15da84fbf46b21f39d5c44 + internalID: 1823611396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_858 + rect: + serializedVersion: 2 + x: 992 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d4321761fe5a8dc49ae7190860cfda41 + internalID: -1043934275 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_859 + rect: + serializedVersion: 2 + x: 1024 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 83e58e602fa1cb2488923f08106b89a1 + internalID: 149865379 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_860 + rect: + serializedVersion: 2 + x: 1056 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: aee5a51a2ef902145a2896b646520c43 + internalID: 1535297925 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_861 + rect: + serializedVersion: 2 + x: 1088 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6f1c3511694faa248ae765be00c717a1 + internalID: 1934104544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_862 + rect: + serializedVersion: 2 + x: 1120 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 49280491a30cd344bb3ba255ea21568c + internalID: -581690281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_863 + rect: + serializedVersion: 2 + x: 1152 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d85f27664b77a740a4ffeb24376a085 + internalID: -1915800825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_864 + rect: + serializedVersion: 2 + x: 1184 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e205e42366b6a3489544720491e4244 + internalID: 1788543624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_865 + rect: + serializedVersion: 2 + x: 1216 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bccf01ccbf7d7fd44af4c2ad0467c63c + internalID: 1806683200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_866 + rect: + serializedVersion: 2 + x: 1248 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c705296bbb2cd124ea80b06e1abc27ce + internalID: 552642368 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_867 + rect: + serializedVersion: 2 + x: 1312 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3f0b98171431ed846b598d96e5be1e88 + internalID: 341320534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_868 + rect: + serializedVersion: 2 + x: 1344 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 22efc368c3d8b9447bb386a783acd8f6 + internalID: 1432797853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_869 + rect: + serializedVersion: 2 + x: 1376 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: edd5a8a483e37fa4d8f8c6640e3b54a7 + internalID: 183120527 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_870 + rect: + serializedVersion: 2 + x: 1408 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 184e729347a2097438d045a6d6c16143 + internalID: -1074969981 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_871 + rect: + serializedVersion: 2 + x: 1440 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: db7e57261cdaf7e40949ee43ab90f0a0 + internalID: -2050072078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_872 + rect: + serializedVersion: 2 + x: 1472 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd0a3a44b4b05dc4c927afbd18a0b45b + internalID: -834203809 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_873 + rect: + serializedVersion: 2 + x: 1504 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2ab3fda2cbdbd8044bd7740605ea50dd + internalID: 1529464418 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_874 + rect: + serializedVersion: 2 + x: 1536 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8c182ade44849534a9634628cde79b18 + internalID: -1780770190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_875 + rect: + serializedVersion: 2 + x: 1568 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 550e25e1592860c41a15ffac6f5aedc9 + internalID: 519176359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_876 + rect: + serializedVersion: 2 + x: 1600 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2a544af012c4b384eb7c1926c4c6dc12 + internalID: -2108575711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_877 + rect: + serializedVersion: 2 + x: 1632 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: edfb1d5dbebb1ef45b1f7c8f03b0b7d9 + internalID: -443407108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_878 + rect: + serializedVersion: 2 + x: 1664 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c392060114c8dd94e870bdeb69ea354f + internalID: 749917869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_879 + rect: + serializedVersion: 2 + x: 1696 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e560904652921cf47b40ad174c966989 + internalID: -850113740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_880 + rect: + serializedVersion: 2 + x: 1728 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 35f803eea7375c445bfc52edc1536bbd + internalID: -507658832 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_881 + rect: + serializedVersion: 2 + x: 1760 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8c6345f6b46e5ea4abd64885f4037778 + internalID: 1004094678 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_882 + rect: + serializedVersion: 2 + x: 1792 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2767f9ec5b3305b4c9d1dc31c037ff20 + internalID: 155074351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_883 + rect: + serializedVersion: 2 + x: 1920 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 35781609de48c094daa6dc95e2eaebad + internalID: -971428963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_884 + rect: + serializedVersion: 2 + x: 1952 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: aa11fbdf4b6cf38428531d21673b9323 + internalID: -960399974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_885 + rect: + serializedVersion: 2 + x: 1984 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 607caa66f3b578c4aaa33043b4e1aac6 + internalID: -287163296 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_886 + rect: + serializedVersion: 2 + x: 2016 + y: 1504 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e9ef4ea7e86b476479e65236459cacbf + internalID: -2136621913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_887 + rect: + serializedVersion: 2 + x: 0 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a24a280675807a44a8ec8d743047a96d + internalID: -1344958148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_888 + rect: + serializedVersion: 2 + x: 32 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5eb52d313b6cdaf4a948c333272c6b7d + internalID: 1591008322 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_889 + rect: + serializedVersion: 2 + x: 64 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c779e596531c69e449ec621abc3aae65 + internalID: 502817078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_890 + rect: + serializedVersion: 2 + x: 96 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fcca76a88e2467943aabaf6927839476 + internalID: 1812505902 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_891 + rect: + serializedVersion: 2 + x: 128 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ea2e8111a4d677a40a2c7227c7d89a6c + internalID: 868179872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_892 + rect: + serializedVersion: 2 + x: 160 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 477af5dd1471d7444a35533afcb9ff7d + internalID: 849653198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_893 + rect: + serializedVersion: 2 + x: 192 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63a4dbd710079414b8555e1adf640c55 + internalID: 804409253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_894 + rect: + serializedVersion: 2 + x: 224 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 505f2edd59b3cca48a60c3f0911dc4a1 + internalID: 916177381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_895 + rect: + serializedVersion: 2 + x: 256 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab57e10e15c28c843b223e88b57556d7 + internalID: -697707457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_896 + rect: + serializedVersion: 2 + x: 288 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34662c2808af2a147b9106c75018efe6 + internalID: 1801924761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_897 + rect: + serializedVersion: 2 + x: 352 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 088a60db7951b1b4f8cdc635dde4ecfb + internalID: 1177842441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_898 + rect: + serializedVersion: 2 + x: 384 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1c01f25b9feba6244a0b92b60992ed6e + internalID: -1198364912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_899 + rect: + serializedVersion: 2 + x: 416 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 76541ccaeaf61f04b92da14334881ba0 + internalID: -1488960319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_900 + rect: + serializedVersion: 2 + x: 480 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3dc36481c46dd0c469cfab0414c63359 + internalID: 933399252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_901 + rect: + serializedVersion: 2 + x: 512 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6be2ee30c829bb46a2d036a70eb84b1 + internalID: 178676906 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_902 + rect: + serializedVersion: 2 + x: 544 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 24ec9c97b31a38c4184df72d348b6242 + internalID: -427043649 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_903 + rect: + serializedVersion: 2 + x: 576 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4889737ca0f815042a87684869aea956 + internalID: -1558215262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_904 + rect: + serializedVersion: 2 + x: 608 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 678a6a87197253543ac8ab5e3054358c + internalID: 1654610563 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_905 + rect: + serializedVersion: 2 + x: 672 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 24eeb3fb9993967449f92836d32c6f42 + internalID: 1793043178 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_906 + rect: + serializedVersion: 2 + x: 704 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7f27faeef3dc435498af1000e5c75e7f + internalID: 254564247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_907 + rect: + serializedVersion: 2 + x: 736 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 79b5c1ff0437efa4b93b8a4d2a5342b1 + internalID: 193262150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_908 + rect: + serializedVersion: 2 + x: 800 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d017bd366d464f347abdf301a670ea56 + internalID: -906165074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_909 + rect: + serializedVersion: 2 + x: 832 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cfadea7b3846e2e46af4d878f5220873 + internalID: 707857470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_910 + rect: + serializedVersion: 2 + x: 864 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 84ea3dee346ca254ba4b550fd049a3fc + internalID: 278216441 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_911 + rect: + serializedVersion: 2 + x: 896 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: efe51c05c9d4da94a90a2b0ea3e6d0ee + internalID: -336404046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_912 + rect: + serializedVersion: 2 + x: 928 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ee49c97573277644cbbe25caae9cdb93 + internalID: -1265612745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_913 + rect: + serializedVersion: 2 + x: 960 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2c12c39fd927e9f4bbb43d94ccbc9884 + internalID: -1131307540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_914 + rect: + serializedVersion: 2 + x: 992 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f0338ff0965a3be4eaacb514d236ea0e + internalID: -1933096911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_915 + rect: + serializedVersion: 2 + x: 1024 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46c28968abe132040873ef5797b76568 + internalID: -398783193 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_916 + rect: + serializedVersion: 2 + x: 1056 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 18deef8e0f2eabd45bbd157db37637cf + internalID: -570947897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_917 + rect: + serializedVersion: 2 + x: 1088 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 03e367e84e8403f46843a5f82bb4dc0d + internalID: -615369816 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_918 + rect: + serializedVersion: 2 + x: 1120 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1b7977e223cd22245ab6b5e2bfd50f2d + internalID: -1892381931 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_919 + rect: + serializedVersion: 2 + x: 1152 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc077bfd605702f41b71cb4e19894a25 + internalID: 1039150203 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_920 + rect: + serializedVersion: 2 + x: 1184 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8a4fa848802fa7d4c82dbf5012eb4e33 + internalID: -1953797443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_921 + rect: + serializedVersion: 2 + x: 1216 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b2bd36d3df50ef245bba2755f82d08a0 + internalID: -1156408292 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_922 + rect: + serializedVersion: 2 + x: 1248 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 26180b9bf3206ad49b511c1dfaf8b2a7 + internalID: -1625237641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_923 + rect: + serializedVersion: 2 + x: 1312 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6896baa160c7658469d348be16402118 + internalID: 495753671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_924 + rect: + serializedVersion: 2 + x: 1344 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a60d2839dd77b844daae9c1adc732350 + internalID: -685235765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_925 + rect: + serializedVersion: 2 + x: 1376 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7cf824ff049feef45b977a0ceca03401 + internalID: 2073361388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_926 + rect: + serializedVersion: 2 + x: 1408 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d832faad7ab1a24fb1f2e7549cbaab8 + internalID: -1888597837 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_927 + rect: + serializedVersion: 2 + x: 1440 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 832a61d66116e50408a898350404dad9 + internalID: -530760898 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_928 + rect: + serializedVersion: 2 + x: 1472 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 19bfc3a036830ef49ae1e1e70be94f4f + internalID: 2098844915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_929 + rect: + serializedVersion: 2 + x: 1504 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b6e29ca52264dc4fb0c837b1cb3a287 + internalID: 1008384958 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_930 + rect: + serializedVersion: 2 + x: 1536 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 404544ae9a2590c4fb4a639669f8ef6b + internalID: -440436328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_931 + rect: + serializedVersion: 2 + x: 1568 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b4891227984639a4da9912648407ec85 + internalID: 1439704719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_932 + rect: + serializedVersion: 2 + x: 1600 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: de83c5a40ecc6b446b1e07bbb4e9799b + internalID: -801458228 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_933 + rect: + serializedVersion: 2 + x: 1632 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c5fb5349f2e4f8c48999e83b7b41a016 + internalID: -458963068 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_934 + rect: + serializedVersion: 2 + x: 1664 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 406d14d29d38c164c896e7a84fd217fa + internalID: 166183733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_935 + rect: + serializedVersion: 2 + x: 1696 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9be6f0ef5de144347993d3e3cae16fa1 + internalID: 741976471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_936 + rect: + serializedVersion: 2 + x: 1728 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f915a51c737e77a4f8e656efffb04eda + internalID: 1220043872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_937 + rect: + serializedVersion: 2 + x: 1760 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cd2c704fe50e80f4b96d8af0a52f818a + internalID: -1194070841 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_938 + rect: + serializedVersion: 2 + x: 1792 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f271daa388f269641b57fe24f1179aaa + internalID: 1366267097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_939 + rect: + serializedVersion: 2 + x: 1920 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3d4ac41a95fedd84db818a2bbe8208e2 + internalID: 2030749764 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_940 + rect: + serializedVersion: 2 + x: 1952 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21c58587ce75b554ba685fee3300060d + internalID: -276548078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_941 + rect: + serializedVersion: 2 + x: 1984 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f95e1bf68da02a247ab60ddb849b12e5 + internalID: -1294005120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_942 + rect: + serializedVersion: 2 + x: 2016 + y: 1472 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 06de5cb4eb501164ea9743001208d418 + internalID: 281219433 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_943 + rect: + serializedVersion: 2 + x: 0 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4c916a356cc9aea45a4df3230a93c1d4 + internalID: -276288445 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_944 + rect: + serializedVersion: 2 + x: 32 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c6e24e54a4ca1c74ab0f5884da78187e + internalID: 1480819097 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_945 + rect: + serializedVersion: 2 + x: 64 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0fa28bdd49429ca48b7116834060897c + internalID: 451053304 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_946 + rect: + serializedVersion: 2 + x: 96 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 417cbbf16960c6a489bd17f6b88c776f + internalID: 991944897 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_947 + rect: + serializedVersion: 2 + x: 128 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9f5fef2b26207954684600c8d10c1273 + internalID: 1318663780 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_948 + rect: + serializedVersion: 2 + x: 160 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0a412ecfeb0384498954f8465d48c8c + internalID: 7382531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_949 + rect: + serializedVersion: 2 + x: 192 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ed7d0868e48f58d4ebcc2773adcf167f + internalID: -1727620604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_950 + rect: + serializedVersion: 2 + x: 224 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8cd3f34383232a24798fc3970906e175 + internalID: -1974041717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_951 + rect: + serializedVersion: 2 + x: 256 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5be195008131e29469da35ecff240860 + internalID: -1880512552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_952 + rect: + serializedVersion: 2 + x: 288 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a10d7bb1bbf2b8489c973460a377b4a + internalID: 951730628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_953 + rect: + serializedVersion: 2 + x: 320 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eaf69513662dea54396f06c239f48742 + internalID: 261597716 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_954 + rect: + serializedVersion: 2 + x: 352 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d885d130eaec8794f842567de81cdcb5 + internalID: 228191690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_955 + rect: + serializedVersion: 2 + x: 384 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 318afc130e26dc64baf59f3db39e346d + internalID: -1345637957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_956 + rect: + serializedVersion: 2 + x: 416 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b8ca410524970a8499d1648347ea3f92 + internalID: -1920243260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_957 + rect: + serializedVersion: 2 + x: 448 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 74c1b3b8d8de68845999f10468b0f88a + internalID: -1455441783 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_958 + rect: + serializedVersion: 2 + x: 480 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8da82df5e75741847a1194a99cb7bde3 + internalID: 932623388 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_959 + rect: + serializedVersion: 2 + x: 512 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 78608c22d0dfdfd4d8e48310c43a3c89 + internalID: -2049218693 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_960 + rect: + serializedVersion: 2 + x: 544 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af7ac343bbcbc9849a7d78b3a5efad6f + internalID: -896073482 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_961 + rect: + serializedVersion: 2 + x: 576 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: df10699bd6a34db41945b11bd4e628db + internalID: 969892732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_962 + rect: + serializedVersion: 2 + x: 608 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b99e0097516fba242abd94dbce1f4226 + internalID: 2035076876 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_963 + rect: + serializedVersion: 2 + x: 640 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9b820a5a8ba0cff40b5ec74a54f8492d + internalID: -1184897488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_964 + rect: + serializedVersion: 2 + x: 672 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0e6e0dca198a0d640893b90253a83d70 + internalID: -1222133844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_965 + rect: + serializedVersion: 2 + x: 704 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2d3590b07a161f047bc211b2934ac093 + internalID: 222365247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_966 + rect: + serializedVersion: 2 + x: 736 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 812c67bf70ac5144f81b7b2d91e20253 + internalID: -161445355 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_967 + rect: + serializedVersion: 2 + x: 768 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f2b8744298be9f545be89b694995af22 + internalID: 1581787903 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_968 + rect: + serializedVersion: 2 + x: 800 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fe6beec8da6bdb34f9ebe9474159a425 + internalID: 857697665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_969 + rect: + serializedVersion: 2 + x: 832 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4a500269a4b63914db9edf45553dbb0c + internalID: -1465390806 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_970 + rect: + serializedVersion: 2 + x: 864 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5724ca6b789bde499ef4c48fc7117d8 + internalID: 122857039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_971 + rect: + serializedVersion: 2 + x: 896 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 98de9859dcb066c428eef0a89897a4ee + internalID: -647488869 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_972 + rect: + serializedVersion: 2 + x: 928 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0f010ad46335e344ca18868199342d05 + internalID: 97832163 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_973 + rect: + serializedVersion: 2 + x: 960 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 132d650e848b4a545adf99ec27f8cc2e + internalID: 1154409590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_974 + rect: + serializedVersion: 2 + x: 992 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34af535f0d0d9a441aff6a768d387ade + internalID: -1104095174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_975 + rect: + serializedVersion: 2 + x: 1024 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3f566f0800979b948a90c3f92b0526d9 + internalID: 636113621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_976 + rect: + serializedVersion: 2 + x: 1056 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: baece51e320459240973504fc6f4b073 + internalID: 1689981936 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_977 + rect: + serializedVersion: 2 + x: 1088 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 642db45b1770d7e4c92d8885fb414635 + internalID: -500273124 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_978 + rect: + serializedVersion: 2 + x: 1120 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fd7359484bc31cd4cad34e2683ffb474 + internalID: -2046723437 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_979 + rect: + serializedVersion: 2 + x: 1152 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d25ba553ea00bd34fbb5fdf84e32f2ea + internalID: -827344944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_980 + rect: + serializedVersion: 2 + x: 1184 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3263181af09c18d47838d1aa841b7d00 + internalID: 295921323 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_981 + rect: + serializedVersion: 2 + x: 1216 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 39c8260869557f7408c7b674133611c5 + internalID: 606372024 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_982 + rect: + serializedVersion: 2 + x: 1248 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bcda820d885566b46862ddd4ddea166c + internalID: 543882148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_983 + rect: + serializedVersion: 2 + x: 1440 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a149bed91901204392f7a9f25a99557 + internalID: -765494887 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_984 + rect: + serializedVersion: 2 + x: 1472 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff9ebccf889e7c2499eb93d3994892e1 + internalID: 631599607 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_985 + rect: + serializedVersion: 2 + x: 1504 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 73f59fe4d85ce7d42941021de63dbfe1 + internalID: -2113066366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_986 + rect: + serializedVersion: 2 + x: 1536 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a636b8c247fda84bb53b124ab21c190 + internalID: -2005822846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_987 + rect: + serializedVersion: 2 + x: 1696 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9ba8900a3a6659744bef825057993dd0 + internalID: 299373703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_988 + rect: + serializedVersion: 2 + x: 1728 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3766cecc35825f74996214d64f1fec4a + internalID: 9143741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_989 + rect: + serializedVersion: 2 + x: 1760 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7b967e64db3ad04438779bee892bceed + internalID: 1482334529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_990 + rect: + serializedVersion: 2 + x: 1792 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3a8d2d81394fa7438bc64dfd4530c97 + internalID: 1428145695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_991 + rect: + serializedVersion: 2 + x: 1920 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c558ae2b8176ec84cb2c30af6b36ab50 + internalID: -1721546994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_992 + rect: + serializedVersion: 2 + x: 1952 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8eeb1ab681012ed4d859c1ca6a103c2f + internalID: -1402207393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_993 + rect: + serializedVersion: 2 + x: 1984 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 566ffdd58cd19c242808909ff1316d8e + internalID: 1109183732 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_994 + rect: + serializedVersion: 2 + x: 2016 + y: 1440 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 959d11e289fbc1744a308a918e4a7ce1 + internalID: 1177817681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_995 + rect: + serializedVersion: 2 + x: 0 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 267ae6dc606e24f4ab7b8215de770efa + internalID: 1413683219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_996 + rect: + serializedVersion: 2 + x: 32 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 313400189fe0e1143a81f5f73f2595b4 + internalID: 827533282 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_997 + rect: + serializedVersion: 2 + x: 64 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a6fdfa51625538f43a2d5afeff2c67ef + internalID: 774621332 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_998 + rect: + serializedVersion: 2 + x: 96 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bc6f94bcf54eb8043bef1345e03adaeb + internalID: -927370743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_999 + rect: + serializedVersion: 2 + x: 128 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4cc24fe84cbeec34fbed8f955de6bbe0 + internalID: 528362454 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1000 + rect: + serializedVersion: 2 + x: 192 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c9099d3389a53d46b3f9cba63a2a8a3 + internalID: 1432428069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1001 + rect: + serializedVersion: 2 + x: 224 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 36d9dd119b259c448b7549c4aaaec1db + internalID: 26995372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1002 + rect: + serializedVersion: 2 + x: 256 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 496d9422a324da44f980dbb4bda135a4 + internalID: 1642122686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1003 + rect: + serializedVersion: 2 + x: 320 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f3f6f5e346c57c54aafe9a562fe7c4bf + internalID: 1834595263 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1004 + rect: + serializedVersion: 2 + x: 352 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 867983713ce5aad40a3e18353e6a8e28 + internalID: -2072697856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1005 + rect: + serializedVersion: 2 + x: 384 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab761d11d60cb714eb82022605757ed8 + internalID: 1871892505 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1006 + rect: + serializedVersion: 2 + x: 416 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 479adba91bfe03d43b439c6e9725ae2b + internalID: 201165699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1007 + rect: + serializedVersion: 2 + x: 448 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e56a7c61fab819a4283928249dd27cde + internalID: 531839538 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1008 + rect: + serializedVersion: 2 + x: 480 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b1b46396bdf4bc948adf6a58b5003e0c + internalID: 1372892599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1009 + rect: + serializedVersion: 2 + x: 512 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 948a64f43011a1c4188aa0f67453d4ff + internalID: 820694516 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1010 + rect: + serializedVersion: 2 + x: 544 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62cac756f26ad8b46b3d101fd64827ca + internalID: -904869550 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1011 + rect: + serializedVersion: 2 + x: 576 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b23c6239c74a2b742a96214822cbd65d + internalID: 639701043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1012 + rect: + serializedVersion: 2 + x: 608 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 682b1cf6b68e31844b567084853626a3 + internalID: 891857801 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1013 + rect: + serializedVersion: 2 + x: 640 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a91ef4310c3705c40a85ca8502f3d66f + internalID: -628060446 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1014 + rect: + serializedVersion: 2 + x: 672 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 39217f47b5febf64c8c9587a1bad1dcb + internalID: 63772865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1015 + rect: + serializedVersion: 2 + x: 704 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bbb2c73644154194ea0b0ac4b2ffa031 + internalID: 1373076662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1016 + rect: + serializedVersion: 2 + x: 736 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5784f710b6ef8c94299f829fdf019fd0 + internalID: -650946755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1017 + rect: + serializedVersion: 2 + x: 768 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d7284f5bc43fbd74682ca8663dfab29b + internalID: 1400020216 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1018 + rect: + serializedVersion: 2 + x: 832 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a4971f6fae97bbd409157b255cdf2629 + internalID: 495243645 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1019 + rect: + serializedVersion: 2 + x: 864 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 171399dc40929c147adc2e8e55507d73 + internalID: -1660914289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1020 + rect: + serializedVersion: 2 + x: 896 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5242f0f00ed177d47b9f6ca623bdc405 + internalID: 1302484544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1021 + rect: + serializedVersion: 2 + x: 960 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c863aca968ea281479763a56e1128440 + internalID: 981413407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1022 + rect: + serializedVersion: 2 + x: 992 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 148f522e6d49bb6429b96d4cf56d6d0a + internalID: -296054986 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1023 + rect: + serializedVersion: 2 + x: 1024 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92368b36098792c438c40356835696d1 + internalID: 1020933730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1024 + rect: + serializedVersion: 2 + x: 1056 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e29b52a28b95a714da1481400abbfcf1 + internalID: 1281512287 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1025 + rect: + serializedVersion: 2 + x: 1088 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 063b51cbad480e044ac10c80c9996068 + internalID: 500972738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1026 + rect: + serializedVersion: 2 + x: 1152 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb3fe246bbf598743a2837d0622cd1c3 + internalID: 1785481710 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1027 + rect: + serializedVersion: 2 + x: 1184 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8b139558a04c71c4ea006929bb1f1b46 + internalID: 2005187599 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1028 + rect: + serializedVersion: 2 + x: 1216 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d581d1e181fa084eaa53d2ea438ae5e + internalID: 1051830800 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1029 + rect: + serializedVersion: 2 + x: 1440 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1e8356e2c00422a42b5da17b7bd0024f + internalID: -1392662044 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1030 + rect: + serializedVersion: 2 + x: 1472 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54494503304c1bd448a087fab80236a0 + internalID: -86282867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1031 + rect: + serializedVersion: 2 + x: 1504 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb973fc999ddec94cbb3204867e94abc + internalID: -28190273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1032 + rect: + serializedVersion: 2 + x: 1536 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0eb05919245911341909a361e18fc4d8 + internalID: 1484027313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1033 + rect: + serializedVersion: 2 + x: 1696 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac26daf857180a1459110a8d15e816f1 + internalID: 1603387415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1034 + rect: + serializedVersion: 2 + x: 1728 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 372ab40e26b22a34bba3d46b9a3a8b3e + internalID: -529276245 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1035 + rect: + serializedVersion: 2 + x: 1760 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8a400dc77fb7f3f4594a95dc3fcb1332 + internalID: -786604579 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1036 + rect: + serializedVersion: 2 + x: 1792 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 06035731f4a66a14aa6c4c1723d35f04 + internalID: -670399609 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1037 + rect: + serializedVersion: 2 + x: 1920 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cd778f7c4ee2e3f44a51fc41f811c1dc + internalID: 1992798099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1038 + rect: + serializedVersion: 2 + x: 1952 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2e935f2769229d94ab52f1bd3da6124c + internalID: -1901709987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1039 + rect: + serializedVersion: 2 + x: 1984 + y: 1408 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c5fa0cde75be9524abb9c9ad5d1a3a42 + internalID: -1539961964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1040 + rect: + serializedVersion: 2 + x: 32 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c44915adb0c69c04d9efcfcf6ed87333 + internalID: 1409224856 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1041 + rect: + serializedVersion: 2 + x: 64 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ad7ca9d8319e6e646868ae4338a7e6b4 + internalID: 1303696012 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1042 + rect: + serializedVersion: 2 + x: 96 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c324339607499f14a948f26fb99cb6ff + internalID: 1890302789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1043 + rect: + serializedVersion: 2 + x: 320 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e86121e7ef0a5014d97985754315a307 + internalID: 2065906309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1044 + rect: + serializedVersion: 2 + x: 352 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fd70be113c337244a918de122cdf163d + internalID: 2024915200 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1045 + rect: + serializedVersion: 2 + x: 384 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6f1095380718a80439eced2550486f96 + internalID: 150019940 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1046 + rect: + serializedVersion: 2 + x: 416 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2736d48c721db5042b4910d3459d21c8 + internalID: -1833629397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1047 + rect: + serializedVersion: 2 + x: 448 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b9c20e66434de04896faf0e7d1ee507 + internalID: 2048142112 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1048 + rect: + serializedVersion: 2 + x: 480 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d523525ac6485584b81a689f66d47b22 + internalID: 1021107956 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1049 + rect: + serializedVersion: 2 + x: 512 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 671d4874ce2a3ac40b71f960b0af7f95 + internalID: -521145191 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1050 + rect: + serializedVersion: 2 + x: 544 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a6938ef124b913240aeb3503299ba65a + internalID: -162735982 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1051 + rect: + serializedVersion: 2 + x: 576 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d9762d137755b9248ac130f915875926 + internalID: 25800407 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1052 + rect: + serializedVersion: 2 + x: 608 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6909bc9c1f73c6f4e8ed0f52fdf28b7f + internalID: -1489295722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1053 + rect: + serializedVersion: 2 + x: 640 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d69c264b2efea3b4d8639d516fffdaa8 + internalID: -2009543028 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1054 + rect: + serializedVersion: 2 + x: 672 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 16673b650877ce049a2c522b87814cb1 + internalID: 175721944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1055 + rect: + serializedVersion: 2 + x: 704 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c43fd6613e6b50443a62a8837623ed04 + internalID: 587037623 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1056 + rect: + serializedVersion: 2 + x: 736 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62afac990cebe63428a88e4ce495ae2b + internalID: 973004426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1057 + rect: + serializedVersion: 2 + x: 768 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd5d8e354c3d94940b5d0d12b3a9a450 + internalID: 886530648 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1058 + rect: + serializedVersion: 2 + x: 1440 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e5ba32eba9acc24ea900594ee26691d + internalID: 1468062290 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1059 + rect: + serializedVersion: 2 + x: 1472 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 79ea9ec7793cc764c83787bb9dafee5f + internalID: -1055907879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1060 + rect: + serializedVersion: 2 + x: 1504 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e551e0994669d1440bc1693ceae7b61c + internalID: 571081644 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1061 + rect: + serializedVersion: 2 + x: 1536 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 644b7c214597d1644afcce47df5faa19 + internalID: 828741571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1062 + rect: + serializedVersion: 2 + x: 1696 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6d6c02bbe495103408bb2d25b1bc40fa + internalID: -154690165 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1063 + rect: + serializedVersion: 2 + x: 1728 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 33dc40574ecd1b247b35832f90627800 + internalID: -1369783831 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1064 + rect: + serializedVersion: 2 + x: 1760 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a19f2b9265208e044a6dfb15c650d67e + internalID: 1878800188 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1065 + rect: + serializedVersion: 2 + x: 1792 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11810906de7c8c94cad50b165dc6aaed + internalID: 1251456633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1066 + rect: + serializedVersion: 2 + x: 1920 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4043399ae182c734e91b57a74a7c92ad + internalID: 1494696488 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1067 + rect: + serializedVersion: 2 + x: 1952 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 53d2bb75f0a112147a2bf57866a0e178 + internalID: 608702827 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1068 + rect: + serializedVersion: 2 + x: 1984 + y: 1376 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2f7b1a8f090a1344c94f7e489d3f1fc5 + internalID: 1192052719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1069 + rect: + serializedVersion: 2 + x: 0 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f120f134ad6f35e438ead91cdc413a0e + internalID: -291354509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1070 + rect: + serializedVersion: 2 + x: 32 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7296464aa73a7814393326138ec554db + internalID: -2009048466 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1071 + rect: + serializedVersion: 2 + x: 64 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfaaf58d7d5f08140b20740f0b26e19d + internalID: -163284354 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1072 + rect: + serializedVersion: 2 + x: 96 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0794b59d141414d48808b4639ab877d9 + internalID: -834382440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1073 + rect: + serializedVersion: 2 + x: 128 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 04e3188c580f8a4458849c30d084a62b + internalID: -30194631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1074 + rect: + serializedVersion: 2 + x: 320 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0409174437fcd9741a66491840f9640c + internalID: -1043796934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1075 + rect: + serializedVersion: 2 + x: 352 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c10dde2f9298a36458480e2a5ec8ca4f + internalID: 1061061969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1076 + rect: + serializedVersion: 2 + x: 384 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5481410a8f1f8824684a51c861dd729c + internalID: 1623374289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1077 + rect: + serializedVersion: 2 + x: 416 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d0d33939e53305e4dab3844a6b48bc50 + internalID: -1501561000 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1078 + rect: + serializedVersion: 2 + x: 448 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0f1cc5dffb040e74eb2107cbabf01d5d + internalID: 1203787363 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1079 + rect: + serializedVersion: 2 + x: 480 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8ef21b36b039204a8d67621b22249e1 + internalID: 165868029 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1080 + rect: + serializedVersion: 2 + x: 512 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0e1f35b1aa5470e41bded35686cca8d7 + internalID: -983709761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1081 + rect: + serializedVersion: 2 + x: 544 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2c9cc771a14165a46b341d54f99eac2c + internalID: -322809247 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1082 + rect: + serializedVersion: 2 + x: 576 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 07e2ab88869319c468079ed646d6cfae + internalID: -1733403134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1083 + rect: + serializedVersion: 2 + x: 608 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4eba0a31244140b49aff4541f5f60506 + internalID: -1881417772 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1084 + rect: + serializedVersion: 2 + x: 640 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 76af6d41d5ede6f479e9462953ad9b00 + internalID: 1082910544 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1085 + rect: + serializedVersion: 2 + x: 672 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87603487f2411ee438d181a44310536b + internalID: 40395548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1086 + rect: + serializedVersion: 2 + x: 704 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6a83a8b5c26e0a649bdef688494cf1bf + internalID: -1118044013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1087 + rect: + serializedVersion: 2 + x: 736 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 64433647fad6e7945b8fc9943ad4b5de + internalID: 1114374683 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1088 + rect: + serializedVersion: 2 + x: 768 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25bdfc016f8492a428f2577d45902726 + internalID: -2008682366 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1089 + rect: + serializedVersion: 2 + x: 864 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5a1da9edfb1bfa84c85209aa9dcc6329 + internalID: 1138305307 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1090 + rect: + serializedVersion: 2 + x: 896 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 91ad4145ad3287e47ae427c3d2a84555 + internalID: 503016969 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1091 + rect: + serializedVersion: 2 + x: 992 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e09eb6249d6dca847aa02f725a4d3693 + internalID: -773619183 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1092 + rect: + serializedVersion: 2 + x: 1024 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 98feefaab1096774f87199e78820d8b2 + internalID: -980782515 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1093 + rect: + serializedVersion: 2 + x: 1152 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9a3570a4d5856a64b8fad91d345be806 + internalID: 885480452 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1094 + rect: + serializedVersion: 2 + x: 1184 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d930acab66080f4ba5db9173d3de3e0 + internalID: 1562643458 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1095 + rect: + serializedVersion: 2 + x: 1280 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5fee7737e1ae3fd448008b6fcc744c64 + internalID: 1644592823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1096 + rect: + serializedVersion: 2 + x: 1312 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8dbbc234b35ec974c85129000eab7286 + internalID: 2026080655 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1097 + rect: + serializedVersion: 2 + x: 1440 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bf04102cf6ee4854d9f1d6dec478e3a8 + internalID: 619248101 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1098 + rect: + serializedVersion: 2 + x: 1472 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 76fae98fbc2699c47b252be722a17517 + internalID: 191678457 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1099 + rect: + serializedVersion: 2 + x: 1504 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fb191b7d74a778744bedbf9d66287ae6 + internalID: 418322038 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1100 + rect: + serializedVersion: 2 + x: 1536 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fd84044686b15844ea20e06aa5ffd155 + internalID: 688604615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1101 + rect: + serializedVersion: 2 + x: 1696 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e072b9db2be50f548b8e1a1dc933e499 + internalID: -1847103872 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1102 + rect: + serializedVersion: 2 + x: 1728 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c399e08f6eabba34aa430f0cd0d08204 + internalID: -714669915 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1103 + rect: + serializedVersion: 2 + x: 1760 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba92857d91ee5284aba9cfa7092cb8c9 + internalID: 1426557348 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1104 + rect: + serializedVersion: 2 + x: 1792 + y: 1344 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d221eb0b0d61a74aa7f1e6f1fee7a74 + internalID: 1391707093 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1105 + rect: + serializedVersion: 2 + x: 0 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b5e7e6dc2252c204da0eaf8b30437ae2 + internalID: 1742162087 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1106 + rect: + serializedVersion: 2 + x: 32 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b1c2e257f57abcf42a7534aab4874945 + internalID: 1214269425 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1107 + rect: + serializedVersion: 2 + x: 64 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 432dea805663aa340b7a6791dc728caf + internalID: -397996140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1108 + rect: + serializedVersion: 2 + x: 96 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f89f9173796fe7a46977773a2a399fd4 + internalID: 228372744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1109 + rect: + serializedVersion: 2 + x: 128 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5296e90b957d3147a3a9430b2599400 + internalID: 1263534893 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1110 + rect: + serializedVersion: 2 + x: 352 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e2c939e1e11a994cb3a5e0aabb9132a + internalID: 305616374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1111 + rect: + serializedVersion: 2 + x: 384 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92357fc7e30c0fd4883400f9c533fb0a + internalID: -1459911257 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1112 + rect: + serializedVersion: 2 + x: 416 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 10b668030ad3c4049a07bb948ba36c15 + internalID: 1938972760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1113 + rect: + serializedVersion: 2 + x: 480 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38dd2a050b798c74b8ec5e4d37ff74c4 + internalID: 291087443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1114 + rect: + serializedVersion: 2 + x: 512 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5930b0e286e601048be542bc24461465 + internalID: 449726907 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1115 + rect: + serializedVersion: 2 + x: 544 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f8585bce0ecc2ea40ae10262119745da + internalID: -557173462 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1116 + rect: + serializedVersion: 2 + x: 576 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 913ea71e5eb8cc545aec251aeb54fd3a + internalID: 2136072575 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1117 + rect: + serializedVersion: 2 + x: 608 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92d195caf7649fe47b436e13067d6985 + internalID: 2017837233 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1118 + rect: + serializedVersion: 2 + x: 672 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 16c73308d688f914a890e376ea363781 + internalID: -435968340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1119 + rect: + serializedVersion: 2 + x: 704 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 50c5d7729327bb542b3c7b7ca2bb6288 + internalID: 262032392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1120 + rect: + serializedVersion: 2 + x: 736 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 970d3a8df2328534c85cb77783b1919a + internalID: -1861853170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1121 + rect: + serializedVersion: 2 + x: 832 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cbeddc622bded474499683e60e797528 + internalID: -1063421206 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1122 + rect: + serializedVersion: 2 + x: 864 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23cb61a7b16d714468e33d1890650207 + internalID: -147927018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1123 + rect: + serializedVersion: 2 + x: 896 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6b72e86b98b1b044baf93cc086e77a34 + internalID: 861500552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1124 + rect: + serializedVersion: 2 + x: 992 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0b680b96a44ad4745bf0215cbe2484c2 + internalID: 860499824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1125 + rect: + serializedVersion: 2 + x: 1024 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e00cd2480564b084282636906b6fc58f + internalID: -1351524470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1126 + rect: + serializedVersion: 2 + x: 1056 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 201f21e20a76e814990e29324535e881 + internalID: 194246715 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1127 + rect: + serializedVersion: 2 + x: 1120 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 88217f50a6d01df48ae96cdea907fa2c + internalID: 110441744 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1128 + rect: + serializedVersion: 2 + x: 1152 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6257db58cbf05b840b00963f2db3bc9a + internalID: 1372003840 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1129 + rect: + serializedVersion: 2 + x: 1184 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8b3a82f5539df514681360d2155c9a72 + internalID: 85455250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1130 + rect: + serializedVersion: 2 + x: 1280 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ea6b25bc2f2b90a4aa12ed42f837f5b9 + internalID: -1474433047 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1131 + rect: + serializedVersion: 2 + x: 1312 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9889576a302efb1468683189a3ac53d3 + internalID: 834811426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1132 + rect: + serializedVersion: 2 + x: 1344 + y: 1312 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e91d5671e5360114981e6c2ee602f107 + internalID: 968321491 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1133 + rect: + serializedVersion: 2 + x: 0 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 115c9fcc188b76d4d9cf77c1a21bc6fc + internalID: -988789929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1134 + rect: + serializedVersion: 2 + x: 32 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9bac1aa9a36e814488607a97064a067d + internalID: 1582964351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1135 + rect: + serializedVersion: 2 + x: 64 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62a6a5d31b9255649ad9b8290f815250 + internalID: -568061886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1136 + rect: + serializedVersion: 2 + x: 96 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 804df063f4e6d114c8d18c5f76a0cde6 + internalID: 1878325356 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1137 + rect: + serializedVersion: 2 + x: 128 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 03f7db84492df684f98685f31984f68a + internalID: 1574159774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1138 + rect: + serializedVersion: 2 + x: 832 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8e12eac6dfefe0a4cb066092149f0b7b + internalID: 1262446568 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1139 + rect: + serializedVersion: 2 + x: 864 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34087cf4df910e14994e1e88848600b1 + internalID: -43355001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1140 + rect: + serializedVersion: 2 + x: 896 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a9685f7191b480341b99521fd38b0843 + internalID: -1834657957 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1141 + rect: + serializedVersion: 2 + x: 992 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3dde1ed88141dc642bb2d93d07711af0 + internalID: -1665384467 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1142 + rect: + serializedVersion: 2 + x: 1024 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2284ba4db963d0468093a57763f161a + internalID: -1168658894 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1143 + rect: + serializedVersion: 2 + x: 1056 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 13e9d5d4dcc6ffa47a51933752629402 + internalID: -1567494834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1144 + rect: + serializedVersion: 2 + x: 1120 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17c89a0b50973874dbf8ff956ed98cb6 + internalID: -1373265337 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1145 + rect: + serializedVersion: 2 + x: 1152 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c38ed4ab4fdb58343b09af2dbac0e294 + internalID: -1258437116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1146 + rect: + serializedVersion: 2 + x: 1184 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: caaef1f6faee73a4bb349c5bc514b087 + internalID: -1468440320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1147 + rect: + serializedVersion: 2 + x: 1280 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ef1787061f6639d4780a57d3fbed882e + internalID: 1876071811 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1148 + rect: + serializedVersion: 2 + x: 1312 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 908ab9cf49fa0824d9c80a14d5ebca1e + internalID: 1962415725 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1149 + rect: + serializedVersion: 2 + x: 1344 + y: 1280 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ccf62ea0f9bc71948bcb1b7e598ba3de + internalID: -412567738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1150 + rect: + serializedVersion: 2 + x: 32 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 48afbf98a61f5b642b75b18b0e6e51fa + internalID: -728715132 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1151 + rect: + serializedVersion: 2 + x: 64 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7d1e049b4e675894093a56d9c85ea99a + internalID: -1140705477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1152 + rect: + serializedVersion: 2 + x: 96 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f921a54b0d705cc45b20cfe5935e70b4 + internalID: 2081061395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1153 + rect: + serializedVersion: 2 + x: 832 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7cfbd73aa67ef9b43815a662b5c2174a + internalID: 1498519677 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1154 + rect: + serializedVersion: 2 + x: 864 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f1e607637ef6f974a91dbf24ed6df850 + internalID: 2087033144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1155 + rect: + serializedVersion: 2 + x: 896 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8423ef0936fe36479b518421981a1bb + internalID: 1947405145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1156 + rect: + serializedVersion: 2 + x: 992 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb3a023f02b7bd3468bc135eb19fb183 + internalID: -334402327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1157 + rect: + serializedVersion: 2 + x: 1024 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4006f25bdd4350540971d3fe850e8cd2 + internalID: -343177767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1158 + rect: + serializedVersion: 2 + x: 1056 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1eacbad067e19bd41a4d5cf663bd34eb + internalID: 1328154320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1159 + rect: + serializedVersion: 2 + x: 1120 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d21a30cc7c8fdf24a936fa7f361545b8 + internalID: -1931347617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1160 + rect: + serializedVersion: 2 + x: 1152 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fa03cbc1c1d653b4c8a7c17199586391 + internalID: -1048769174 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1161 + rect: + serializedVersion: 2 + x: 1184 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fc55e5e96251e9747a73fdcffb59ed92 + internalID: -1853821007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1162 + rect: + serializedVersion: 2 + x: 1280 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c1f28d16db873d41b04515d44ce1b30 + internalID: 24917617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1163 + rect: + serializedVersion: 2 + x: 1312 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: add1106da8daa1846ab36032d8835699 + internalID: 2040156171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1164 + rect: + serializedVersion: 2 + x: 1344 + y: 1248 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3ddda42376b9e0349a45f23c25c490ea + internalID: 1031056823 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1165 + rect: + serializedVersion: 2 + x: 832 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: df864ebef389df84bb90aa9c6e41fddb + internalID: -1588363529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1166 + rect: + serializedVersion: 2 + x: 864 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7b76f9774fa71364ca7f22b3f6dafad5 + internalID: 787070844 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1167 + rect: + serializedVersion: 2 + x: 896 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8936aec77a511cd498502e3731cae7f5 + internalID: -1099257663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1168 + rect: + serializedVersion: 2 + x: 992 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 577d50e9b0b532f4d8c09d58b89f6fae + internalID: 681451960 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1169 + rect: + serializedVersion: 2 + x: 1024 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a06056324d451394087fe0d2727b3747 + internalID: -1190087071 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1170 + rect: + serializedVersion: 2 + x: 1056 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e8c75cb6eaafa8c439061a46220f5ef9 + internalID: -1986346099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1171 + rect: + serializedVersion: 2 + x: 1120 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e01fcecd9c779a34c8f458c1b8b7f8eb + internalID: 1556864376 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1172 + rect: + serializedVersion: 2 + x: 1152 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8df1593b5282cfc4a8ed2f7102b0b817 + internalID: -1460851913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1173 + rect: + serializedVersion: 2 + x: 1184 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f76fa7baddb126c458f1501ae8c43bc5 + internalID: 718123705 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1174 + rect: + serializedVersion: 2 + x: 1280 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6700cee65640ddc40948f7be16ceb519 + internalID: -1649325214 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1175 + rect: + serializedVersion: 2 + x: 1312 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 24e07a902850cb04992845d427d74a04 + internalID: -1880748513 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1176 + rect: + serializedVersion: 2 + x: 1344 + y: 1216 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 37f3db51c02df7a48915ad6f0338c5d6 + internalID: 1514947947 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1177 + rect: + serializedVersion: 2 + x: 832 + y: 1184 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3ac876e3225b9eb498e532d4b6462f62 + internalID: 525871843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1178 + rect: + serializedVersion: 2 + x: 960 + y: 1184 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21f304d7e3dcf8a47805637ac64a9a17 + internalID: 1436040843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1179 + rect: + serializedVersion: 2 + x: 1120 + y: 1184 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 20bcea4fbe8fc40459fb8f4089dcf14b + internalID: 2068024208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1180 + rect: + serializedVersion: 2 + x: 1248 + y: 1184 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 432718b32fbb6dc4783ddbd2d2473526 + internalID: 444746152 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1181 + rect: + serializedVersion: 2 + x: 832 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7adb29ae00480f04ca7e77c98ca5116b + internalID: 1694370879 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1182 + rect: + serializedVersion: 2 + x: 864 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a9e5a8207d4895148a150bb7003f12ad + internalID: 1363370965 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1183 + rect: + serializedVersion: 2 + x: 896 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 249ad1474089d4941aa7e1c953b4f732 + internalID: 826036878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1184 + rect: + serializedVersion: 2 + x: 928 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d88aef4bfd80ee648898381b7eedf484 + internalID: -1722987239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1185 + rect: + serializedVersion: 2 + x: 960 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 926a85cb17f08bf468e43cffb8f431bc + internalID: 1868505953 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1186 + rect: + serializedVersion: 2 + x: 1120 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1e5d529257457ff4f90e752b43af3a23 + internalID: 1002870351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1187 + rect: + serializedVersion: 2 + x: 1152 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fb609fef489213b4cbbd3ca67d74ffe6 + internalID: -748605860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1188 + rect: + serializedVersion: 2 + x: 1184 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6204fcdecb415964e8439b0d9293f9e1 + internalID: 1110184573 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1189 + rect: + serializedVersion: 2 + x: 1216 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 37434613ada60af40a6fd882fbba7006 + internalID: -993495478 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1190 + rect: + serializedVersion: 2 + x: 1248 + y: 1152 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1f2fbc2d4141f9843913357ed66432ac + internalID: 8865187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1191 + rect: + serializedVersion: 2 + x: 832 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0657b662682a6c54a9ccb0221edb848e + internalID: 836326853 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1192 + rect: + serializedVersion: 2 + x: 864 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a6e2d9d6ba9d2ef4f8335388624a513a + internalID: -1266784556 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1193 + rect: + serializedVersion: 2 + x: 896 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0814ed2657dbf74eb62e3c468c93e9e + internalID: 1438368633 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1194 + rect: + serializedVersion: 2 + x: 928 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2278cc50248cd9a43b27d384ea5e823c + internalID: -1320455679 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1195 + rect: + serializedVersion: 2 + x: 960 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 459c0bb004e50a54783575fb097e7d20 + internalID: -849667577 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1196 + rect: + serializedVersion: 2 + x: 1120 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4e6f1c0b8fc4928479953780c6597697 + internalID: 211325443 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1197 + rect: + serializedVersion: 2 + x: 1152 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e3c8bfbcdf78ab1429a2be7ab971a351 + internalID: 737573810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1198 + rect: + serializedVersion: 2 + x: 1184 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b1fcee531d8b44f498978ebb6e8e3c0c + internalID: 96217429 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1199 + rect: + serializedVersion: 2 + x: 1216 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 480b0f44131951948bba43b48006e6de + internalID: -1855263187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1200 + rect: + serializedVersion: 2 + x: 1248 + y: 1120 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b5f2c67893f32674383eab1d7244d717 + internalID: -471323858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1201 + rect: + serializedVersion: 2 + x: 832 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 08f479c0683ddcb46b56e728384f358a + internalID: -1900228069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1202 + rect: + serializedVersion: 2 + x: 864 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 98766841abae1a24d8bbabfe3e87a311 + internalID: -1981376043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1203 + rect: + serializedVersion: 2 + x: 896 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61e1b0e1cf0908f48b284fed31a65f26 + internalID: 1420573385 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1204 + rect: + serializedVersion: 2 + x: 928 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5752792673e38b54383c2457ef6734ad + internalID: -846222889 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1205 + rect: + serializedVersion: 2 + x: 960 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b42b21050cc2ff24b969ceeba8ad386b + internalID: -45236238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1206 + rect: + serializedVersion: 2 + x: 1120 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 45d68f9e9e26da74ab44703ffa078273 + internalID: -24139400 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1207 + rect: + serializedVersion: 2 + x: 1152 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6987acdc2d85cd943b73abbb4c6d4a2c + internalID: -1624151833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1208 + rect: + serializedVersion: 2 + x: 1184 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61e7a20d64a54a343abe45d76e46a14a + internalID: 477543545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1209 + rect: + serializedVersion: 2 + x: 1216 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a53c1b15c4da73a479fe5b1f2edc8250 + internalID: 649295359 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1210 + rect: + serializedVersion: 2 + x: 1248 + y: 1088 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1185f262af4cbf049a747d9d58ca9e62 + internalID: -1105176913 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1211 + rect: + serializedVersion: 2 + x: 832 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ec5cbcb2372438740ae768512f853a9a + internalID: -220712545 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1212 + rect: + serializedVersion: 2 + x: 864 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e77613c71c155154eb9a0230d1901045 + internalID: -1982706148 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1213 + rect: + serializedVersion: 2 + x: 896 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a2d024de8bd63a9428ef8cdc7de73566 + internalID: -315442745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1214 + rect: + serializedVersion: 2 + x: 928 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 53897802867d9b14bab0289c81047609 + internalID: -2017135154 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1215 + rect: + serializedVersion: 2 + x: 960 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 669084df8ae6c084baa8cdca8b3ccd55 + internalID: 866784537 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1216 + rect: + serializedVersion: 2 + x: 1120 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b94abf791635c0c40a8a74e9e82debfa + internalID: -303283136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1217 + rect: + serializedVersion: 2 + x: 1152 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 25a0af82adbdfb8458b8f3a34f37b2f3 + internalID: -760794555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1218 + rect: + serializedVersion: 2 + x: 1184 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8fc0b335a923fa843b18053ae5eae984 + internalID: -1452781493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1219 + rect: + serializedVersion: 2 + x: 1216 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5e605d7859ae6f4aadaa29e2f2c4317 + internalID: -1708123570 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1220 + rect: + serializedVersion: 2 + x: 1248 + y: 1056 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b8e773d9bb2c6044abca3d6f6cb351e + internalID: 1618391091 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1221 + rect: + serializedVersion: 2 + x: 832 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6b86be3cfcbf81046b66b455760e87ea + internalID: 245751144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1222 + rect: + serializedVersion: 2 + x: 864 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 99b9a73d415571347b2ba331869d02e1 + internalID: -300832694 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1223 + rect: + serializedVersion: 2 + x: 928 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3efb64303d877e64197233c269da476a + internalID: -1365148089 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1224 + rect: + serializedVersion: 2 + x: 960 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac114d7acfb0dd34e9a864103e4e40d8 + internalID: -1110703301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1225 + rect: + serializedVersion: 2 + x: 1120 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6dd9071b96b4cb4ba78e84cfbb28dac + internalID: -535466692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1226 + rect: + serializedVersion: 2 + x: 1152 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: db9055b50837bd44387cccd66b4befee + internalID: -1025490760 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1227 + rect: + serializedVersion: 2 + x: 1216 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 065f3253c21fcad44b6087b89fbe90c4 + internalID: -1974092239 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1228 + rect: + serializedVersion: 2 + x: 1248 + y: 1024 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21126184f2e2d7e4880c03f3a1b96b65 + internalID: 1590901743 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1229 + rect: + serializedVersion: 2 + x: 832 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1723aac100c3d414d9029110d7f56e46 + internalID: 1239410249 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1230 + rect: + serializedVersion: 2 + x: 960 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3b3f04609211a074fac332828a686594 + internalID: -329747875 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1231 + rect: + serializedVersion: 2 + x: 1120 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cedb424a64700284599610bb9752d67b + internalID: 470941506 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: TileSet_1232 + rect: + serializedVersion: 2 + x: 1248 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d175e1003966624184aa744675cc572 + internalID: -725151606 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 3929a8188079e734fb53208ab684c70d + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":1,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + TileSet_0: -8213782765776912250 + TileSet_1: -2091980023 + TileSet_10: -1637022591 + TileSet_100: 2115995682 + TileSet_1000: 1432428069 + TileSet_1001: 26995372 + TileSet_1002: 1642122686 + TileSet_1003: 1834595263 + TileSet_1004: -2072697856 + TileSet_1005: 1871892505 + TileSet_1006: 201165699 + TileSet_1007: 531839538 + TileSet_1008: 1372892599 + TileSet_1009: 820694516 + TileSet_101: -1148682216 + TileSet_1010: -904869550 + TileSet_1011: 639701043 + TileSet_1012: 891857801 + TileSet_1013: -628060446 + TileSet_1014: 63772865 + TileSet_1015: 1373076662 + TileSet_1016: -650946755 + TileSet_1017: 1400020216 + TileSet_1018: 495243645 + TileSet_1019: -1660914289 + TileSet_102: 396318470 + TileSet_1020: 1302484544 + TileSet_1021: 981413407 + TileSet_1022: -296054986 + TileSet_1023: 1020933730 + TileSet_1024: 1281512287 + TileSet_1025: 500972738 + TileSet_1026: 1785481710 + TileSet_1027: 2005187599 + TileSet_1028: 1051830800 + TileSet_1029: -1392662044 + TileSet_103: 1496244623 + TileSet_1030: -86282867 + TileSet_1031: -28190273 + TileSet_1032: 1484027313 + TileSet_1033: 1603387415 + TileSet_1034: -529276245 + TileSet_1035: -786604579 + TileSet_1036: -670399609 + TileSet_1037: 1992798099 + TileSet_1038: -1901709987 + TileSet_1039: -1539961964 + TileSet_104: 468218745 + TileSet_1040: 1409224856 + TileSet_1041: 1303696012 + TileSet_1042: 1890302789 + TileSet_1043: 2065906309 + TileSet_1044: 2024915200 + TileSet_1045: 150019940 + TileSet_1046: -1833629397 + TileSet_1047: 2048142112 + TileSet_1048: 1021107956 + TileSet_1049: -521145191 + TileSet_105: -533934185 + TileSet_1050: -162735982 + TileSet_1051: 25800407 + TileSet_1052: -1489295722 + TileSet_1053: -2009543028 + TileSet_1054: 175721944 + TileSet_1055: 587037623 + TileSet_1056: 973004426 + TileSet_1057: 886530648 + TileSet_1058: 1468062290 + TileSet_1059: -1055907879 + TileSet_106: -687463160 + TileSet_1060: 571081644 + TileSet_1061: 828741571 + TileSet_1062: -154690165 + TileSet_1063: -1369783831 + TileSet_1064: 1878800188 + TileSet_1065: 1251456633 + TileSet_1066: 1494696488 + TileSet_1067: 608702827 + TileSet_1068: 1192052719 + TileSet_1069: -291354509 + TileSet_107: 1825280849 + TileSet_1070: -2009048466 + TileSet_1071: -163284354 + TileSet_1072: -834382440 + TileSet_1073: -30194631 + TileSet_1074: -1043796934 + TileSet_1075: 1061061969 + TileSet_1076: 1623374289 + TileSet_1077: -1501561000 + TileSet_1078: 1203787363 + TileSet_1079: 165868029 + TileSet_108: 1075392401 + TileSet_1080: -983709761 + TileSet_1081: -322809247 + TileSet_1082: -1733403134 + TileSet_1083: -1881417772 + TileSet_1084: 1082910544 + TileSet_1085: 40395548 + TileSet_1086: -1118044013 + TileSet_1087: 1114374683 + TileSet_1088: -2008682366 + TileSet_1089: 1138305307 + TileSet_109: -1537153625 + TileSet_1090: 503016969 + TileSet_1091: -773619183 + TileSet_1092: -980782515 + TileSet_1093: 885480452 + TileSet_1094: 1562643458 + TileSet_1095: 1644592823 + TileSet_1096: 2026080655 + TileSet_1097: 619248101 + TileSet_1098: 191678457 + TileSet_1099: 418322038 + TileSet_11: -1973918448 + TileSet_110: -1424443496 + TileSet_1100: 688604615 + TileSet_1101: -1847103872 + TileSet_1102: -714669915 + TileSet_1103: 1426557348 + TileSet_1104: 1391707093 + TileSet_1105: 1742162087 + TileSet_1106: 1214269425 + TileSet_1107: -397996140 + TileSet_1108: 228372744 + TileSet_1109: 1263534893 + TileSet_111: 590413322 + TileSet_1110: 305616374 + TileSet_1111: -1459911257 + TileSet_1112: 1938972760 + TileSet_1113: 291087443 + TileSet_1114: 449726907 + TileSet_1115: -557173462 + TileSet_1116: 2136072575 + TileSet_1117: 2017837233 + TileSet_1118: -435968340 + TileSet_1119: 262032392 + TileSet_112: -680851810 + TileSet_1120: -1861853170 + TileSet_1121: -1063421206 + TileSet_1122: -147927018 + TileSet_1123: 861500552 + TileSet_1124: 860499824 + TileSet_1125: -1351524470 + TileSet_1126: 194246715 + TileSet_1127: 110441744 + TileSet_1128: 1372003840 + TileSet_1129: 85455250 + TileSet_113: -1775194622 + TileSet_1130: -1474433047 + TileSet_1131: 834811426 + TileSet_1132: 968321491 + TileSet_1133: -988789929 + TileSet_1134: 1582964351 + TileSet_1135: -568061886 + TileSet_1136: 1878325356 + TileSet_1137: 1574159774 + TileSet_1138: 1262446568 + TileSet_1139: -43355001 + TileSet_114: 1344572484 + TileSet_1140: -1834657957 + TileSet_1141: -1665384467 + TileSet_1142: -1168658894 + TileSet_1143: -1567494834 + TileSet_1144: -1373265337 + TileSet_1145: -1258437116 + TileSet_1146: -1468440320 + TileSet_1147: 1876071811 + TileSet_1148: 1962415725 + TileSet_1149: -412567738 + TileSet_115: 713485235 + TileSet_1150: -728715132 + TileSet_1151: -1140705477 + TileSet_1152: 2081061395 + TileSet_1153: 1498519677 + TileSet_1154: 2087033144 + TileSet_1155: 1947405145 + TileSet_1156: -334402327 + TileSet_1157: -343177767 + TileSet_1158: 1328154320 + TileSet_1159: -1931347617 + TileSet_116: 1648002840 + TileSet_1160: -1048769174 + TileSet_1161: -1853821007 + TileSet_1162: 24917617 + TileSet_1163: 2040156171 + TileSet_1164: 1031056823 + TileSet_1165: -1588363529 + TileSet_1166: 787070844 + TileSet_1167: -1099257663 + TileSet_1168: 681451960 + TileSet_1169: -1190087071 + TileSet_117: -1871665692 + TileSet_1170: -1986346099 + TileSet_1171: 1556864376 + TileSet_1172: -1460851913 + TileSet_1173: 718123705 + TileSet_1174: -1649325214 + TileSet_1175: -1880748513 + TileSet_1176: 1514947947 + TileSet_1177: 525871843 + TileSet_1178: 1436040843 + TileSet_1179: 2068024208 + TileSet_118: -1225933359 + TileSet_1180: 444746152 + TileSet_1181: 1694370879 + TileSet_1182: 1363370965 + TileSet_1183: 826036878 + TileSet_1184: -1722987239 + TileSet_1185: 1868505953 + TileSet_1186: 1002870351 + TileSet_1187: -748605860 + TileSet_1188: 1110184573 + TileSet_1189: -993495478 + TileSet_119: 1415029393 + TileSet_1190: 8865187 + TileSet_1191: 836326853 + TileSet_1192: -1266784556 + TileSet_1193: 1438368633 + TileSet_1194: -1320455679 + TileSet_1195: -849667577 + TileSet_1196: 211325443 + TileSet_1197: 737573810 + TileSet_1198: 96217429 + TileSet_1199: -1855263187 + TileSet_12: -11663998 + TileSet_120: 776918860 + TileSet_1200: -471323858 + TileSet_1201: -1900228069 + TileSet_1202: -1981376043 + TileSet_1203: 1420573385 + TileSet_1204: -846222889 + TileSet_1205: -45236238 + TileSet_1206: -24139400 + TileSet_1207: -1624151833 + TileSet_1208: 477543545 + TileSet_1209: 649295359 + TileSet_121: -225258149 + TileSet_1210: -1105176913 + TileSet_1211: -220712545 + TileSet_1212: -1982706148 + TileSet_1213: -315442745 + TileSet_1214: -2017135154 + TileSet_1215: 866784537 + TileSet_1216: -303283136 + TileSet_1217: -760794555 + TileSet_1218: -1452781493 + TileSet_1219: -1708123570 + TileSet_122: 683439245 + TileSet_1220: 1618391091 + TileSet_1221: 245751144 + TileSet_1222: -300832694 + TileSet_1223: -1365148089 + TileSet_1224: -1110703301 + TileSet_1225: -535466692 + TileSet_1226: -1025490760 + TileSet_1227: -1974092239 + TileSet_1228: 1590901743 + TileSet_1229: 1239410249 + TileSet_123: 763755308 + TileSet_1230: -329747875 + TileSet_1231: 470941506 + TileSet_1232: -725151606 + TileSet_124: 111490021 + TileSet_125: -1218077437 + TileSet_126: 236641872 + TileSet_127: -942933979 + TileSet_128: -248264959 + TileSet_129: 2074191945 + TileSet_13: 672345152 + TileSet_130: 1686481162 + TileSet_131: -62192800 + TileSet_132: -424083006 + TileSet_133: 170099020 + TileSet_134: -776125353 + TileSet_135: 604128772 + TileSet_136: 1479046242 + TileSet_137: 1036145197 + TileSet_138: -851756212 + TileSet_139: -480120362 + TileSet_14: -22889969 + TileSet_140: -51674748 + TileSet_141: -1060573878 + TileSet_142: 648922895 + TileSet_143: -912325060 + TileSet_144: 1174797886 + TileSet_145: -2007108876 + TileSet_146: -984989407 + TileSet_147: 1495002010 + TileSet_148: 365972031 + TileSet_149: 1679207389 + TileSet_15: -1893594737 + TileSet_150: 2007803605 + TileSet_151: -751951 + TileSet_152: 730727156 + TileSet_153: 954353095 + TileSet_154: 1199537524 + TileSet_155: 698348605 + TileSet_156: 766873566 + TileSet_157: 1163182255 + TileSet_158: -1406732878 + TileSet_159: -371823062 + TileSet_16: -1711137627 + TileSet_160: 1180238655 + TileSet_161: -1521669129 + TileSet_162: -1203889100 + TileSet_163: -1204660457 + TileSet_164: -1806893787 + TileSet_165: 299133911 + TileSet_166: -1429938792 + TileSet_167: -870172209 + TileSet_168: -862427844 + TileSet_169: -1994783994 + TileSet_17: -1679529351 + TileSet_170: 794856011 + TileSet_171: -532063324 + TileSet_172: 1934162689 + TileSet_173: -1629505792 + TileSet_174: 167059563 + TileSet_175: 1750200064 + TileSet_176: 2128979195 + TileSet_177: -1646926345 + TileSet_178: -1483966942 + TileSet_179: -659115796 + TileSet_18: 306902444 + TileSet_180: 244771206 + TileSet_181: -2092798826 + TileSet_182: -230018557 + TileSet_183: 205230550 + TileSet_184: -879367219 + TileSet_185: -1184114684 + TileSet_186: -998783402 + TileSet_187: -1248432042 + TileSet_188: -367777265 + TileSet_189: 889132835 + TileSet_19: 690725602 + TileSet_190: -1141310186 + TileSet_191: -466605291 + TileSet_192: 1694330680 + TileSet_193: 382706765 + TileSet_194: 129078980 + TileSet_195: -386400462 + TileSet_196: -1413852089 + TileSet_197: 1250627094 + TileSet_198: 773994660 + TileSet_199: -1580260822 + TileSet_2: 808602542 + TileSet_20: 378923535 + TileSet_200: -2066076163 + TileSet_201: 1311438394 + TileSet_202: 1985140594 + TileSet_203: 470360621 + TileSet_204: 1665890503 + TileSet_205: 1404156797 + TileSet_206: 845547674 + TileSet_207: 312005271 + TileSet_208: 507454322 + TileSet_209: 1013598659 + TileSet_21: -1974037133 + TileSet_210: -1336304544 + TileSet_211: 106799981 + TileSet_212: 2009408028 + TileSet_213: -676061210 + TileSet_214: 817858247 + TileSet_215: -1197979903 + TileSet_216: -1446794808 + TileSet_217: -576302054 + TileSet_218: -901986593 + TileSet_219: 832637691 + TileSet_22: -1869416980 + TileSet_220: -151298080 + TileSet_221: 1239016068 + TileSet_222: -1524875766 + TileSet_223: -678228096 + TileSet_224: -1045939134 + TileSet_225: 1861590909 + TileSet_226: -719629909 + TileSet_227: 2024754158 + TileSet_228: -1533408240 + TileSet_229: -1999527456 + TileSet_23: 2078236195 + TileSet_230: 1558789645 + TileSet_231: -1048605038 + TileSet_232: -1390095950 + TileSet_233: 517427004 + TileSet_234: 1691616612 + TileSet_235: 1248086800 + TileSet_236: -310479177 + TileSet_237: -288672975 + TileSet_238: -1973644386 + TileSet_239: -1341234865 + TileSet_24: -2069395093 + TileSet_240: -1298585828 + TileSet_241: -169204017 + TileSet_242: 15133664 + TileSet_243: -981942340 + TileSet_244: 901080240 + TileSet_245: -111142796 + TileSet_246: 1166284081 + TileSet_247: -2099479650 + TileSet_248: -1543229647 + TileSet_249: 115497041 + TileSet_25: 464389270 + TileSet_250: -601280333 + TileSet_251: 1950819203 + TileSet_252: 112287333 + TileSet_253: 1319831837 + TileSet_254: 589910740 + TileSet_255: 1547036711 + TileSet_256: 1307042698 + TileSet_257: 387613221 + TileSet_258: 1379560110 + TileSet_259: -632051061 + TileSet_26: 492131593 + TileSet_260: -662548916 + TileSet_261: 606279399 + TileSet_262: -114207356 + TileSet_263: -565536200 + TileSet_264: -1079287170 + TileSet_265: -309561837 + TileSet_266: 2114164467 + TileSet_267: 1184268703 + TileSet_268: -1359561364 + TileSet_269: -2026090579 + TileSet_27: 1478282920 + TileSet_270: 1725504199 + TileSet_271: -1718963148 + TileSet_272: -389402969 + TileSet_273: 210496663 + TileSet_274: -200069396 + TileSet_275: 2044221917 + TileSet_276: 1529192251 + TileSet_277: -111883396 + TileSet_278: 699689109 + TileSet_279: 1923057879 + TileSet_28: 756613790 + TileSet_280: -516417342 + TileSet_281: -55745990 + TileSet_282: -965244695 + TileSet_283: -1647497597 + TileSet_284: 1790955174 + TileSet_285: -692935483 + TileSet_286: 906877987 + TileSet_287: -949534415 + TileSet_288: -1501459844 + TileSet_289: 1732497648 + TileSet_29: 1504914557 + TileSet_290: -1991156522 + TileSet_291: -356219212 + TileSet_292: 1326708771 + TileSet_293: -809208982 + TileSet_294: -771401738 + TileSet_295: -47495578 + TileSet_296: -209457998 + TileSet_297: -1339577257 + TileSet_298: -2039413027 + TileSet_299: -390647743 + TileSet_3: 1034729842 + TileSet_30: -614783829 + TileSet_300: 1338296683 + TileSet_301: -18734218 + TileSet_302: 332626717 + TileSet_303: -1705694771 + TileSet_304: -1182677322 + TileSet_305: 692468290 + TileSet_306: -1150326614 + TileSet_307: 617683137 + TileSet_308: -1178838810 + TileSet_309: 1083120984 + TileSet_31: 441543216 + TileSet_310: -285357115 + TileSet_311: -964117831 + TileSet_312: 1104002873 + TileSet_313: -1944299262 + TileSet_314: -1025690254 + TileSet_315: -1703270944 + TileSet_316: -2107371658 + TileSet_317: -521817034 + TileSet_318: 264670492 + TileSet_319: 175459571 + TileSet_32: -332368863 + TileSet_320: 1464634238 + TileSet_321: -806056994 + TileSet_322: -2126321018 + TileSet_323: -1730021095 + TileSet_324: -1020167632 + TileSet_325: -2042310149 + TileSet_326: -1200999885 + TileSet_327: 2020197899 + TileSet_328: 937825422 + TileSet_329: -709010380 + TileSet_33: 934303591 + TileSet_330: -989895381 + TileSet_331: -770475222 + TileSet_332: 912795325 + TileSet_333: 1964967981 + TileSet_334: -1586436596 + TileSet_335: 2044922827 + TileSet_336: -2066247616 + TileSet_337: 1228379139 + TileSet_338: 1934238339 + TileSet_339: 724125331 + TileSet_34: 1761075173 + TileSet_340: 1616070227 + TileSet_341: 1278862127 + TileSet_342: 1750224391 + TileSet_343: -256006884 + TileSet_344: -492066109 + TileSet_345: -1425913756 + TileSet_346: 841482424 + TileSet_347: -217351607 + TileSet_348: 1096114068 + TileSet_349: 2013610835 + TileSet_35: 1408086333 + TileSet_350: 68279746 + TileSet_351: -1834148297 + TileSet_352: 323823108 + TileSet_353: 1475862348 + TileSet_354: -588474639 + TileSet_355: -457812062 + TileSet_356: -1537056638 + TileSet_357: 1925672746 + TileSet_358: 1559490232 + TileSet_359: 1426867007 + TileSet_36: -1558838387 + TileSet_360: -865347438 + TileSet_361: -422010068 + TileSet_362: -256373695 + TileSet_363: -1260768086 + TileSet_364: -1639772057 + TileSet_365: -1329439837 + TileSet_366: -1791608393 + TileSet_367: 1639494283 + TileSet_368: -154659819 + TileSet_369: 1543142001 + TileSet_37: 1608773898 + TileSet_370: -758697139 + TileSet_371: -1038173937 + TileSet_372: -643983628 + TileSet_373: -1687850070 + TileSet_374: -121169144 + TileSet_375: 462360729 + TileSet_376: 69477053 + TileSet_377: 2044619515 + TileSet_378: -1747593961 + TileSet_379: 664281504 + TileSet_38: 744791909 + TileSet_380: 458922029 + TileSet_381: 390591916 + TileSet_382: 161866652 + TileSet_383: 122639502 + TileSet_384: -592901511 + TileSet_385: 625168274 + TileSet_386: 782163888 + TileSet_387: 1127861189 + TileSet_388: -500495237 + TileSet_389: -148375688 + TileSet_39: -501495129 + TileSet_390: 1499809179 + TileSet_391: -1325431647 + TileSet_392: -523736992 + TileSet_393: 811988231 + TileSet_394: 689582677 + TileSet_395: -1925848756 + TileSet_396: 599292031 + TileSet_397: -916654285 + TileSet_398: -1360371017 + TileSet_399: 1460993213 + TileSet_4: -1969391351 + TileSet_40: 688914714 + TileSet_400: -1961300710 + TileSet_401: 640130280 + TileSet_402: 2132862838 + TileSet_403: 1747962737 + TileSet_404: 1538948677 + TileSet_405: 1574439452 + TileSet_406: 275906363 + TileSet_407: -541572912 + TileSet_408: -1243956592 + TileSet_409: -285555896 + TileSet_41: 1518634099 + TileSet_410: -1961688611 + TileSet_411: 862559023 + TileSet_412: 526228375 + TileSet_413: -1270029014 + TileSet_414: 1283503815 + TileSet_415: -1392007156 + TileSet_416: -1466708385 + TileSet_417: -360254929 + TileSet_418: 415218600 + TileSet_419: -1864196749 + TileSet_42: -1318014903 + TileSet_420: 1319160198 + TileSet_421: -717790924 + TileSet_422: -213422407 + TileSet_423: 209345036 + TileSet_424: 588891256 + TileSet_425: -1047122938 + TileSet_426: -1388210669 + TileSet_427: -2042349717 + TileSet_428: 1836153225 + TileSet_429: -1311901947 + TileSet_43: 1191597225 + TileSet_430: 618487766 + TileSet_431: -1603266610 + TileSet_432: 1371797441 + TileSet_433: -614707767 + TileSet_434: -806308165 + TileSet_435: -1886251469 + TileSet_436: 1206133819 + TileSet_437: -1728326717 + TileSet_438: 347947193 + TileSet_439: -1841097575 + TileSet_44: 1297063972 + TileSet_440: 1506121580 + TileSet_441: 188346974 + TileSet_442: 1798409357 + TileSet_443: 463340211 + TileSet_444: 367293374 + TileSet_445: 463954183 + TileSet_446: 574178910 + TileSet_447: 1314848354 + TileSet_448: 527348104 + TileSet_449: -694346403 + TileSet_45: -970920152 + TileSet_450: -1228595194 + TileSet_451: -1944682570 + TileSet_452: 1655066385 + TileSet_453: 645972290 + TileSet_454: 119154412 + TileSet_455: -1957654589 + TileSet_456: 719224770 + TileSet_457: 547781055 + TileSet_458: -2135939717 + TileSet_459: -1124360216 + TileSet_46: -1272814326 + TileSet_460: 1672258766 + TileSet_461: -1532640855 + TileSet_462: -1397130373 + TileSet_463: 1150440743 + TileSet_464: 1879888391 + TileSet_465: 584997838 + TileSet_466: -1107809535 + TileSet_467: -985680964 + TileSet_468: -456842197 + TileSet_469: 1897625572 + TileSet_47: 1903439206 + TileSet_470: -1442526602 + TileSet_471: -638875847 + TileSet_472: 596969960 + TileSet_473: -1274580489 + TileSet_474: -1680179310 + TileSet_475: -2086249315 + TileSet_476: -584746202 + TileSet_477: -672645159 + TileSet_478: 235635355 + TileSet_479: 939512653 + TileSet_48: -1315279713 + TileSet_480: 1700123747 + TileSet_481: 1345114102 + TileSet_482: 1963617163 + TileSet_483: 1059591378 + TileSet_484: 1732920021 + TileSet_485: -2082174680 + TileSet_486: -1796467332 + TileSet_487: 993473278 + TileSet_488: -982083582 + TileSet_489: 959384962 + TileSet_49: 403941079 + TileSet_490: -1612240619 + TileSet_491: 1726231056 + TileSet_492: -360411158 + TileSet_493: -1009268886 + TileSet_494: 133299723 + TileSet_495: -415228198 + TileSet_496: -1334568484 + TileSet_497: 271758396 + TileSet_498: 1824547154 + TileSet_499: 1797234116 + TileSet_5: 345020307 + TileSet_50: 880789252 + TileSet_500: -26310226 + TileSet_501: 2148498 + TileSet_502: -1859923355 + TileSet_503: -952699418 + TileSet_504: -2037471521 + TileSet_505: -817367079 + TileSet_506: 291459114 + TileSet_507: 851477870 + TileSet_508: -77263987 + TileSet_509: 1789472401 + TileSet_51: 232506583 + TileSet_510: 1845919430 + TileSet_511: -651976332 + TileSet_512: 769992003 + TileSet_513: 474873407 + TileSet_514: 1724844503 + TileSet_515: 163720353 + TileSet_516: -1011803099 + TileSet_517: -1853348630 + TileSet_518: 2049129330 + TileSet_519: 2110331155 + TileSet_52: 795479210 + TileSet_520: -318731677 + TileSet_521: 1639234757 + TileSet_522: -300073872 + TileSet_523: -259556843 + TileSet_524: -1188871154 + TileSet_525: -1718953647 + TileSet_526: -1516056561 + TileSet_527: 1776235759 + TileSet_528: 1207313398 + TileSet_529: 115627471 + TileSet_53: 591810075 + TileSet_530: 1178755370 + TileSet_531: 798528549 + TileSet_532: 397732504 + TileSet_533: -513184672 + TileSet_534: 605036293 + TileSet_535: -2011091862 + TileSet_536: 1712057509 + TileSet_537: -2044889258 + TileSet_538: -1375391812 + TileSet_539: -241853555 + TileSet_54: 1672794281 + TileSet_540: 1052723084 + TileSet_541: -434318034 + TileSet_542: -1841130376 + TileSet_543: 1922994686 + TileSet_544: -1440299381 + TileSet_545: -558162728 + TileSet_546: 828571371 + TileSet_547: -1319038647 + TileSet_548: -1510357489 + TileSet_549: 193122902 + TileSet_55: 1161709212 + TileSet_550: -1990596006 + TileSet_551: -131072201 + TileSet_552: 1818323814 + TileSet_553: -1843765129 + TileSet_554: 1090431132 + TileSet_555: 742221673 + TileSet_556: 562840153 + TileSet_557: 614478969 + TileSet_558: -1036223694 + TileSet_559: -1879361269 + TileSet_56: -895575445 + TileSet_560: -1589354503 + TileSet_561: -2014591395 + TileSet_562: 314550057 + TileSet_563: 1725599510 + TileSet_564: 1812848891 + TileSet_565: 472998926 + TileSet_566: -1246201857 + TileSet_567: -323327451 + TileSet_568: 1257802405 + TileSet_569: 1116432645 + TileSet_57: -609577957 + TileSet_570: 752711119 + TileSet_571: 428943417 + TileSet_572: -841160125 + TileSet_573: -1245987101 + TileSet_574: 166563524 + TileSet_575: 508736357 + TileSet_576: 1291567409 + TileSet_577: -1563489863 + TileSet_578: 925364163 + TileSet_579: 935557921 + TileSet_58: -1660658742 + TileSet_580: 2102287589 + TileSet_581: -1060047891 + TileSet_582: -2123234724 + TileSet_583: 1192591149 + TileSet_584: 890438510 + TileSet_585: 493276496 + TileSet_586: 1992381769 + TileSet_587: 849984522 + TileSet_588: -1520052407 + TileSet_589: 835080892 + TileSet_59: 1735855620 + TileSet_590: 42922983 + TileSet_591: 991107201 + TileSet_592: 1190238308 + TileSet_593: -33538371 + TileSet_594: -597734427 + TileSet_595: -2079016826 + TileSet_596: -1436540610 + TileSet_597: 1059313267 + TileSet_598: 1269876501 + TileSet_599: -1241624924 + TileSet_6: -771129666 + TileSet_60: 521289206 + TileSet_600: 779082493 + TileSet_601: -1661641926 + TileSet_602: 622955177 + TileSet_603: -772637933 + TileSet_604: 2018633094 + TileSet_605: 82798770 + TileSet_606: 1169437513 + TileSet_607: 246000194 + TileSet_608: -1880934783 + TileSet_609: -1054654289 + TileSet_61: -980643652 + TileSet_610: -1502234352 + TileSet_611: -1297694719 + TileSet_612: 720901669 + TileSet_613: -757121593 + TileSet_614: -874652868 + TileSet_615: -99931526 + TileSet_616: -1804183062 + TileSet_617: 996234153 + TileSet_618: -1348764919 + TileSet_619: 1792165492 + TileSet_62: -1770452712 + TileSet_620: 532032895 + TileSet_621: 1217482321 + TileSet_622: 518027196 + TileSet_623: -1110574340 + TileSet_624: -1339371711 + TileSet_625: -787259836 + TileSet_626: -215126175 + TileSet_627: 1005627136 + TileSet_628: -547205152 + TileSet_629: -121972492 + TileSet_63: -2142568595 + TileSet_630: 1067699188 + TileSet_631: 1136972262 + TileSet_632: -1123258787 + TileSet_633: 448281329 + TileSet_634: 39497722 + TileSet_635: 1927826854 + TileSet_636: -1233063829 + TileSet_637: -798671079 + TileSet_638: 2035247803 + TileSet_639: 1890605168 + TileSet_64: 1388364783 + TileSet_640: 1821383855 + TileSet_641: -242448940 + TileSet_642: 1926848877 + TileSet_643: -428762597 + TileSet_644: 1025257452 + TileSet_645: -1468193114 + TileSet_646: 1419872509 + TileSet_647: 1945921984 + TileSet_648: 926912026 + TileSet_649: -1584081732 + TileSet_65: 61163666 + TileSet_650: -747088750 + TileSet_651: 574973780 + TileSet_652: -1482735698 + TileSet_653: 752004547 + TileSet_654: -1543339695 + TileSet_655: -2078083054 + TileSet_656: -1098225733 + TileSet_657: 574592685 + TileSet_658: 1892330227 + TileSet_659: 670061879 + TileSet_66: 1459420229 + TileSet_660: -1493661845 + TileSet_661: 1121695840 + TileSet_662: -242499463 + TileSet_663: 1180193777 + TileSet_664: 615060613 + TileSet_665: 464147227 + TileSet_666: -780937152 + TileSet_667: 1175708424 + TileSet_668: 360046320 + TileSet_669: 1234330634 + TileSet_67: -556691269 + TileSet_670: 1208889644 + TileSet_671: -307429950 + TileSet_672: -1094102212 + TileSet_673: 913697946 + TileSet_674: -2009490169 + TileSet_675: -493134402 + TileSet_676: 234809615 + TileSet_677: -1619449066 + TileSet_678: -770806474 + TileSet_679: -1979906176 + TileSet_68: -599313497 + TileSet_680: 736330442 + TileSet_681: 610320349 + TileSet_682: 2074339693 + TileSet_683: -456743873 + TileSet_684: 1959131324 + TileSet_685: 16284510 + TileSet_686: -454876296 + TileSet_687: 190582092 + TileSet_688: 1216973260 + TileSet_689: 966514842 + TileSet_69: -304851384 + TileSet_690: 1798285755 + TileSet_691: -3249913 + TileSet_692: -172447316 + TileSet_693: -563632965 + TileSet_694: -1717941323 + TileSet_695: 1704838150 + TileSet_696: 1055201520 + TileSet_697: -1652305910 + TileSet_698: 892092110 + TileSet_699: -1462062216 + TileSet_7: 1028756973 + TileSet_70: -2140536376 + TileSet_700: 1770565519 + TileSet_701: 1566475676 + TileSet_702: -746636963 + TileSet_703: 903230026 + TileSet_704: -891709741 + TileSet_705: -1558941912 + TileSet_706: 961146367 + TileSet_707: 2142119794 + TileSet_708: -274347825 + TileSet_709: -1502954958 + TileSet_71: 42217777 + TileSet_710: 1867867374 + TileSet_711: 1193550193 + TileSet_712: -87723469 + TileSet_713: -1261283656 + TileSet_714: -557276539 + TileSet_715: 141875794 + TileSet_716: 921375690 + TileSet_717: -2139977298 + TileSet_718: 1111756119 + TileSet_719: -1672348627 + TileSet_72: 417988734 + TileSet_720: -1705337520 + TileSet_721: -1054327341 + TileSet_722: -1428752875 + TileSet_723: 188173998 + TileSet_724: 762608199 + TileSet_725: -268632712 + TileSet_726: 1797347593 + TileSet_727: 1956782631 + TileSet_728: 521142639 + TileSet_729: 619101716 + TileSet_73: 1971329622 + TileSet_730: 441726094 + TileSet_731: 2094543577 + TileSet_732: 463587105 + TileSet_733: 1658532376 + TileSet_734: -457834190 + TileSet_735: 1085368234 + TileSet_736: 759472297 + TileSet_737: -551397007 + TileSet_738: -1232321533 + TileSet_739: 426143873 + TileSet_74: -749745694 + TileSet_740: -250607884 + TileSet_741: -435871170 + TileSet_742: 1006736776 + TileSet_743: 1798668150 + TileSet_744: -298182075 + TileSet_745: -1197230082 + TileSet_746: 130244142 + TileSet_747: 1559370205 + TileSet_748: 892299915 + TileSet_749: -1706609386 + TileSet_75: 1195910346 + TileSet_750: 1297000546 + TileSet_751: 277436990 + TileSet_752: 1158918367 + TileSet_753: 1575097978 + TileSet_754: -1029051395 + TileSet_755: -1921074780 + TileSet_756: -567634828 + TileSet_757: 1022219435 + TileSet_758: 2120290716 + TileSet_759: -1118929787 + TileSet_76: 1598002379 + TileSet_760: -1288754777 + TileSet_761: -84915396 + TileSet_762: -22988599 + TileSet_763: 1447654766 + TileSet_764: -215944146 + TileSet_765: 161442330 + TileSet_766: 970244804 + TileSet_767: 1981352924 + TileSet_768: -1420088672 + TileSet_769: 2130430120 + TileSet_77: 693198921 + TileSet_770: -960201894 + TileSet_771: 2030992261 + TileSet_772: -997511807 + TileSet_773: 1462609847 + TileSet_774: -1070039912 + TileSet_775: -1101345073 + TileSet_776: -1393818144 + TileSet_777: -2109662947 + TileSet_778: -1423636219 + TileSet_779: -331807621 + TileSet_78: 1849728072 + TileSet_780: -1660762549 + TileSet_781: 371259779 + TileSet_782: 1002182521 + TileSet_783: 1993399499 + TileSet_784: -1956939237 + TileSet_785: 1210590414 + TileSet_786: -353917679 + TileSet_787: -1938821477 + TileSet_788: 892658210 + TileSet_789: -1027477222 + TileSet_79: -649555225 + TileSet_790: 614213833 + TileSet_791: -544851128 + TileSet_792: 1978681424 + TileSet_793: 824279719 + TileSet_794: 1309439091 + TileSet_795: -736802272 + TileSet_796: -624218431 + TileSet_797: -2056685302 + TileSet_798: -972406553 + TileSet_799: 1985959148 + TileSet_8: 1023129100 + TileSet_80: 284577078 + TileSet_800: 473861694 + TileSet_801: 1426422653 + TileSet_802: -942348392 + TileSet_803: -967275853 + TileSet_804: -1529448709 + TileSet_805: -353760818 + TileSet_806: -1439701224 + TileSet_807: -1849340174 + TileSet_808: -815264223 + TileSet_809: -412777983 + TileSet_81: 46740683 + TileSet_810: -1771236103 + TileSet_811: 381890856 + TileSet_812: 1647176668 + TileSet_813: 1068094524 + TileSet_814: 2069731711 + TileSet_815: 773827615 + TileSet_816: 2095803164 + TileSet_817: 1669299050 + TileSet_818: 2016236733 + TileSet_819: 1163619267 + TileSet_82: -1966276520 + TileSet_820: -880812708 + TileSet_821: 992616196 + TileSet_822: 1991660915 + TileSet_823: -643574434 + TileSet_824: -586324870 + TileSet_825: 1770016582 + TileSet_826: 1513091595 + TileSet_827: 357489171 + TileSet_828: 397098618 + TileSet_829: -2003735446 + TileSet_83: 1774512314 + TileSet_830: -1734137698 + TileSet_831: 417810826 + TileSet_832: -403478367 + TileSet_833: -1367023133 + TileSet_834: 489848069 + TileSet_835: 1255133046 + TileSet_836: -1945963737 + TileSet_837: -766832620 + TileSet_838: 415134027 + TileSet_839: 1270418236 + TileSet_84: 1248685899 + TileSet_840: 1540790805 + TileSet_841: -1921158754 + TileSet_842: -2118923191 + TileSet_843: 2034337357 + TileSet_844: -161937851 + TileSet_845: -88609878 + TileSet_846: 347321781 + TileSet_847: 1010447065 + TileSet_848: -538088036 + TileSet_849: 1594821135 + TileSet_85: -518502598 + TileSet_850: -916780080 + TileSet_851: -1505336821 + TileSet_852: -412527812 + TileSet_853: -757034840 + TileSet_854: -2088372233 + TileSet_855: -1440848689 + TileSet_856: -1875482081 + TileSet_857: 1823611396 + TileSet_858: -1043934275 + TileSet_859: 149865379 + TileSet_86: -1628924112 + TileSet_860: 1535297925 + TileSet_861: 1934104544 + TileSet_862: -581690281 + TileSet_863: -1915800825 + TileSet_864: 1788543624 + TileSet_865: 1806683200 + TileSet_866: 552642368 + TileSet_867: 341320534 + TileSet_868: 1432797853 + TileSet_869: 183120527 + TileSet_87: 1697749064 + TileSet_870: -1074969981 + TileSet_871: -2050072078 + TileSet_872: -834203809 + TileSet_873: 1529464418 + TileSet_874: -1780770190 + TileSet_875: 519176359 + TileSet_876: -2108575711 + TileSet_877: -443407108 + TileSet_878: 749917869 + TileSet_879: -850113740 + TileSet_88: 1670725231 + TileSet_880: -507658832 + TileSet_881: 1004094678 + TileSet_882: 155074351 + TileSet_883: -971428963 + TileSet_884: -960399974 + TileSet_885: -287163296 + TileSet_886: -2136621913 + TileSet_887: -1344958148 + TileSet_888: 1591008322 + TileSet_889: 502817078 + TileSet_89: -892484406 + TileSet_890: 1812505902 + TileSet_891: 868179872 + TileSet_892: 849653198 + TileSet_893: 804409253 + TileSet_894: 916177381 + TileSet_895: -697707457 + TileSet_896: 1801924761 + TileSet_897: 1177842441 + TileSet_898: -1198364912 + TileSet_899: -1488960319 + TileSet_9: -1317182054 + TileSet_90: 318696124 + TileSet_900: 933399252 + TileSet_901: 178676906 + TileSet_902: -427043649 + TileSet_903: -1558215262 + TileSet_904: 1654610563 + TileSet_905: 1793043178 + TileSet_906: 254564247 + TileSet_907: 193262150 + TileSet_908: -906165074 + TileSet_909: 707857470 + TileSet_91: -1587880220 + TileSet_910: 278216441 + TileSet_911: -336404046 + TileSet_912: -1265612745 + TileSet_913: -1131307540 + TileSet_914: -1933096911 + TileSet_915: -398783193 + TileSet_916: -570947897 + TileSet_917: -615369816 + TileSet_918: -1892381931 + TileSet_919: 1039150203 + TileSet_92: 505804250 + TileSet_920: -1953797443 + TileSet_921: -1156408292 + TileSet_922: -1625237641 + TileSet_923: 495753671 + TileSet_924: -685235765 + TileSet_925: 2073361388 + TileSet_926: -1888597837 + TileSet_927: -530760898 + TileSet_928: 2098844915 + TileSet_929: 1008384958 + TileSet_93: 166090502 + TileSet_930: -440436328 + TileSet_931: 1439704719 + TileSet_932: -801458228 + TileSet_933: -458963068 + TileSet_934: 166183733 + TileSet_935: 741976471 + TileSet_936: 1220043872 + TileSet_937: -1194070841 + TileSet_938: 1366267097 + TileSet_939: 2030749764 + TileSet_94: 464863633 + TileSet_940: -276548078 + TileSet_941: -1294005120 + TileSet_942: 281219433 + TileSet_943: -276288445 + TileSet_944: 1480819097 + TileSet_945: 451053304 + TileSet_946: 991944897 + TileSet_947: 1318663780 + TileSet_948: 7382531 + TileSet_949: -1727620604 + TileSet_95: -1923256931 + TileSet_950: -1974041717 + TileSet_951: -1880512552 + TileSet_952: 951730628 + TileSet_953: 261597716 + TileSet_954: 228191690 + TileSet_955: -1345637957 + TileSet_956: -1920243260 + TileSet_957: -1455441783 + TileSet_958: 932623388 + TileSet_959: -2049218693 + TileSet_96: -198470280 + TileSet_960: -896073482 + TileSet_961: 969892732 + TileSet_962: 2035076876 + TileSet_963: -1184897488 + TileSet_964: -1222133844 + TileSet_965: 222365247 + TileSet_966: -161445355 + TileSet_967: 1581787903 + TileSet_968: 857697665 + TileSet_969: -1465390806 + TileSet_97: -1460477981 + TileSet_970: 122857039 + TileSet_971: -647488869 + TileSet_972: 97832163 + TileSet_973: 1154409590 + TileSet_974: -1104095174 + TileSet_975: 636113621 + TileSet_976: 1689981936 + TileSet_977: -500273124 + TileSet_978: -2046723437 + TileSet_979: -827344944 + TileSet_98: 344918654 + TileSet_980: 295921323 + TileSet_981: 606372024 + TileSet_982: 543882148 + TileSet_983: -765494887 + TileSet_984: 631599607 + TileSet_985: -2113066366 + TileSet_986: -2005822846 + TileSet_987: 299373703 + TileSet_988: 9143741 + TileSet_989: 1482334529 + TileSet_99: 1746600562 + TileSet_990: 1428145695 + TileSet_991: -1721546994 + TileSet_992: -1402207393 + TileSet_993: 1109183732 + TileSet_994: 1177817681 + TileSet_995: 1413683219 + TileSet_996: 827533282 + TileSet_997: 774621332 + TileSet_998: -927370743 + TileSet_999: 528362454 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps/ForgottenMemories/Trees.png b/Assets/03_Models/Maps/ForgottenMemories/Trees.png new file mode 100644 index 0000000..0d5386a --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/Trees.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bea83fa7933d060ed6edcd1353d40dce1a7db4e5c80aa602fd8109844f5eac50 +size 72592 diff --git a/Assets/03_Models/Maps/ForgottenMemories/Trees.png.meta b/Assets/03_Models/Maps/ForgottenMemories/Trees.png.meta new file mode 100644 index 0000000..079ab31 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/Trees.png.meta @@ -0,0 +1,979 @@ +fileFormatVersion: 2 +guid: f3b454785ecf6ac4094b3fe9cf1a0f45 +TextureImporter: + internalIDToNameTable: + - first: + 213: 2572236292851511218 + second: Trees_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Trees_0 + rect: + serializedVersion: 2 + x: 15 + y: 887 + width: 74 + height: 98 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 2bf28c1b74b62b320800000000000000 + internalID: 2572236292851511218 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_1 + rect: + serializedVersion: 2 + x: 99 + y: 890 + width: 94 + height: 92 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac0b91a29bfbb2549809b8f0ea1746a9 + internalID: 30130320 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_2 + rect: + serializedVersion: 2 + x: 196 + y: 892 + width: 56 + height: 84 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f1c338d565fe2ea43b5c9566bb95a2eb + internalID: -1510566223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_3 + rect: + serializedVersion: 2 + x: 265 + y: 891 + width: 47 + height: 80 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 45cd2162b116983498a42156682e50df + internalID: -447046508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_4 + rect: + serializedVersion: 2 + x: 327 + y: 858 + width: 179 + height: 161 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f489be9b89ac39747a2954e733df6455 + internalID: -78869461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_5 + rect: + serializedVersion: 2 + x: 57 + y: 863 + width: 27 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 368fc568c33906b49857c15d4fa89f78 + internalID: 1611957770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_6 + rect: + serializedVersion: 2 + x: 150 + y: 861 + width: 22 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e42b955f707ad94428a41656bafec03f + internalID: -658922984 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_7 + rect: + serializedVersion: 2 + x: 222 + y: 863 + width: 17 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: de99bd85420100b4895826e07847b5d8 + internalID: -1610804838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_8 + rect: + serializedVersion: 2 + x: 268 + y: 849 + width: 16 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 38bbad25ee014944a80c3877dd14f3ce + internalID: -432302226 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_9 + rect: + serializedVersion: 2 + x: 296 + y: 873 + width: 11 + height: 17 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c350157bee0976d429ddb80cf92edef0 + internalID: -1131184553 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_10 + rect: + serializedVersion: 2 + x: 23 + y: 834 + width: 27 + height: 33 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: de4d4278a716eb44abbb4e03486cef56 + internalID: -1536841587 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_11 + rect: + serializedVersion: 2 + x: 58 + y: 834 + width: 26 + height: 25 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b1d02c1cd1d06cf468f3ee2f7c46af37 + internalID: 349678187 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_12 + rect: + serializedVersion: 2 + x: 117 + y: 833 + width: 27 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cbd57b96e1cb69e499ec4926c437a45e + internalID: -1240012901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_13 + rect: + serializedVersion: 2 + x: 147 + y: 833 + width: 28 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b4c943599e7d93444b4862260a91d332 + internalID: 1430840242 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_14 + rect: + serializedVersion: 2 + x: 198 + y: 836 + width: 19 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e384f93448ffdd41bf11a786d9a7ee4 + internalID: -1253370874 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_15 + rect: + serializedVersion: 2 + x: 224 + y: 836 + width: 17 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d97c2a1519bcfbb489fb09582150a195 + internalID: 617865730 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_16 + rect: + serializedVersion: 2 + x: 293 + y: 849 + width: 17 + height: 22 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dcee26e27feaaca4cb361c7354d4137d + internalID: -845307721 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_17 + rect: + serializedVersion: 2 + x: 458 + y: 819 + width: 36 + height: 39 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8fd2115a5eb2f3e4bbaf4c6711d1d5e9 + internalID: 606173675 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_18 + rect: + serializedVersion: 2 + x: 395 + y: 777 + width: 52 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4c600646dc493464d86cf6a06218fce4 + internalID: -1999906834 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_19 + rect: + serializedVersion: 2 + x: 591 + y: 771 + width: 52 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0ac5223a1c6680d4f84f4fe14087b4f3 + internalID: -616887810 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_20 + rect: + serializedVersion: 2 + x: 18 + y: 608 + width: 74 + height: 109 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 860fc2a89f872ea40b1a404a0b3b5d59 + internalID: -371738535 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_21 + rect: + serializedVersion: 2 + x: 102 + y: 608 + width: 94 + height: 106 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e9bdb98b61bd634fb5972733e4bdacb + internalID: 1946386564 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_22 + rect: + serializedVersion: 2 + x: 199 + y: 608 + width: 56 + height: 100 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff1281ccc6b5ebf4b993c79d0bdbc17f + internalID: 1007170904 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_23 + rect: + serializedVersion: 2 + x: 268 + y: 611 + width: 47 + height: 92 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0223e4e1b64b23c4780ed10dc24b76a4 + internalID: 1157389444 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_24 + rect: + serializedVersion: 2 + x: 330 + y: 585 + width: 179 + height: 166 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 039769a692328e240a7e01bbb94a61c1 + internalID: -2130630534 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_25 + rect: + serializedVersion: 2 + x: 732 + y: 420 + width: 183 + height: 231 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cae779f0f2d671942b5a83f4c4a34e96 + internalID: 1106324045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_26 + rect: + serializedVersion: 2 + x: 47 + y: 564 + width: 26 + height: 25 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dbede3d81566ab9428c8332da09242f1 + internalID: 1554607144 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_27 + rect: + serializedVersion: 2 + x: 137 + y: 563 + width: 28 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6a6aac3723f0db4883e4f97b75b8eed + internalID: 1141778523 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_28 + rect: + serializedVersion: 2 + x: 221 + y: 562 + width: 17 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 351fe59059b151546b8e4fd362f8cec6 + internalID: -1495147590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_29 + rect: + serializedVersion: 2 + x: 283 + y: 566 + width: 17 + height: 22 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5fcaf61c90da1cc4b87e61c6c103fdb6 + internalID: 775421547 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_30 + rect: + serializedVersion: 2 + x: 403 + y: 529 + width: 53 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d3bb048c04abc8e4cbe681e516481115 + internalID: -652870396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_31 + rect: + serializedVersion: 2 + x: 14 + y: 335 + width: 74 + height: 136 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17321a62acb18014fbfbe5c7e838eecf + internalID: -567516758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_32 + rect: + serializedVersion: 2 + x: 163 + y: 341 + width: 94 + height: 135 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dba2cf4055fc2a34bb7943ae1957b1ac + internalID: -1843162070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_33 + rect: + serializedVersion: 2 + x: 394 + y: 345 + width: 56 + height: 125 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 42ca3e1370e818b4f846d1802859876f + internalID: 1297614042 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_34 + rect: + serializedVersion: 2 + x: 548 + y: 347 + width: 48 + height: 122 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c409ee4f2dbd9b64c9640a3c1af296e9 + internalID: 1083299203 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 75fad2f3e7ca8284bbb3277f85e0aa03 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":0,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Trees_0: 2572236292851511218 + Trees_1: 30130320 + Trees_10: -1536841587 + Trees_11: 349678187 + Trees_12: -1240012901 + Trees_13: 1430840242 + Trees_14: -1253370874 + Trees_15: 617865730 + Trees_16: -845307721 + Trees_17: 606173675 + Trees_18: -1999906834 + Trees_19: -616887810 + Trees_2: -1510566223 + Trees_20: -371738535 + Trees_21: 1946386564 + Trees_22: 1007170904 + Trees_23: 1157389444 + Trees_24: -2130630534 + Trees_25: 1106324045 + Trees_26: 1554607144 + Trees_27: 1141778523 + Trees_28: -1495147590 + Trees_29: 775421547 + Trees_3: -447046508 + Trees_30: -652870396 + Trees_31: -567516758 + Trees_32: -1843162070 + Trees_33: 1297614042 + Trees_34: 1083299203 + Trees_4: -78869461 + Trees_5: 1611957770 + Trees_6: -658922984 + Trees_7: -1610804838 + Trees_8: -432302226 + Trees_9: -1131184553 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps/ForgottenMemories/Trees_seperated.png b/Assets/03_Models/Maps/ForgottenMemories/Trees_seperated.png new file mode 100644 index 0000000..5b64a00 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/Trees_seperated.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502588cea165d200e59b7bc5d66d0c67c7185dcaccc2a47d18a8b58b6bb290ac +size 46663 diff --git a/Assets/03_Models/Maps/ForgottenMemories/Trees_seperated.png.meta b/Assets/03_Models/Maps/ForgottenMemories/Trees_seperated.png.meta new file mode 100644 index 0000000..40857d3 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/Trees_seperated.png.meta @@ -0,0 +1,979 @@ +fileFormatVersion: 2 +guid: 2f29684056a4f1f40a79423b6340f398 +TextureImporter: + internalIDToNameTable: + - first: + 213: -4886661424647071765 + second: Trees_seperated_0 + 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: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: Trees_seperated_0 + rect: + serializedVersion: 2 + x: 15 + y: 503 + width: 74 + height: 98 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: be79e4e23571f2cb0800000000000000 + internalID: -4886661424647071765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_1 + rect: + serializedVersion: 2 + x: 99 + y: 506 + width: 94 + height: 92 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c11aff7f5f4f7bc45add2535f499f6ec + internalID: 114697775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_2 + rect: + serializedVersion: 2 + x: 196 + y: 508 + width: 56 + height: 84 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f276768f8df8c814e9f447adcf0bc4b2 + internalID: -192642031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_3 + rect: + serializedVersion: 2 + x: 265 + y: 507 + width: 47 + height: 80 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2726ec13caf86bb459c445a3ab04bdee + internalID: -1320355771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_4 + rect: + serializedVersion: 2 + x: 327 + y: 474 + width: 179 + height: 161 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a54cb627998e2604b82267b57b47bd6f + internalID: 1513825795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_5 + rect: + serializedVersion: 2 + x: 57 + y: 479 + width: 27 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f80489adfb98d1a4bacd427b00478e72 + internalID: 1127246395 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_6 + rect: + serializedVersion: 2 + x: 150 + y: 477 + width: 22 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f1a8713de77e52b4cb9dd12c00bd06b7 + internalID: -1891728207 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_7 + rect: + serializedVersion: 2 + x: 222 + y: 479 + width: 17 + height: 21 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af5988dc94cbc7043b1a0f7d4dab3811 + internalID: -1881690168 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_8 + rect: + serializedVersion: 2 + x: 268 + y: 465 + width: 16 + height: 30 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23a4a95e8d5cec1458449ec286cbae71 + internalID: 790031371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_9 + rect: + serializedVersion: 2 + x: 296 + y: 489 + width: 11 + height: 17 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5fc7aa28fd2db754a87f9d7af890231c + internalID: -1570426461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_10 + rect: + serializedVersion: 2 + x: 23 + y: 450 + width: 27 + height: 33 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 10c83c26c43acd54d9518c25ad9f4d53 + internalID: -670773430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_11 + rect: + serializedVersion: 2 + x: 58 + y: 450 + width: 26 + height: 25 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 802282f492779774a9b70baeaa143621 + internalID: -1613424319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_12 + rect: + serializedVersion: 2 + x: 117 + y: 449 + width: 27 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 07baf87392cfdda4ea9aa6141b8bacdc + internalID: 244381918 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_13 + rect: + serializedVersion: 2 + x: 147 + y: 449 + width: 28 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d842e6ab864d1645b236fdc864d3af5 + internalID: -1141449974 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_14 + rect: + serializedVersion: 2 + x: 198 + y: 452 + width: 19 + height: 35 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5ddd4bf98217e71499cef70f14f99d60 + internalID: -1373721267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_15 + rect: + serializedVersion: 2 + x: 224 + y: 452 + width: 17 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f4d40c80133a9814cb7799814d52d0b7 + internalID: 153306346 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_16 + rect: + serializedVersion: 2 + x: 293 + y: 465 + width: 17 + height: 22 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4fa3f3b616a0a3541ba01de1b1431942 + internalID: 399004843 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_17 + rect: + serializedVersion: 2 + x: 458 + y: 435 + width: 36 + height: 39 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d183e21f4fe6a164da40f28a38ed9679 + internalID: 1050167351 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_18 + rect: + serializedVersion: 2 + x: 395 + y: 393 + width: 52 + height: 64 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 75ea3f615d2897c44b0dffefe7e1e909 + internalID: 237567508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_19 + rect: + serializedVersion: 2 + x: 459 + y: 373 + width: 52 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b7b6d93fe35d4584b977c00ae6eb1685 + internalID: 1288547824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_20 + rect: + serializedVersion: 2 + x: 18 + y: 224 + width: 74 + height: 109 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8c1d806277d6af46ae99b2815ee5835 + internalID: -334943153 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_21 + rect: + serializedVersion: 2 + x: 102 + y: 224 + width: 94 + height: 106 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 07947efa96422c845be320cfb1b09e04 + internalID: -363585173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_22 + rect: + serializedVersion: 2 + x: 199 + y: 224 + width: 56 + height: 100 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b59b86375e9d7b042b5542601d4f3a0b + internalID: -827338799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_23 + rect: + serializedVersion: 2 + x: 268 + y: 227 + width: 47 + height: 92 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f51fc9b207072f34294832ce05637ffc + internalID: 1414349313 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_24 + rect: + serializedVersion: 2 + x: 330 + y: 201 + width: 179 + height: 166 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 51abb705badb211439dcdc7bb47c6f8a + internalID: 1528796198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_25 + rect: + serializedVersion: 2 + x: 47 + y: 180 + width: 26 + height: 25 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 69e9ce6453c2c284ea2afe76c7b3a795 + internalID: 589344369 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_26 + rect: + serializedVersion: 2 + x: 137 + y: 179 + width: 28 + height: 26 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4b50276e94e00cf46babd08d5e3a612b + internalID: 667443926 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_27 + rect: + serializedVersion: 2 + x: 221 + y: 178 + width: 17 + height: 20 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9f18912ae24dce34db4fe6845aadf2d9 + internalID: 564777647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_28 + rect: + serializedVersion: 2 + x: 283 + y: 182 + width: 17 + height: 22 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 594bd20840d3e0d499201848aa169e68 + internalID: 2080987586 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_29 + rect: + serializedVersion: 2 + x: 403 + y: 145 + width: 53 + height: 53 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f3fc4393fec11b2458f31645c7c21166 + internalID: 1737599209 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_30 + rect: + serializedVersion: 2 + x: 35 + y: 69 + width: 50 + height: 36 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23b9e58a4382e80498e62ac6c09a134d + internalID: -1732000273 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_31 + rect: + serializedVersion: 2 + x: 122 + y: 60 + width: 62 + height: 44 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7d9566ae0e6109e4a95b571842581286 + internalID: 330138549 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_32 + rect: + serializedVersion: 2 + x: 226 + y: 62 + width: 38 + height: 29 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba5a4b4adb1d0eb4e9597ba1fac4cb42 + internalID: -1073048885 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_33 + rect: + serializedVersion: 2 + x: 276 + y: 61 + width: 47 + height: 37 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d5bc978e79f1d4947ac066161efe2c44 + internalID: -67726372 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: Trees_seperated_34 + rect: + serializedVersion: 2 + x: 355 + y: 7 + width: 182 + height: 105 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 50dfdc762c7008b41ae693ac4f617bb0 + internalID: 156381370 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: c39c637994269d145904fa0f12b97dba + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":0,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + Trees_seperated_0: -4886661424647071765 + Trees_seperated_1: 114697775 + Trees_seperated_10: -670773430 + Trees_seperated_11: -1613424319 + Trees_seperated_12: 244381918 + Trees_seperated_13: -1141449974 + Trees_seperated_14: -1373721267 + Trees_seperated_15: 153306346 + Trees_seperated_16: 399004843 + Trees_seperated_17: 1050167351 + Trees_seperated_18: 237567508 + Trees_seperated_19: 1288547824 + Trees_seperated_2: -192642031 + Trees_seperated_20: -334943153 + Trees_seperated_21: -363585173 + Trees_seperated_22: -827338799 + Trees_seperated_23: 1414349313 + Trees_seperated_24: 1528796198 + Trees_seperated_25: 589344369 + Trees_seperated_26: 667443926 + Trees_seperated_27: 564777647 + Trees_seperated_28: 2080987586 + Trees_seperated_29: 1737599209 + Trees_seperated_3: -1320355771 + Trees_seperated_30: -1732000273 + Trees_seperated_31: 330138549 + Trees_seperated_32: -1073048885 + Trees_seperated_33: -67726372 + Trees_seperated_34: 156381370 + Trees_seperated_4: 1513825795 + Trees_seperated_5: 1127246395 + Trees_seperated_6: -1891728207 + Trees_seperated_7: -1881690168 + Trees_seperated_8: 790031371 + Trees_seperated_9: -1570426461 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/03_Models/Maps/ForgottenMemories/WaterTiles-6frames.png b/Assets/03_Models/Maps/ForgottenMemories/WaterTiles-6frames.png new file mode 100644 index 0000000..4bd2294 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/WaterTiles-6frames.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed7d329a7db614e8676973a458c7190ffed5e110e8e30440345b5667718eb483 +size 132050 diff --git a/Assets/03_Models/Maps/ForgottenMemories/WaterTiles-6frames.png.meta b/Assets/03_Models/Maps/ForgottenMemories/WaterTiles-6frames.png.meta new file mode 100644 index 0000000..b355162 --- /dev/null +++ b/Assets/03_Models/Maps/ForgottenMemories/WaterTiles-6frames.png.meta @@ -0,0 +1,11812 @@ +fileFormatVersion: 2 +guid: 219ca77e862a49c47a6c2183ee29c61f +TextureImporter: + internalIDToNameTable: + - first: + 213: -7294887607784048424 + second: WaterTiles-6frames_0 + 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: 0 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 32 + 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: 0 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: iOS + 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: 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: WebGL + 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: + - serializedVersion: 2 + name: WaterTiles-6frames_0 + rect: + serializedVersion: 2 + x: 32 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: -1 + bones: [] + spriteID: 8d8f1a5ee5a53ca90800000000000000 + internalID: -7294887607784048424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_1 + rect: + serializedVersion: 2 + x: 64 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c248ac4214e30384c968132f648ee61c + internalID: 1540835399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_2 + rect: + serializedVersion: 2 + x: 96 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7387d2ff1ca5c304c9a9353392dc5ca5 + internalID: -470730449 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_3 + rect: + serializedVersion: 2 + x: 128 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ad674559bf5684d42a78969125070cfc + internalID: 1836320857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_4 + rect: + serializedVersion: 2 + x: 160 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6c468e54a50a0640ad4fd494292d831 + internalID: -1669203685 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_5 + rect: + serializedVersion: 2 + x: 256 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: de79779a4313a38468c726ecfcf6aeb6 + internalID: -1525116580 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_6 + rect: + serializedVersion: 2 + x: 288 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 682029aa7a8d53248b1ebd90e9d37a75 + internalID: -1804586345 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_7 + rect: + serializedVersion: 2 + x: 320 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 95f6bd3e930fee643a1e9a5be95c2946 + internalID: 1327718397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_8 + rect: + serializedVersion: 2 + x: 352 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9bcbe5e4e4e13b24d94601b5a893b738 + internalID: 836792448 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_9 + rect: + serializedVersion: 2 + x: 384 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a383298c0f16e7f479b95a94633f718b + internalID: 1212297631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_10 + rect: + serializedVersion: 2 + x: 416 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0573c2f2450aac34fb69a0198a78997e + internalID: 1851769703 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_11 + rect: + serializedVersion: 2 + x: 480 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5904c17a9959eb14fa49a465036ad857 + internalID: -1101156309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_12 + rect: + serializedVersion: 2 + x: 512 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b960b24f1b4f755489b4527af8324eb5 + internalID: -1491707975 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_13 + rect: + serializedVersion: 2 + x: 544 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7188ae41055276d47af5f57f905cc1e5 + internalID: 722098865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_14 + rect: + serializedVersion: 2 + x: 576 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f5fd5e023cc34e74b9a7271bf5132eb4 + internalID: -2013693808 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_15 + rect: + serializedVersion: 2 + x: 608 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1908dac732bbe14f9886ea9605f3ee0 + internalID: -1551020922 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_16 + rect: + serializedVersion: 2 + x: 640 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 65eee1deaddd719409278dd0c72f16c8 + internalID: 1034866088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_17 + rect: + serializedVersion: 2 + x: 704 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2cbde90c3f93e674997b3cae10b7d2f6 + internalID: 527778717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_18 + rect: + serializedVersion: 2 + x: 736 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 70c5be5f090bbeb4a8a3d8968effe571 + internalID: -1988282775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_19 + rect: + serializedVersion: 2 + x: 768 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb6ef044e84c83d43a52f548fa5f3332 + internalID: -221942198 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_20 + rect: + serializedVersion: 2 + x: 800 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 73708e2a0428fac49b4dcecb4494ec5e + internalID: -1114614662 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_21 + rect: + serializedVersion: 2 + x: 832 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab6f3af7b84d4a240b4a5ac3694b32e1 + internalID: 1198781319 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_22 + rect: + serializedVersion: 2 + x: 864 + y: 992 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fba65a57f60ada849a2ae17c623eacf6 + internalID: 1056641767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_23 + rect: + serializedVersion: 2 + x: 0 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d0704274d65038141b09c762e12ee5de + internalID: 1259483807 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_24 + rect: + serializedVersion: 2 + x: 32 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 496792c6a74e330468124f772ce754f0 + internalID: 1128262434 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_25 + rect: + serializedVersion: 2 + x: 64 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e09f3fa6f2245f64881b959bf32b571e + internalID: -1122249770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_26 + rect: + serializedVersion: 2 + x: 96 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 618c524af5960684b81c385e08cf2168 + internalID: -211013106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_27 + rect: + serializedVersion: 2 + x: 128 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7d0438e090f5a3b4a8461a017617e82b + internalID: 733642711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_28 + rect: + serializedVersion: 2 + x: 160 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1b7a07722bcc01a408b8f08af371006c + internalID: -171205864 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_29 + rect: + serializedVersion: 2 + x: 192 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 61def5ae8764f1044925bb519372719f + internalID: 1933030987 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_30 + rect: + serializedVersion: 2 + x: 256 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b7e3f073dce0ce4a8c3eccdfbe0bbf0 + internalID: 495265039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_31 + rect: + serializedVersion: 2 + x: 288 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: af2477b6cdb75ce4599a3c1c1b65b50f + internalID: -820783338 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_32 + rect: + serializedVersion: 2 + x: 320 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 72d3d1370a6e4574eab9eb00640d0b56 + internalID: 68933819 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_33 + rect: + serializedVersion: 2 + x: 352 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 26613d73cbf55c04ba622ae7ece12190 + internalID: -1971282001 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_34 + rect: + serializedVersion: 2 + x: 384 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c076818fddc5b3048968ddbfc5a19357 + internalID: 2014053517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_35 + rect: + serializedVersion: 2 + x: 416 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c10912b81f4d8fa459a804c3ff2b3800 + internalID: -1384568061 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_36 + rect: + serializedVersion: 2 + x: 480 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a850a54f51be25b47b5ed5bf14b0ca40 + internalID: 1378559533 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_37 + rect: + serializedVersion: 2 + x: 512 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 73691996ceadde541bdab6b414637288 + internalID: 1954960003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_38 + rect: + serializedVersion: 2 + x: 544 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 16fd90ac040a0e94daf28f4cbe0f0d57 + internalID: -1064035073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_39 + rect: + serializedVersion: 2 + x: 576 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 066b1e08020a0e345b1998d9227c327d + internalID: 538601555 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_40 + rect: + serializedVersion: 2 + x: 608 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5613f64eff0747a4a9d48be013a8e1e7 + internalID: 1109866397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_41 + rect: + serializedVersion: 2 + x: 640 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 200aca2f3cca5b945943a1f392d74bfd + internalID: -1953566983 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_42 + rect: + serializedVersion: 2 + x: 704 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4ead38587cd68c947a82cd4cd87ec40e + internalID: -551253667 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_43 + rect: + serializedVersion: 2 + x: 736 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cd4520adb82c1244ea9ba86a46451d60 + internalID: -1645383755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_44 + rect: + serializedVersion: 2 + x: 768 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 214771e29a145394296a754fc15e2405 + internalID: 2006188397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_45 + rect: + serializedVersion: 2 + x: 800 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 977ed4ad8bc2f234b903cc33da9ebe69 + internalID: -342383529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_46 + rect: + serializedVersion: 2 + x: 832 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd9f78122dc87664ca813f8933bf4549 + internalID: -260369196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_47 + rect: + serializedVersion: 2 + x: 864 + y: 960 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da9f44d7b107ddc4181f7fbe3cd7202e + internalID: 869556204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_48 + rect: + serializedVersion: 2 + x: 0 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 374cd9c8bf0b4624892d6df00c16ced2 + internalID: 595167252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_49 + rect: + serializedVersion: 2 + x: 32 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5fa729873d661a845bcab86a02a7e2a8 + internalID: 346030179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_50 + rect: + serializedVersion: 2 + x: 64 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 145831f003580964984ef2f48c9a4128 + internalID: -1904724136 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_51 + rect: + serializedVersion: 2 + x: 96 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dff43cdd45456dc469ac6e8106d83110 + internalID: 2077555795 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_52 + rect: + serializedVersion: 2 + x: 128 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5f902d5bf538f3143a2151adc0750e86 + internalID: 1716020349 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_53 + rect: + serializedVersion: 2 + x: 160 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 40a5f805b7c3b2541923bc1d43ab69e4 + internalID: 844914142 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_54 + rect: + serializedVersion: 2 + x: 192 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3fa0d23f857f8a4b8bb74d7b9d26d8e + internalID: -321026009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_55 + rect: + serializedVersion: 2 + x: 256 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6d3cef7d2c79d6643a3a3332f727047e + internalID: -368814468 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_56 + rect: + serializedVersion: 2 + x: 288 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b400fd512fb63414b8686d2fc36ab3f4 + internalID: 455683670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_57 + rect: + serializedVersion: 2 + x: 320 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9fc4a3947ad4ca44a9292d69574c88a1 + internalID: 203845237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_58 + rect: + serializedVersion: 2 + x: 352 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 57be85f4942b94a4b98d0046c743bbe2 + internalID: 2032375707 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_59 + rect: + serializedVersion: 2 + x: 384 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f52b9760baf02544dab47178b26350c9 + internalID: 1677707546 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_60 + rect: + serializedVersion: 2 + x: 416 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d621cb6c9425e744db4926c1644c0b39 + internalID: 1939380255 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_61 + rect: + serializedVersion: 2 + x: 480 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 282816b7268602346873faf0cf39f963 + internalID: 714610042 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_62 + rect: + serializedVersion: 2 + x: 512 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb1b792f6c45b194798bafcdf07c8e3c + internalID: 103866078 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_63 + rect: + serializedVersion: 2 + x: 544 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bbb41aea03f7ab2448628b25109eb2db + internalID: -1066409382 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_64 + rect: + serializedVersion: 2 + x: 576 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ad0860e11bab44045bedecd36f7d21a5 + internalID: -675392196 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_65 + rect: + serializedVersion: 2 + x: 608 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 031753795eae2f1419fffea69bdf653d + internalID: -919407559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_66 + rect: + serializedVersion: 2 + x: 640 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ca7c0cee2a05411439cca9f22a0fbfdb + internalID: -739924173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_67 + rect: + serializedVersion: 2 + x: 704 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2f37b5d1c1565248a05bc1680f7d8c6 + internalID: 1408270127 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_68 + rect: + serializedVersion: 2 + x: 736 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 769a740b933ca634a9f8c6f41067a6be + internalID: -1727141631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_69 + rect: + serializedVersion: 2 + x: 768 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 74c88a907bf2036469d637f4d967c2b2 + internalID: 1506441663 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_70 + rect: + serializedVersion: 2 + x: 800 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d06fd8e1910ced845b3e060cd0bdeb9c + internalID: -1983346804 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_71 + rect: + serializedVersion: 2 + x: 832 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fa280528bc49edc459f983f6ddc16fcc + internalID: -658220508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_72 + rect: + serializedVersion: 2 + x: 864 + y: 928 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ed3599a151e9cb4fb187fc0361ea490 + internalID: 439147327 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_73 + rect: + serializedVersion: 2 + x: 0 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8167f6e71dd35c94b9ff530df6a85737 + internalID: 953189657 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_74 + rect: + serializedVersion: 2 + x: 32 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6fa48bb71c0daea4cb4d862ce21de753 + internalID: 1935352301 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_75 + rect: + serializedVersion: 2 + x: 64 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 37b0ed40987e883419faa189ce6071a1 + internalID: -1192450937 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_76 + rect: + serializedVersion: 2 + x: 96 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3dbedfed6a454384d949d7bf1ffb849f + internalID: -1421121871 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_77 + rect: + serializedVersion: 2 + x: 128 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3d932b0e85da8d84e91d4e1357ec8b9d + internalID: -1372511380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_78 + rect: + serializedVersion: 2 + x: 160 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f87f9c75a3af9cb439eda0a5f9a93198 + internalID: -143475039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_79 + rect: + serializedVersion: 2 + x: 192 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a0bfd67082b420045b5af60f08eb5cb5 + internalID: 1295880747 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_80 + rect: + serializedVersion: 2 + x: 256 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 593425e7a4d3c8342ab5239901ea2129 + internalID: -531007991 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_81 + rect: + serializedVersion: 2 + x: 288 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4597734915225cf44bee1b3cdb480398 + internalID: -350750500 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_82 + rect: + serializedVersion: 2 + x: 320 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 180cc0809fc26e64891613747015c888 + internalID: -1570064181 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_83 + rect: + serializedVersion: 2 + x: 352 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 62e9dfd919184d8469d5ccddfd2ad8c4 + internalID: -2037523842 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_84 + rect: + serializedVersion: 2 + x: 384 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c917129ee3f612546952b6acd8f9d9c7 + internalID: -2134427775 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_85 + rect: + serializedVersion: 2 + x: 416 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 409794435e7d4644186a318b7facbfcd + internalID: -666278629 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_86 + rect: + serializedVersion: 2 + x: 480 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2d631f8d5aa43e409fae922efaf807e + internalID: 862292077 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_87 + rect: + serializedVersion: 2 + x: 512 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 19e5e1ab67bef424490d721903bacce1 + internalID: 1673326799 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_88 + rect: + serializedVersion: 2 + x: 544 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c466bd1386a99694291abf07a9881558 + internalID: 1691638692 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_89 + rect: + serializedVersion: 2 + x: 576 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc2f001c8f1a0254abf205686fd5869d + internalID: 1680653517 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_90 + rect: + serializedVersion: 2 + x: 608 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 93aca46f0a608cd43a6b3f98e57be40b + internalID: -463416092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_91 + rect: + serializedVersion: 2 + x: 640 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 706723f208c8c3e4e85a565d0ae2555d + internalID: -627287427 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_92 + rect: + serializedVersion: 2 + x: 704 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 43449b8c5bdc8804792131d6417a8c5f + internalID: 1807324502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_93 + rect: + serializedVersion: 2 + x: 736 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55a73fab359cd78448fda9e3c55e7938 + internalID: -1631414822 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_94 + rect: + serializedVersion: 2 + x: 768 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1a26b1f25868f54b940b860898872c6 + internalID: -1503515007 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_95 + rect: + serializedVersion: 2 + x: 800 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 92d765f365ed3704f964720d0e8f0103 + internalID: -1962259848 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_96 + rect: + serializedVersion: 2 + x: 832 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8a5c3a0c01e089d498809169fa125c03 + internalID: 479736914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_97 + rect: + serializedVersion: 2 + x: 864 + y: 896 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6fc2facb53d680d4baed9ddf9418d330 + internalID: 929795805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_98 + rect: + serializedVersion: 2 + x: 0 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f90e14c265e94654f97be9343f98e476 + internalID: -153498251 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_99 + rect: + serializedVersion: 2 + x: 32 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 97632ef7a1e4f734fb9abf07b6e9ddbc + internalID: -1870170761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_100 + rect: + serializedVersion: 2 + x: 64 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c14e9377ad1957b4f9068a711a7ff4e8 + internalID: 1441480204 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_101 + rect: + serializedVersion: 2 + x: 96 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6f3ab2dfcafc5f44a0909b66dbd5666 + internalID: -912779858 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_102 + rect: + serializedVersion: 2 + x: 128 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d440b5cd8671f7c47a69d156c9dee195 + internalID: 1705823678 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_103 + rect: + serializedVersion: 2 + x: 160 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5d3cffb50fc0d524381cc986588e7adf + internalID: -2085644589 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_104 + rect: + serializedVersion: 2 + x: 192 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e77d2d68badd4dc4cb122911a59f478e + internalID: 475155851 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_105 + rect: + serializedVersion: 2 + x: 256 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d83d16013a91dc141b3c928832e6d87c + internalID: 1926044980 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_106 + rect: + serializedVersion: 2 + x: 288 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4af87dc0e4eb828448c41959cfa908c0 + internalID: 2110762018 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_107 + rect: + serializedVersion: 2 + x: 320 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1f0ef8cae85f3de4db0974d08b806430 + internalID: -1186860518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_108 + rect: + serializedVersion: 2 + x: 352 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 43f92095ac6c969458e32c7526e49ad1 + internalID: -186515435 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_109 + rect: + serializedVersion: 2 + x: 384 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eeb92f488f184f84a9b0f0dd6469b2dd + internalID: 530189402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_110 + rect: + serializedVersion: 2 + x: 416 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9d52d55e04f774647ad1ffda39fa1107 + internalID: -1746009219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_111 + rect: + serializedVersion: 2 + x: 480 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3c0d7ad0fbcc9cd4cb542b61818a30dc + internalID: -2117072276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_112 + rect: + serializedVersion: 2 + x: 512 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 13ddf6b8d7d80e4428a5cace0937011c + internalID: 1102381962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_113 + rect: + serializedVersion: 2 + x: 544 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c3fbe8d48857b045abb1c7c8896533b + internalID: -984913805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_114 + rect: + serializedVersion: 2 + x: 576 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7b3aa33d3bfbfac4a84a7ac5e74b7102 + internalID: -653952748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_115 + rect: + serializedVersion: 2 + x: 608 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3d349e0eac4087f4ba34d05c42393623 + internalID: -1212129426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_116 + rect: + serializedVersion: 2 + x: 640 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5325fece616423a4983d56c471aac4bb + internalID: -2126480803 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_117 + rect: + serializedVersion: 2 + x: 704 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc521fdc47a5c454f8b5e8c73105a485 + internalID: 949508461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_118 + rect: + serializedVersion: 2 + x: 736 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 93406bae186351344ba482bef2d53858 + internalID: -33018993 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_119 + rect: + serializedVersion: 2 + x: 768 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1942cd120dc44c74e82a97772a9b8bf3 + internalID: 1176699225 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_120 + rect: + serializedVersion: 2 + x: 800 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2f53dd1ea0e8e8349a7447d5b0475143 + internalID: 717615966 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_121 + rect: + serializedVersion: 2 + x: 832 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7abe19c3a68d6d24bba4da7b9d846edc + internalID: -1801610761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_122 + rect: + serializedVersion: 2 + x: 864 + y: 864 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 587f255bd6b7738448afaed97cebd1b8 + internalID: 807497631 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_123 + rect: + serializedVersion: 2 + x: 0 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 07095ebdd68aa0d4c80e1a5c2a561a33 + internalID: 1510181011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_124 + rect: + serializedVersion: 2 + x: 32 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 86dd14fb60ec6ba4ba773a24c430c87e + internalID: 22551669 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_125 + rect: + serializedVersion: 2 + x: 64 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5a8bf6d4032ffe84db140302f84e35e0 + internalID: -997922641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_126 + rect: + serializedVersion: 2 + x: 96 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87136709f7daa9b49bf5acbf133d91c1 + internalID: -825357781 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_127 + rect: + serializedVersion: 2 + x: 128 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e3dde8d013c4244e8f95189a826031f + internalID: -1159211043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_128 + rect: + serializedVersion: 2 + x: 160 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9f66b0c4e11479a4f972d2911aa52e2e + internalID: 67327169 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_129 + rect: + serializedVersion: 2 + x: 192 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e0edeba07cce3974ab39ab014603ef8b + internalID: 1057166911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_130 + rect: + serializedVersion: 2 + x: 256 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 74dc2470ba7838e479202c4f3182e54c + internalID: -1224347224 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_131 + rect: + serializedVersion: 2 + x: 288 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 668790e1745ff6c4f83dcff768d2d994 + internalID: -875745260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_132 + rect: + serializedVersion: 2 + x: 320 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c6b0a67036c4d143b005e890aa000af + internalID: -171921194 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_133 + rect: + serializedVersion: 2 + x: 352 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f7c2b763e2ad3ba429d82ccc0cdf1497 + internalID: -741433745 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_134 + rect: + serializedVersion: 2 + x: 384 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 42e4f73c5771f014eb4cc2aaeec3c78c + internalID: 1850621081 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_135 + rect: + serializedVersion: 2 + x: 416 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d62c6b9f639cadd4e82dcfd1aa8adea6 + internalID: 1761588019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_136 + rect: + serializedVersion: 2 + x: 480 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1182c274e9c6a8a4ba97b91582d1c943 + internalID: -1542297484 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_137 + rect: + serializedVersion: 2 + x: 512 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9072224f4bb1cf24b86c322e84cef014 + internalID: 1794836934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_138 + rect: + serializedVersion: 2 + x: 544 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 20705a055b4c42145aad428647baf79c + internalID: -1443587718 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_139 + rect: + serializedVersion: 2 + x: 576 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e5ed12112779c3649a7f729429e793eb + internalID: -1397259205 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_140 + rect: + serializedVersion: 2 + x: 608 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 373640c5e084c0a41977f53656a193c5 + internalID: -422129695 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_141 + rect: + serializedVersion: 2 + x: 640 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b56c7cb0d4d81b74888716b75aea021b + internalID: -781667681 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_142 + rect: + serializedVersion: 2 + x: 704 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da89d1b6d984efe41a1af04caacb9e22 + internalID: 1234805003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_143 + rect: + serializedVersion: 2 + x: 736 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 76ad22a821dad7449a2ac10c3d3cc7f1 + internalID: 717779039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_144 + rect: + serializedVersion: 2 + x: 768 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ab292b9541debf04c9ef5908dd9f0510 + internalID: 1071904471 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_145 + rect: + serializedVersion: 2 + x: 800 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0fd499a6f900d7145a621083b79a7ac4 + internalID: -466100107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_146 + rect: + serializedVersion: 2 + x: 832 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7c91d617c4c70b34e95c005ba850f7c6 + internalID: 528994171 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_147 + rect: + serializedVersion: 2 + x: 864 + y: 832 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6fb001938f138804aaba324129e76437 + internalID: 1408957574 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_148 + rect: + serializedVersion: 2 + x: 0 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6ed843143dc6db4380da7f1c0c15c1e + internalID: -805039008 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_149 + rect: + serializedVersion: 2 + x: 32 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc57bd2b6bc84a94190e53193296f504 + internalID: -218686215 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_150 + rect: + serializedVersion: 2 + x: 64 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 122fc1dc76714e9498c46f535e11e8d5 + internalID: 854539690 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_151 + rect: + serializedVersion: 2 + x: 96 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c02ab36f079df7746b15d64984a47d51 + internalID: -722854006 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_152 + rect: + serializedVersion: 2 + x: 128 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8988708596568554e964bfd8bb78b775 + internalID: 1901148316 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_153 + rect: + serializedVersion: 2 + x: 160 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d65853aa7b2b51f47a0782137a619ca8 + internalID: 43057450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_154 + rect: + serializedVersion: 2 + x: 192 + y: 800 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6990a46dbe171ba498ecce52e9ad9f70 + internalID: 1163159814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_155 + rect: + serializedVersion: 2 + x: 32 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c7b6f2c6fee82a443a0d96309e940659 + internalID: 652511741 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_156 + rect: + serializedVersion: 2 + x: 64 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d4532c5122748834fa02e366a3f7fe09 + internalID: 949279066 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_157 + rect: + serializedVersion: 2 + x: 96 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3668c243a9153564abc294b2a43d1e01 + internalID: 1010280109 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_158 + rect: + serializedVersion: 2 + x: 128 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6fd66cef46ffed4294a603be3a052e3 + internalID: -325467352 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_159 + rect: + serializedVersion: 2 + x: 160 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cf35e09531a666345b029ee255b3b083 + internalID: -274888325 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_160 + rect: + serializedVersion: 2 + x: 256 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 452a745b9090e934383ba3e81f72a337 + internalID: -565514733 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_161 + rect: + serializedVersion: 2 + x: 288 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a259cb6d8f29d5b4084d4636c911ad26 + internalID: -2003901962 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_162 + rect: + serializedVersion: 2 + x: 320 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6550764da58d1e2488fe3e08080d7b28 + internalID: 1938487820 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_163 + rect: + serializedVersion: 2 + x: 352 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4d5562f750068ec4ab61630763cb422d + internalID: 2010722621 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_164 + rect: + serializedVersion: 2 + x: 384 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 305ca93abae50fc4b835c732346dd89f + internalID: -1590604824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_165 + rect: + serializedVersion: 2 + x: 416 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 019e8df1745f18341b46a10076d86d45 + internalID: 105345461 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_166 + rect: + serializedVersion: 2 + x: 480 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb017058817f16c4a8c1b643e1a7c0c0 + internalID: 892067106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_167 + rect: + serializedVersion: 2 + x: 512 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46c9d764db59fe54d81618f6362d54f4 + internalID: -463791397 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_168 + rect: + serializedVersion: 2 + x: 544 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 04622a9921f669a4b9385fcc9700e116 + internalID: 1505230852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_169 + rect: + serializedVersion: 2 + x: 576 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 82e69fb4a8104124fb499201f49e3c55 + internalID: 461407790 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_170 + rect: + serializedVersion: 2 + x: 608 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23307c2b189c0c048adf7030f6a50035 + internalID: -1614432364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_171 + rect: + serializedVersion: 2 + x: 640 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b53d974bc0b889d48a3f9dd461a1087c + internalID: 106760901 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_172 + rect: + serializedVersion: 2 + x: 704 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a96d903cbd7e2bb418d4feffa66ea9c7 + internalID: 2070845070 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_173 + rect: + serializedVersion: 2 + x: 736 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3f08876450fc7a043836babefc0e3460 + internalID: -507906470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_174 + rect: + serializedVersion: 2 + x: 768 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8c7b36b218b6b554aa144a561399c1bf + internalID: 2010129410 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_175 + rect: + serializedVersion: 2 + x: 800 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e1dd2cfa7ba24e448ab8d5194ec3078f + internalID: -301233611 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_176 + rect: + serializedVersion: 2 + x: 832 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b197c12dcbf52514d83440bc7d1749fc + internalID: 1747202389 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_177 + rect: + serializedVersion: 2 + x: 864 + y: 768 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 548f4cefb600c6c4cacf7c3b98aa5fb6 + internalID: -122445569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_178 + rect: + serializedVersion: 2 + x: 256 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7e3e00ab087f6734797c3e44c3a8b07e + internalID: -1392652428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_179 + rect: + serializedVersion: 2 + x: 288 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 05db891af962f7f4db4eeac0482f9c6d + internalID: -1106255390 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_180 + rect: + serializedVersion: 2 + x: 320 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eacea7ca9cda0fc41af0c218d4f9c2ad + internalID: -275825593 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_181 + rect: + serializedVersion: 2 + x: 352 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4f7ce9daefa89cf4fa9815677682f7bc + internalID: 2072838590 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_182 + rect: + serializedVersion: 2 + x: 384 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e447f7091f6af2843bcf65d5f36ec4fb + internalID: -776992905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_183 + rect: + serializedVersion: 2 + x: 416 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0557a3d1405f67b47ae4c30991818f18 + internalID: 1047910878 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_184 + rect: + serializedVersion: 2 + x: 480 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e0a944a0bb9219d438fe2e69e638ec5c + internalID: 1036987340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_185 + rect: + serializedVersion: 2 + x: 512 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5aee6f1e6be387d469f8856189fd359e + internalID: -148116415 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_186 + rect: + serializedVersion: 2 + x: 544 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ec36d0c80dbf79a49b440dbaffca916a + internalID: 1621704596 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_187 + rect: + serializedVersion: 2 + x: 576 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a7d5af482601c7f43884f25eb048ec7b + internalID: 1143101948 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_188 + rect: + serializedVersion: 2 + x: 608 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 34b464e90056bcd4a88a28c2b39f67d0 + internalID: -2110735802 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_189 + rect: + serializedVersion: 2 + x: 640 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: be2c56d4404d42c418fda9ed07f16108 + internalID: 1954358758 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_190 + rect: + serializedVersion: 2 + x: 704 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66fd1af8321928c4597d83b060b27246 + internalID: -1921597046 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_191 + rect: + serializedVersion: 2 + x: 736 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 99e4e55a9a2f51e4a8c7f76634a44435 + internalID: -1607418179 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_192 + rect: + serializedVersion: 2 + x: 768 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b38a70685a072bd4e88653279930c1d0 + internalID: -1412489867 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_193 + rect: + serializedVersion: 2 + x: 800 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0c8278e29dbe32e498feaf146ac37a84 + internalID: 730979450 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_194 + rect: + serializedVersion: 2 + x: 832 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d6cd433cc0d1a624798bac5f20cd7610 + internalID: 1614965852 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_195 + rect: + serializedVersion: 2 + x: 864 + y: 736 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f953a50c8959c3c449ae27a0b7a4e561 + internalID: 1304160036 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_196 + rect: + serializedVersion: 2 + x: 32 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 697bfa966c6f28a49b8c97fb2acca75f + internalID: -1677445905 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_197 + rect: + serializedVersion: 2 + x: 64 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da0912e4a9ccd4242a45aabbb1eed271 + internalID: -1793286134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_198 + rect: + serializedVersion: 2 + x: 96 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d259bbc399904834c8011682439de1ad + internalID: 1044913624 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_199 + rect: + serializedVersion: 2 + x: 128 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 389983568f3d6c74885358f5120710b3 + internalID: -1021374914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_200 + rect: + serializedVersion: 2 + x: 160 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 70914bf082c60fd408f9f1a2f827ecbe + internalID: -1328163740 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_201 + rect: + serializedVersion: 2 + x: 192 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 22eb212149121524fbab939589667fe6 + internalID: -1564863539 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_202 + rect: + serializedVersion: 2 + x: 256 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 75447aab5a8fd084d80d0a56a1945e75 + internalID: -677752411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_203 + rect: + serializedVersion: 2 + x: 288 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 90b85d413804aad4c8891c1cc81bc71b + internalID: 409948998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_204 + rect: + serializedVersion: 2 + x: 320 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4428d6d76fe00a648b192caffded4901 + internalID: -1573231259 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_205 + rect: + serializedVersion: 2 + x: 352 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 83f9574b09d52ec449daf8154ef253b0 + internalID: 1392422120 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_206 + rect: + serializedVersion: 2 + x: 384 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c7707399df1452d48b26be1b47a51f8d + internalID: 281798133 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_207 + rect: + serializedVersion: 2 + x: 416 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46349ec645aa5a8468c6d1f04c12ecb8 + internalID: -1724567606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_208 + rect: + serializedVersion: 2 + x: 480 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 12b4ac2af6f8f2e46b61803b0e2084ca + internalID: 63156252 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_209 + rect: + serializedVersion: 2 + x: 512 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0b352f9ba017f664c9985a800e81d12d + internalID: -324208714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_210 + rect: + serializedVersion: 2 + x: 544 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 97aae1d78464b33418533bd108f6b607 + internalID: -1366645528 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_211 + rect: + serializedVersion: 2 + x: 576 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3a375bb4c7b7174ab79a9ff6b90370f + internalID: 653586140 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_212 + rect: + serializedVersion: 2 + x: 608 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d09d7f3493ea0ef45818a25e79d647ba + internalID: 1823510598 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_213 + rect: + serializedVersion: 2 + x: 640 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1853c98d211400a4888a75f494479da5 + internalID: -806362090 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_214 + rect: + serializedVersion: 2 + x: 704 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 54fe40451308cef489ee7dcaec4850eb + internalID: -160270074 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_215 + rect: + serializedVersion: 2 + x: 736 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 68e34ce383f5c49449ac2c31a7c62002 + internalID: -831465576 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_216 + rect: + serializedVersion: 2 + x: 768 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1a8205b8ae106134f8f5d8d66d4f621d + internalID: -149809582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_217 + rect: + serializedVersion: 2 + x: 800 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9cac2b8ab8e009a43a4e14cd8a839bd6 + internalID: -888657431 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_218 + rect: + serializedVersion: 2 + x: 832 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f547bf3fedc565c47951a933fa6a4353 + internalID: 464317065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_219 + rect: + serializedVersion: 2 + x: 864 + y: 704 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a59f68880f7373d4396f0963ac52d6d3 + internalID: -2011172065 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_220 + rect: + serializedVersion: 2 + x: 32 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8ee4824e0e673784bb51ccd7b38b4207 + internalID: 851187116 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_221 + rect: + serializedVersion: 2 + x: 64 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7efa5448efa362c44972272d08a28517 + internalID: 1833707793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_222 + rect: + serializedVersion: 2 + x: 96 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 485d6cf71d5d8554fa0523fc4fea941c + internalID: 1290483522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_223 + rect: + serializedVersion: 2 + x: 128 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 975e5ea0a0e69eb49b46ba8bc5043923 + internalID: 1525115726 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_224 + rect: + serializedVersion: 2 + x: 160 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 73834f4bfe9da7540b60207dfb4f2b43 + internalID: -1855160021 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_225 + rect: + serializedVersion: 2 + x: 192 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6a08c8ae90ad3d44eb10f3e26a0008a7 + internalID: 1602370151 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_226 + rect: + serializedVersion: 2 + x: 256 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 11a750d1cb45a104fb9941e48fa8b28a + internalID: -1656675630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_227 + rect: + serializedVersion: 2 + x: 288 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 17218826b089b5e41a431ec6d86cec65 + internalID: -1590218082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_228 + rect: + serializedVersion: 2 + x: 320 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7107e610e4cde764b8a12bb177aa8635 + internalID: -1952237099 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_229 + rect: + serializedVersion: 2 + x: 352 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1db15c9abcd09e44f93804049fab7f3d + internalID: 1558029364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_230 + rect: + serializedVersion: 2 + x: 384 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 63b9f23735d121242b07d84b8c7efa5c + internalID: -400264521 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_231 + rect: + serializedVersion: 2 + x: 416 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 925f805707122fe4b80b138eb1d8af39 + internalID: -1393804615 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_232 + rect: + serializedVersion: 2 + x: 480 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2f25a97b5a72a3542b8b1cb002b27d85 + internalID: -1901094531 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_233 + rect: + serializedVersion: 2 + x: 512 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 29a2af6497fafd948bca29c86b715c60 + internalID: -1950632267 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_234 + rect: + serializedVersion: 2 + x: 544 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3f9f29435bab82f4e90f3a76ea5217ee + internalID: -1171705670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_235 + rect: + serializedVersion: 2 + x: 576 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e77189aa8abab8841a0cb92b4c36bba0 + internalID: -999018833 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_236 + rect: + serializedVersion: 2 + x: 608 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e55283cb17fb0e84d959f59b63c276d6 + internalID: 2098974312 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_237 + rect: + serializedVersion: 2 + x: 640 + y: 672 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5506b960f31d93d47885ae77be492d1a + internalID: 954839862 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_238 + rect: + serializedVersion: 2 + x: 32 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b756cbcffef89e4bac93d35690b14e4 + internalID: -566146641 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_239 + rect: + serializedVersion: 2 + x: 64 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 047837d4115218141bcadf1ef615e15b + internalID: -1688492717 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_240 + rect: + serializedVersion: 2 + x: 96 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba178f963b75dc048992498827dcc947 + internalID: 1045734294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_241 + rect: + serializedVersion: 2 + x: 128 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: da7ba7acf2be8b747a9d4e1cae8ff5d2 + internalID: 1245303711 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_242 + rect: + serializedVersion: 2 + x: 160 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 08c4788dc612df9448bb89ef8d7df547 + internalID: 717638336 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_243 + rect: + serializedVersion: 2 + x: 192 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a2028494e358344682c34136820de80 + internalID: -2086527285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_244 + rect: + serializedVersion: 2 + x: 256 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5db2c283220ce47488174b00cde2453c + internalID: -1924290289 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_245 + rect: + serializedVersion: 2 + x: 288 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: aab54d4e3d9b2734ea06c5d0e57e7ff2 + internalID: 1140030121 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_246 + rect: + serializedVersion: 2 + x: 320 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fffa8d423854b8e4ca87a92b836b5780 + internalID: -17422636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_247 + rect: + serializedVersion: 2 + x: 352 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bf1d6f5cf1dd3874fb8738d1f76e8ed3 + internalID: 1085553260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_248 + rect: + serializedVersion: 2 + x: 384 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ba3dabaac1dcdf341b43eb2686e6a75a + internalID: 888550150 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_249 + rect: + serializedVersion: 2 + x: 416 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 46191b37b39f5de40aca4642fafa0998 + internalID: -1324801208 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_250 + rect: + serializedVersion: 2 + x: 480 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 377cc2d9761f3d64c83047b45cd49f32 + internalID: 806984201 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_251 + rect: + serializedVersion: 2 + x: 512 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e28b84c52e539a24ab5c1046d4c1b43c + internalID: -1840685749 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_252 + rect: + serializedVersion: 2 + x: 544 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1e3e1c32f123c6545a355fcda2b75305 + internalID: 102692489 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_253 + rect: + serializedVersion: 2 + x: 576 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0e2f936a7304b024cbd252898c0cf04d + internalID: 1843742755 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_254 + rect: + serializedVersion: 2 + x: 608 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0f4f7681354b2a4080eed2d3d06f169 + internalID: 630135485 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_255 + rect: + serializedVersion: 2 + x: 640 + y: 640 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3a580162e9ced6c4cb196373e2d9457e + internalID: -1426570805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_256 + rect: + serializedVersion: 2 + x: 704 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 243ad7b7d546891458ea65e1bacd5062 + internalID: -505695635 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_257 + rect: + serializedVersion: 2 + x: 736 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 711be731c867652409afc7782e2b1741 + internalID: -1345094003 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_258 + rect: + serializedVersion: 2 + x: 768 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9f31ce2c01f58e94d9d9898cdad34fea + internalID: -1640202735 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_259 + rect: + serializedVersion: 2 + x: 800 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c136910df99932247a90c5163aa50537 + internalID: 2084919571 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_260 + rect: + serializedVersion: 2 + x: 832 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a691b5c9fcb174448b56153171565952 + internalID: -1330681430 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_261 + rect: + serializedVersion: 2 + x: 864 + y: 608 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 00c2b28186d4df54c966b6e773c42951 + internalID: -196678413 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_262 + rect: + serializedVersion: 2 + x: 0 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 40b0637c219733342a910d6181ae8420 + internalID: 161362628 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_263 + rect: + serializedVersion: 2 + x: 32 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7ba3203b0c8b1ac418c7ce97c9e0b59e + internalID: -120812374 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_264 + rect: + serializedVersion: 2 + x: 64 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 56d77277317ae6a42a5097494bc43c18 + internalID: 286543676 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_265 + rect: + serializedVersion: 2 + x: 96 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 156bde5d4160a354496b4d62ee3ab336 + internalID: -1206921213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_266 + rect: + serializedVersion: 2 + x: 128 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d4f9fd5059009714687c966c2e5f04f8 + internalID: 382631968 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_267 + rect: + serializedVersion: 2 + x: 160 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6a54c981a1a638f4c91198194c5da283 + internalID: 1963608540 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_268 + rect: + serializedVersion: 2 + x: 192 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 24de72ff5cdf0f84890c8efcf2101e83 + internalID: 706654240 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_269 + rect: + serializedVersion: 2 + x: 256 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b8b4c692c2453c418b5f0fd8300f753 + internalID: -1966078234 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_270 + rect: + serializedVersion: 2 + x: 288 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 60afd6fc0f666694caf8e2288bfe744a + internalID: 442560570 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_271 + rect: + serializedVersion: 2 + x: 320 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 809a6135f5480a34a918796f97f4f297 + internalID: -1303691164 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_272 + rect: + serializedVersion: 2 + x: 352 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a33ee916f5facb441a03b8ea1db7ef53 + internalID: 264790297 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_273 + rect: + serializedVersion: 2 + x: 384 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3fe14a7f501d59e46886abd10da75f83 + internalID: -554107156 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_274 + rect: + serializedVersion: 2 + x: 416 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fc62bf9a1fa33f243a44be482555b74f + internalID: 337580039 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_275 + rect: + serializedVersion: 2 + x: 480 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d217ebac97a3e0645af0a73a4fd3710b + internalID: -1465122011 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_276 + rect: + serializedVersion: 2 + x: 512 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c9d81a2a81b3c7d40b6696200f61736c + internalID: -938278092 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_277 + rect: + serializedVersion: 2 + x: 544 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9fc69a587ceec6745b753a25f0b58445 + internalID: 1342749964 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_278 + rect: + serializedVersion: 2 + x: 576 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0942a875d177b5d45bfd90b546067148 + internalID: 713759048 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_279 + rect: + serializedVersion: 2 + x: 608 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b2c88bd25bfcdb642938742b27a9ba63 + internalID: -202805838 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_280 + rect: + serializedVersion: 2 + x: 640 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7c7878855463081448793ba9322cde41 + internalID: 905383161 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_281 + rect: + serializedVersion: 2 + x: 704 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 14a930ebe79184247807f77d69b9e8e9 + internalID: 965581638 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_282 + rect: + serializedVersion: 2 + x: 736 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c988b09d0c7ffe5438a32aeacd9f38f9 + internalID: -132075025 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_283 + rect: + serializedVersion: 2 + x: 768 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1c9925a40b072124b9f87a9fce3f2ed8 + internalID: 939717686 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_284 + rect: + serializedVersion: 2 + x: 800 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cf504057b4b354843b8c88d8c37c8afd + internalID: 21004276 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_285 + rect: + serializedVersion: 2 + x: 832 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 26479f42841d0fc468072c0fe6e77dc7 + internalID: -229533326 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_286 + rect: + serializedVersion: 2 + x: 864 + y: 576 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55492ce259198344baacf5c586d48280 + internalID: -1850929221 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_287 + rect: + serializedVersion: 2 + x: 0 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21fd830de60b65d4f832ac5b2377e5e4 + internalID: 942911309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_288 + rect: + serializedVersion: 2 + x: 32 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1452dc8d4c118dc4e91c1b8211430f42 + internalID: 1587036670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_289 + rect: + serializedVersion: 2 + x: 64 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2110dc921721abd4798a57bd37678461 + internalID: 803606107 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_290 + rect: + serializedVersion: 2 + x: 96 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d6993872d7194b24092a184d82ffacad + internalID: 2127567052 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_291 + rect: + serializedVersion: 2 + x: 128 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2af07adfc94b9194e97d62faf66d6233 + internalID: 1327230559 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_292 + rect: + serializedVersion: 2 + x: 160 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5f32e66f02776f044b787bd9ac514964 + internalID: -402602529 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_293 + rect: + serializedVersion: 2 + x: 192 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 00879b10add65144cb365cc34ffe544f + internalID: 144163362 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_294 + rect: + serializedVersion: 2 + x: 256 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1af7e99c9b9ed5044af04545f485b8b4 + internalID: 918274927 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_295 + rect: + serializedVersion: 2 + x: 288 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c944abd6d1173e429d722760f983bad + internalID: 509591125 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_296 + rect: + serializedVersion: 2 + x: 320 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 634671e9910899345af047f3e31cda16 + internalID: -571876616 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_297 + rect: + serializedVersion: 2 + x: 352 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3069d4850abe14a47972b010fa381770 + internalID: 1939222131 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_298 + rect: + serializedVersion: 2 + x: 384 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3016fb3b7f1c1924682ce9dbb6a8b150 + internalID: 1923233013 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_299 + rect: + serializedVersion: 2 + x: 416 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4508de80a3de1e54a887c66cddd380c8 + internalID: 940822049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_300 + rect: + serializedVersion: 2 + x: 480 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd7cf673eac0d9a4fae7eb5eac11d326 + internalID: 2125623264 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_301 + rect: + serializedVersion: 2 + x: 512 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6e563e9559225f4f91fb06871fce09d + internalID: 433336734 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_302 + rect: + serializedVersion: 2 + x: 544 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7cbba8aeb0f86324d812ca07a740ec34 + internalID: 1567694019 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_303 + rect: + serializedVersion: 2 + x: 576 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4b1030ca06861d54eba746e458a74886 + internalID: 1025316551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_304 + rect: + serializedVersion: 2 + x: 608 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6c7254f9c3277bb4fb5f7005bdad239b + internalID: -1510951702 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_305 + rect: + serializedVersion: 2 + x: 640 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ae80726411b691248babb764a7f390a9 + internalID: 238934105 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_306 + rect: + serializedVersion: 2 + x: 704 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6e3501422b7bf940bc3fe7086d63d97 + internalID: 782233073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_307 + rect: + serializedVersion: 2 + x: 736 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bdc0f953b7730cf42b1adcc9664769f2 + internalID: -108943736 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_308 + rect: + serializedVersion: 2 + x: 768 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4a483d479b3dd4d4ba9efcc72d55f576 + internalID: 1504063592 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_309 + rect: + serializedVersion: 2 + x: 800 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 42a93833ed6fbf746b301ee1a6937a17 + internalID: 1780376782 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_310 + rect: + serializedVersion: 2 + x: 832 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 761973df6dd451247b8a13bb114382ee + internalID: -1229002569 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_311 + rect: + serializedVersion: 2 + x: 864 + y: 544 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd6b41be53ca9d44c9cb17de83a0e1b2 + internalID: -385423944 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_312 + rect: + serializedVersion: 2 + x: 0 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4c2804aea4b8f0143a5f33424166f4d9 + internalID: 1490755285 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_313 + rect: + serializedVersion: 2 + x: 32 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fbb3ef927eca3384cac40a39f451dfa3 + internalID: 1563464967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_314 + rect: + serializedVersion: 2 + x: 64 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f6c844ef46fd7c54b829f776c11e1eeb + internalID: 876384076 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_315 + rect: + serializedVersion: 2 + x: 96 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6e33fb23be871b74d88dddd1dfc9871b + internalID: 1981581281 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_316 + rect: + serializedVersion: 2 + x: 128 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0d0d3c7cb5c54f242afc93d781a13844 + internalID: -1904622063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_317 + rect: + serializedVersion: 2 + x: 160 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0adc3f413f652eb4b93a98e5dd4a0173 + internalID: -1429200031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_318 + rect: + serializedVersion: 2 + x: 192 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: de930b254bbba324a92a4952ca506789 + internalID: 1528253963 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_319 + rect: + serializedVersion: 2 + x: 256 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c804f967c135a9a44861afe309808247 + internalID: 1920899108 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_320 + rect: + serializedVersion: 2 + x: 288 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b448cf2794f711845a4e6f7931781bb1 + internalID: 895728508 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_321 + rect: + serializedVersion: 2 + x: 320 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6a464de9813a7c9408ad64ab0cd2caac + internalID: -2108476250 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_322 + rect: + serializedVersion: 2 + x: 352 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0a2987bad4f555f4ca7b4835a82eb2e4 + internalID: -1194192277 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_323 + rect: + serializedVersion: 2 + x: 384 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c3a153960c37ba04797639aa81dac89b + internalID: 765710551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_324 + rect: + serializedVersion: 2 + x: 416 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 198821893513890478cfca454c2a692e + internalID: -1314403911 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_325 + rect: + serializedVersion: 2 + x: 480 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: faeb4576488572a4286a3f14878a08d1 + internalID: 1730542493 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_326 + rect: + serializedVersion: 2 + x: 512 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 506ed6214c689144ca86a32254d4418c + internalID: -189207988 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_327 + rect: + serializedVersion: 2 + x: 544 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 24554e98472e909479202f325b457fa4 + internalID: -734549512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_328 + rect: + serializedVersion: 2 + x: 576 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f186b943d88ee5a4ba9b9e4d62f0fb7e + internalID: 515233647 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_329 + rect: + serializedVersion: 2 + x: 608 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff92a05ac048c27478d37c498be10d39 + internalID: -1391785380 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_330 + rect: + serializedVersion: 2 + x: 640 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb443839ed1c8844f9b947a64f0e6cce + internalID: 580111279 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_331 + rect: + serializedVersion: 2 + x: 704 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 48a9633f50be82946a11fc54c2c877bc + internalID: -875810381 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_332 + rect: + serializedVersion: 2 + x: 736 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 91671d57cb82c5646a48814dfea3b996 + internalID: 1406468424 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_333 + rect: + serializedVersion: 2 + x: 768 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fcdabb6b25451854bba9bde40230f5e1 + internalID: 650329294 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_334 + rect: + serializedVersion: 2 + x: 800 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dabd3923c905af94a8e9a544e568fb02 + internalID: 949385409 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_335 + rect: + serializedVersion: 2 + x: 832 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2d61be4b6b017e4385e9d9d22fb9789 + internalID: 568418160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_336 + rect: + serializedVersion: 2 + x: 864 + y: 512 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ef7a3a216697435459c2ac49ffee642b + internalID: -867444370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_337 + rect: + serializedVersion: 2 + x: 32 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d9b63b12b3a0901408391598ecb8fe01 + internalID: -1565466404 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_338 + rect: + serializedVersion: 2 + x: 64 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a7465cd489d842c49b9c8eaec1491a81 + internalID: -31338557 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_339 + rect: + serializedVersion: 2 + x: 96 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a59c303016bd9694596a08f256a5c1ad + internalID: 1561262399 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_340 + rect: + serializedVersion: 2 + x: 128 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 53d813faee250c847afe01e8c978c5ea + internalID: -1218558088 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_341 + rect: + serializedVersion: 2 + x: 160 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4ee9c070ba72bf34eb05e40bd2a9dd4d + internalID: -1330754812 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_342 + rect: + serializedVersion: 2 + x: 256 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0067e99b0f96bfe42bcc4bd782a8f0c9 + internalID: -695989582 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_343 + rect: + serializedVersion: 2 + x: 288 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 109f1c7f79a04514fa36df0052f9571d + internalID: 1990720636 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_344 + rect: + serializedVersion: 2 + x: 320 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b675f9e88d5ecd448aa8dd91ec676f91 + internalID: -1844753719 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_345 + rect: + serializedVersion: 2 + x: 352 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 36f01fc92bb043447b11648ff6e9801e + internalID: -1888348767 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_346 + rect: + serializedVersion: 2 + x: 384 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 73ab4748ed244ca4ea0811760807e2cc + internalID: -668614477 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_347 + rect: + serializedVersion: 2 + x: 416 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 49009bd3c34bc554c875d8315f1d1e47 + internalID: -798556111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_348 + rect: + serializedVersion: 2 + x: 480 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cce8389f7df4be947aea4ab333c3df1b + internalID: -2093238213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_349 + rect: + serializedVersion: 2 + x: 512 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d3ceeb906768a7e408ea3ef855c37a18 + internalID: 556440082 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_350 + rect: + serializedVersion: 2 + x: 544 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0edf61fc4e2504746b941a3b3ac51786 + internalID: -726841671 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_351 + rect: + serializedVersion: 2 + x: 576 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 76044e9eafff0114e8347bf235e44289 + internalID: -2136683340 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_352 + rect: + serializedVersion: 2 + x: 608 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 333066c1d7f3b8e4cae86544679948ce + internalID: -384224512 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_353 + rect: + serializedVersion: 2 + x: 640 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a1d04f20ef3d51e458f5bd4673b90477 + internalID: -1750266798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_354 + rect: + serializedVersion: 2 + x: 704 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6e1e4c95cae850d4cbef549fc9c8da3a + internalID: 73500146 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_355 + rect: + serializedVersion: 2 + x: 736 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eb051d99f5fb3d748ac724538dda0782 + internalID: 32556145 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_356 + rect: + serializedVersion: 2 + x: 768 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 448197d9f05443c439fb14baa508e3ed + internalID: -1453699738 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_357 + rect: + serializedVersion: 2 + x: 800 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 33a9b1d194de39e4d9a67e37215b9a7c + internalID: -7185139 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_358 + rect: + serializedVersion: 2 + x: 832 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f07c65ec3507daa4ebe00a6223774e36 + internalID: -140639836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_359 + rect: + serializedVersion: 2 + x: 864 + y: 480 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 805bb6dabef320b45b79078668ba1fa6 + internalID: -1018787860 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_360 + rect: + serializedVersion: 2 + x: 704 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 32ae6eb64b33a7b43b89c1a930e86d58 + internalID: 172310551 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_361 + rect: + serializedVersion: 2 + x: 736 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 16918ab64eede604bb53ad61030d4573 + internalID: -1290531002 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_362 + rect: + serializedVersion: 2 + x: 768 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66820c7a90879d64a9d7fb92669fa13d + internalID: -65915253 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_363 + rect: + serializedVersion: 2 + x: 800 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f8256d1407d4cda4f9e2976be88d805e + internalID: -445715994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_364 + rect: + serializedVersion: 2 + x: 832 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 13de669eef421a94e96e59311a9748a4 + internalID: 2136177604 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_365 + rect: + serializedVersion: 2 + x: 864 + y: 448 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 07bed6ce76799c647b7e4635cafc6e43 + internalID: -1969677440 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_366 + rect: + serializedVersion: 2 + x: 256 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 480e0bab873544441b5e2a22fe2090c1 + internalID: 1633661798 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_367 + rect: + serializedVersion: 2 + x: 288 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d9e387b1f9e3259499f035452849cead + internalID: 765030857 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_368 + rect: + serializedVersion: 2 + x: 320 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b6099a792064fdb4893256d2e65208c8 + internalID: -109027789 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_369 + rect: + serializedVersion: 2 + x: 352 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d98e91a1473fcbd41a095caa61cd06fa + internalID: 232444670 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_370 + rect: + serializedVersion: 2 + x: 384 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a5227147e55603b4d839b903562ccd0e + internalID: 6030712 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_371 + rect: + serializedVersion: 2 + x: 416 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 23ff3b67d8b63a34aa1992e263a3cbc6 + internalID: 990121227 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_372 + rect: + serializedVersion: 2 + x: 480 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 898c3d9c79603ca48ba51ff8de5df5cd + internalID: -1193516558 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_373 + rect: + serializedVersion: 2 + x: 512 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ddff053a141a73f43be40989c4f91741 + internalID: -236154909 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_374 + rect: + serializedVersion: 2 + x: 544 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ae1b103ce09982b4cbb9137e9bb85c3c + internalID: -1775468295 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_375 + rect: + serializedVersion: 2 + x: 576 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ed5ca3ed071cbc6479521f21f044f6b0 + internalID: -2028187238 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_376 + rect: + serializedVersion: 2 + x: 608 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7255c1b2e0002bf4ca3020881198e21b + internalID: -1426422104 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_377 + rect: + serializedVersion: 2 + x: 640 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fc596f622f1046f4295759c6c0caee8c + internalID: 881975791 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_378 + rect: + serializedVersion: 2 + x: 704 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b9b89a94ec2817447b6e8d7125cd9a2c + internalID: 134916912 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_379 + rect: + serializedVersion: 2 + x: 736 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 074893c16f40cf64c9f4eccc378b8d4f + internalID: 1925696921 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_380 + rect: + serializedVersion: 2 + x: 768 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3915d790169768a4ab7fc513ee02891e + internalID: 181913914 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_381 + rect: + serializedVersion: 2 + x: 800 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5c98651f2604d93488d654117ae28d01 + internalID: 1390889572 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_382 + rect: + serializedVersion: 2 + x: 832 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 81a102427d5249347ace6d18168801e5 + internalID: 776945237 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_383 + rect: + serializedVersion: 2 + x: 864 + y: 416 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b3fb3def136172941a870f1faf5c3395 + internalID: -1930958063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_384 + rect: + serializedVersion: 2 + x: 256 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3753ea9f68d2d0342b03f30dcb693881 + internalID: -10582049 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_385 + rect: + serializedVersion: 2 + x: 288 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 94cc5f73304962e45ad342854df3c445 + internalID: -721816309 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_386 + rect: + serializedVersion: 2 + x: 320 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 50bfb9557a0ae0a4f8fcc29b0f322986 + internalID: 1193870173 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_387 + rect: + serializedVersion: 2 + x: 352 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3282ac1ea2570c440bb5bf95a25e2426 + internalID: -842923825 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_388 + rect: + serializedVersion: 2 + x: 384 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6528fbd717e0d394098aa30a5c1b9867 + internalID: -285381998 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_389 + rect: + serializedVersion: 2 + x: 416 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bdeb8467e6803bf458bce4dd54ba6a7c + internalID: 881709213 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_390 + rect: + serializedVersion: 2 + x: 480 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2263dc8f18575f8428e187ead71832aa + internalID: 1892651300 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_391 + rect: + serializedVersion: 2 + x: 512 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e597ff52739707340990bafec06abffd + internalID: -1276336955 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_392 + rect: + serializedVersion: 2 + x: 544 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1dc4818cbbf4f40419bf26b469932d01 + internalID: 866936805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_393 + rect: + serializedVersion: 2 + x: 576 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 52444d2bc5e5816438a6d9ab853f9ebf + internalID: -533231606 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_394 + rect: + serializedVersion: 2 + x: 608 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dbd7ab6e1415eb044ad47b71afccd27f + internalID: 1549602774 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_395 + rect: + serializedVersion: 2 + x: 640 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dfe7ee5714a2a684fb4279bc7855a142 + internalID: 724582364 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_396 + rect: + serializedVersion: 2 + x: 704 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6679ff4e150a26741b3abdc5adfc3b2d + internalID: 2058393472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_397 + rect: + serializedVersion: 2 + x: 736 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b147d6f18e70d3a4284982b3bf4bc2f5 + internalID: -1454855602 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_398 + rect: + serializedVersion: 2 + x: 768 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2eb52d6601b7adf4a8e401c67f4bcab9 + internalID: -105429185 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_399 + rect: + serializedVersion: 2 + x: 800 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5df362d02484cb5479c78f768b0eaa1f + internalID: 1606125016 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_400 + rect: + serializedVersion: 2 + x: 832 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: eaab853962026c04f8e9e5b65f37104e + internalID: 326196934 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_401 + rect: + serializedVersion: 2 + x: 864 + y: 384 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 870d73aab54bf6242ae456988081f2be + internalID: -876606967 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_402 + rect: + serializedVersion: 2 + x: 256 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 01913fb35ea519b41a537534a3556ebb + internalID: 265863786 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_403 + rect: + serializedVersion: 2 + x: 288 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 530a39eddb9518046b6fd9fe6635c957 + internalID: 77872836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_404 + rect: + serializedVersion: 2 + x: 320 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 59f5b3714fcb1b648b6a092efaa31994 + internalID: -371514646 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_405 + rect: + serializedVersion: 2 + x: 352 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 49f22fd3d53344e48bae0042902ed5d0 + internalID: -352051824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_406 + rect: + serializedVersion: 2 + x: 384 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 96d3e146bf490d54696bae5f83a7b6c0 + internalID: -1431965704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_407 + rect: + serializedVersion: 2 + x: 416 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 69867576a8757804890e03cf9a798a6e + internalID: 505377861 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_408 + rect: + serializedVersion: 2 + x: 480 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 78aec1e14a639c8418630de7c1b464c8 + internalID: -293576106 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_409 + rect: + serializedVersion: 2 + x: 512 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5beef817ffb038a40b783764e6ff130d + internalID: -50868768 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_410 + rect: + serializedVersion: 2 + x: 544 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 308562060b0ad734286ad57abe571a3f + internalID: -781196930 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_411 + rect: + serializedVersion: 2 + x: 576 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b89ef0488c72be6498b199ae96bc5e14 + internalID: -66528509 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_412 + rect: + serializedVersion: 2 + x: 608 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8307a43b53fe41149a78d2aa3b534922 + internalID: 1821060371 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_413 + rect: + serializedVersion: 2 + x: 640 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 69cf14c57cf1eac40a83412fbe045040 + internalID: 1814645770 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_414 + rect: + serializedVersion: 2 + x: 704 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 69d5d7c7081b217428f41647e9707db9 + internalID: -599980886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_415 + rect: + serializedVersion: 2 + x: 736 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dba018e5f777c2f4e96f04c02632b45f + internalID: 1780165522 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_416 + rect: + serializedVersion: 2 + x: 768 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 89bfa2d7e27f313448dfcd0d1a549f57 + internalID: 1349095923 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_417 + rect: + serializedVersion: 2 + x: 800 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e4d83f7e011bf9742b4a2c67c4eecd37 + internalID: -421849824 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_418 + rect: + serializedVersion: 2 + x: 832 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5647082a2230ffe4cb8b810b190c89ea + internalID: 781546190 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_419 + rect: + serializedVersion: 2 + x: 864 + y: 352 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4d84d3aaede7aa74c89f18e5c6262bcf + internalID: 2047619370 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_420 + rect: + serializedVersion: 2 + x: 0 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd15781efdcea0740a5dc00df53fa25b + internalID: -2087363009 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_421 + rect: + serializedVersion: 2 + x: 32 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 486366e91b4a3204db8e80750350498d + internalID: 1097954428 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_422 + rect: + serializedVersion: 2 + x: 64 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f046050ce062397488c4d145978d772e + internalID: -1503952748 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_423 + rect: + serializedVersion: 2 + x: 128 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2c1b7b5b33f3f93499cc8824aa81b606 + internalID: -2021387274 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_424 + rect: + serializedVersion: 2 + x: 160 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 48961dae97c352844bf01ca38ed9fec7 + internalID: 1963780305 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_425 + rect: + serializedVersion: 2 + x: 192 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cb51f864d8ad0b642873d40af9979b84 + internalID: 604393180 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_426 + rect: + serializedVersion: 2 + x: 224 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd50a52ad11406e4baba71702f17785d + internalID: 362232079 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_427 + rect: + serializedVersion: 2 + x: 256 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 150fef191beaa864c975f71bec8b5d5b + internalID: -1220133650 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_428 + rect: + serializedVersion: 2 + x: 288 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8cf100ae4bdb67e46b5019f0e7b95fb4 + internalID: -1801322260 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_429 + rect: + serializedVersion: 2 + x: 352 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a661342951024bd45a8fcbae3e08d14e + internalID: 204474805 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_430 + rect: + serializedVersion: 2 + x: 384 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2007d83a2d551b843852179a7ef250d3 + internalID: -1739818552 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_431 + rect: + serializedVersion: 2 + x: 416 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6687ffbca694f4344b2d246c734564c7 + internalID: -1544057865 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_432 + rect: + serializedVersion: 2 + x: 448 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e967ed684b0c14b48a940712aac78419 + internalID: -1524856432 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_433 + rect: + serializedVersion: 2 + x: 480 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 844cc9754510e654d87a5f34a4146aca + internalID: 863805063 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_434 + rect: + serializedVersion: 2 + x: 512 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 05eaa858bc7422c4790a39f1f042534c + internalID: 1232381031 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_435 + rect: + serializedVersion: 2 + x: 576 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e28bac2c45d906f4297bdfd2265c16f4 + internalID: -248073846 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_436 + rect: + serializedVersion: 2 + x: 608 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 132d3e57da4695341b4efe017b607d56 + internalID: 1866994714 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_437 + rect: + serializedVersion: 2 + x: 640 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 67977e0760ca2674a888811ec3ad5fa6 + internalID: -2104747818 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_438 + rect: + serializedVersion: 2 + x: 672 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 039620cfd4e41ff4fbf5c94f6c13bac0 + internalID: 1087684392 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_439 + rect: + serializedVersion: 2 + x: 704 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dd816148db0ed5b43ac99eac4b93ad8d + internalID: -384511073 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_440 + rect: + serializedVersion: 2 + x: 736 + y: 288 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 481560567daf73e46ba76fb8877207e4 + internalID: 1724648069 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_441 + rect: + serializedVersion: 2 + x: 0 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b76eebd76b6af9c4da3feff92401386d + internalID: 797443130 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_442 + rect: + serializedVersion: 2 + x: 32 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cce88e97241880147ad7fccc94b01e52 + internalID: 1342324836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_443 + rect: + serializedVersion: 2 + x: 64 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9aa3a44608ecec94b809f0d703f1e9f9 + internalID: 462291170 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_444 + rect: + serializedVersion: 2 + x: 128 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: de106827275b28d4eb01137e44230dca + internalID: -847161271 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_445 + rect: + serializedVersion: 2 + x: 160 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cfb9beea3a5f6674e84024c948e34e91 + internalID: -17294643 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_446 + rect: + serializedVersion: 2 + x: 192 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f77349019d887f6479476a1078bdf05b + internalID: 2138782518 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_447 + rect: + serializedVersion: 2 + x: 224 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 67dd5f4c42b833e40aa8f7770d6206b9 + internalID: 1561245402 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_448 + rect: + serializedVersion: 2 + x: 256 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 383a8c2ffe407c94b8616b5fd3106887 + internalID: 1845024762 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_449 + rect: + serializedVersion: 2 + x: 288 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 87c387237e8f78443b30e8fe1ac9b929 + internalID: 1626189665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_450 + rect: + serializedVersion: 2 + x: 352 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ecb71bc834be9f24e9181fb4c4b77fe6 + internalID: -681676241 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_451 + rect: + serializedVersion: 2 + x: 384 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 27c5d5d6bd2a9934593ffd7c3a95a7bb + internalID: 1533564043 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_452 + rect: + serializedVersion: 2 + x: 416 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5e005c1eb76c23e41bbdb328439437c9 + internalID: -1634187149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_453 + rect: + serializedVersion: 2 + x: 448 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2532b228b17122e45bef5087ecb147ab + internalID: 932124262 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_454 + rect: + serializedVersion: 2 + x: 480 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 0a544922bb6418e419f6fe737f7dbd7e + internalID: 140299393 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_455 + rect: + serializedVersion: 2 + x: 512 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f35e0586ee08b61409deecba3da6d13e + internalID: -1518515258 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_456 + rect: + serializedVersion: 2 + x: 576 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: fe724aab921f1fd4fb928b8d6af39072 + internalID: -1295897665 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_457 + rect: + serializedVersion: 2 + x: 608 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2a797702d99e6a649ba09a2ca8a7f049 + internalID: -690367536 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_458 + rect: + serializedVersion: 2 + x: 640 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 28b7ed672e89a0041a757cb0b2c065fd + internalID: 2044779470 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_459 + rect: + serializedVersion: 2 + x: 672 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bacc01138f13e3f40af84c0c4a52917e + internalID: -1947409045 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_460 + rect: + serializedVersion: 2 + x: 704 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 35a2f66c75342fe4ab36aa60ad874194 + internalID: -1648985656 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_461 + rect: + serializedVersion: 2 + x: 736 + y: 256 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3e936fa1a2a697340aeef592d89aca5c + internalID: 41130328 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_462 + rect: + serializedVersion: 2 + x: 0 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5bec0970379d7044399b44686ae472fa + internalID: -1338111597 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_463 + rect: + serializedVersion: 2 + x: 32 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 01351e3377f7d09478b6e2e515710cbb + internalID: -1325329891 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_464 + rect: + serializedVersion: 2 + x: 64 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d9bb26b48b20a3b4ba3dcdeba04f2acf + internalID: -1096435548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_465 + rect: + serializedVersion: 2 + x: 128 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 696f053eb17d013459836cd3ab5bf92e + internalID: -199677314 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_466 + rect: + serializedVersion: 2 + x: 160 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ff2b4e4f5be23df4bb0c911c0d85a9ab + internalID: 2077112929 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_467 + rect: + serializedVersion: 2 + x: 192 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6ba3610711dc7e84abad727fe8c4d4b4 + internalID: -1630256757 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_468 + rect: + serializedVersion: 2 + x: 224 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 121138f9bc6bc7c428471cd5b5969dd0 + internalID: -1108976793 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_469 + rect: + serializedVersion: 2 + x: 256 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 16ec3aa75ed117c42861a1738c5f7ef0 + internalID: -1494745942 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_470 + rect: + serializedVersion: 2 + x: 288 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 743a92f322adfcf4c9f7b441745bd2dd + internalID: -1945926814 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_471 + rect: + serializedVersion: 2 + x: 352 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: dc3200c6e9ec4294b987b3c167201d4d + internalID: -1158598490 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_472 + rect: + serializedVersion: 2 + x: 384 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3adc53a2a8c581247ab5f7896cb36e87 + internalID: 1320886704 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_473 + rect: + serializedVersion: 2 + x: 416 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 03ae035308006da43ae06c9dd781a3cb + internalID: -1466592886 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_474 + rect: + serializedVersion: 2 + x: 448 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8a83e4fb823c1c4283b958bda313613 + internalID: 697652134 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_475 + rect: + serializedVersion: 2 + x: 480 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c1b98b8a43cd92147ac90001b6d415e6 + internalID: -1420179784 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_476 + rect: + serializedVersion: 2 + x: 512 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e4cdbd2d9f90c864c8a23898fa934349 + internalID: 1096497836 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_477 + rect: + serializedVersion: 2 + x: 576 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 8e45ef2223ff79d4289004df54d497a6 + internalID: -1330803403 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_478 + rect: + serializedVersion: 2 + x: 608 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7147cd0f2da67024c9fd6a12546d5483 + internalID: 1052893472 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_479 + rect: + serializedVersion: 2 + x: 640 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 67ec75d6bafb9174a91730e80e8f2471 + internalID: -195527761 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_480 + rect: + serializedVersion: 2 + x: 672 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 6bc7f069a62777149a397555c68eecbf + internalID: 8513765 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_481 + rect: + serializedVersion: 2 + x: 704 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ac37a839a2bbf7141b9b416a9bb11027 + internalID: -884552548 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_482 + rect: + serializedVersion: 2 + x: 736 + y: 224 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ce49267ca05ec044fadaa9c43c74e3e2 + internalID: -1355954210 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_483 + rect: + serializedVersion: 2 + x: 0 + y: 192 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a3cc4c5bd8779484ab1c4cb31759e0db + internalID: 2126467396 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_484 + rect: + serializedVersion: 2 + x: 64 + y: 192 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 3fdea29b7eadb774f89afb7fbc8c6895 + internalID: -46267464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_485 + rect: + serializedVersion: 2 + x: 0 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4ba2036cbe773294188baee9dfbab922 + internalID: 1735141223 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_486 + rect: + serializedVersion: 2 + x: 32 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bd3b4ff4ce884eb42ad141fccc7cbfc5 + internalID: -252821699 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_487 + rect: + serializedVersion: 2 + x: 64 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 21d5e0d02f207c843bf8031044f4fc17 + internalID: 1417821387 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_488 + rect: + serializedVersion: 2 + x: 128 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: c67ffd214de77624cb5ec6484eadb1f0 + internalID: -1426896064 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_489 + rect: + serializedVersion: 2 + x: 160 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 86b9fa7f6a6866840889a5d1045d30c5 + internalID: 1720923870 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_490 + rect: + serializedVersion: 2 + x: 192 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: bb30e6dac1cd35c429d16298f6b47758 + internalID: -1910126722 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_491 + rect: + serializedVersion: 2 + x: 224 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: d1d885feb8101b2418992021601b0776 + internalID: -957789111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_492 + rect: + serializedVersion: 2 + x: 256 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e6a2ad15ab8dfa442adbabab961f9f55 + internalID: -1746921617 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_493 + rect: + serializedVersion: 2 + x: 288 + y: 160 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9237d1e2d82c54b4c8e2d673c837afba + internalID: -107331160 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_494 + rect: + serializedVersion: 2 + x: 128 + y: 128 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 7af9687cb38b3a44ca8401ad7f514fda + internalID: 381750411 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_495 + rect: + serializedVersion: 2 + x: 160 + y: 128 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 15de208be62631a4981e4619c374d0cd + internalID: 2095570426 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_496 + rect: + serializedVersion: 2 + x: 192 + y: 128 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f92005ef729f63c40a77be3195cafe81 + internalID: -859699219 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_497 + rect: + serializedVersion: 2 + x: 224 + y: 128 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 1d4af675635f6c0429e410de902998ff + internalID: -677540464 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_498 + rect: + serializedVersion: 2 + x: 256 + y: 128 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: daf1b97d5fba0fc44a0acc09e0b81808 + internalID: 1653338630 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_499 + rect: + serializedVersion: 2 + x: 288 + y: 128 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f84e1d25f1bb05d42922d5cc466c4f1a + internalID: 766316994 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_500 + rect: + serializedVersion: 2 + x: 128 + y: 96 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e2c03613a670557428dde550df13ebb5 + internalID: -386782773 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_501 + rect: + serializedVersion: 2 + x: 160 + y: 96 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: ccdef6a4f3755644d80fe455eb637661 + internalID: 1950142524 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_502 + rect: + serializedVersion: 2 + x: 192 + y: 96 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 9a98f3ad7abde2845b4f5d02206522f9 + internalID: -199836111 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_503 + rect: + serializedVersion: 2 + x: 224 + y: 96 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66a5f011613a9f94bb6eb5b342970579 + internalID: -159469149 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_504 + rect: + serializedVersion: 2 + x: 256 + y: 96 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: cab35c44b61c42249b34db75928a4e63 + internalID: 398928771 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: WaterTiles-6frames_505 + rect: + serializedVersion: 2 + x: 288 + y: 96 + width: 32 + height: 32 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + customData: + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a8abb3ad20c906a4abf7281ad304a79b + internalID: 610230095 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: c5c01f801cbf35141880df3ca1106899 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: + - key: SpriteEditor.SliceSettings + value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":32.0,"y":32.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":1,"keepEmptyRects":false,"isAlternate":false}' + nameFileIdTable: + WaterTiles-6frames_0: -7294887607784048424 + WaterTiles-6frames_1: 1540835399 + WaterTiles-6frames_10: 1851769703 + WaterTiles-6frames_100: 1441480204 + WaterTiles-6frames_101: -912779858 + WaterTiles-6frames_102: 1705823678 + WaterTiles-6frames_103: -2085644589 + WaterTiles-6frames_104: 475155851 + WaterTiles-6frames_105: 1926044980 + WaterTiles-6frames_106: 2110762018 + WaterTiles-6frames_107: -1186860518 + WaterTiles-6frames_108: -186515435 + WaterTiles-6frames_109: 530189402 + WaterTiles-6frames_11: -1101156309 + WaterTiles-6frames_110: -1746009219 + WaterTiles-6frames_111: -2117072276 + WaterTiles-6frames_112: 1102381962 + WaterTiles-6frames_113: -984913805 + WaterTiles-6frames_114: -653952748 + WaterTiles-6frames_115: -1212129426 + WaterTiles-6frames_116: -2126480803 + WaterTiles-6frames_117: 949508461 + WaterTiles-6frames_118: -33018993 + WaterTiles-6frames_119: 1176699225 + WaterTiles-6frames_12: -1491707975 + WaterTiles-6frames_120: 717615966 + WaterTiles-6frames_121: -1801610761 + WaterTiles-6frames_122: 807497631 + WaterTiles-6frames_123: 1510181011 + WaterTiles-6frames_124: 22551669 + WaterTiles-6frames_125: -997922641 + WaterTiles-6frames_126: -825357781 + WaterTiles-6frames_127: -1159211043 + WaterTiles-6frames_128: 67327169 + WaterTiles-6frames_129: 1057166911 + WaterTiles-6frames_13: 722098865 + WaterTiles-6frames_130: -1224347224 + WaterTiles-6frames_131: -875745260 + WaterTiles-6frames_132: -171921194 + WaterTiles-6frames_133: -741433745 + WaterTiles-6frames_134: 1850621081 + WaterTiles-6frames_135: 1761588019 + WaterTiles-6frames_136: -1542297484 + WaterTiles-6frames_137: 1794836934 + WaterTiles-6frames_138: -1443587718 + WaterTiles-6frames_139: -1397259205 + WaterTiles-6frames_14: -2013693808 + WaterTiles-6frames_140: -422129695 + WaterTiles-6frames_141: -781667681 + WaterTiles-6frames_142: 1234805003 + WaterTiles-6frames_143: 717779039 + WaterTiles-6frames_144: 1071904471 + WaterTiles-6frames_145: -466100107 + WaterTiles-6frames_146: 528994171 + WaterTiles-6frames_147: 1408957574 + WaterTiles-6frames_148: -805039008 + WaterTiles-6frames_149: -218686215 + WaterTiles-6frames_15: -1551020922 + WaterTiles-6frames_150: 854539690 + WaterTiles-6frames_151: -722854006 + WaterTiles-6frames_152: 1901148316 + WaterTiles-6frames_153: 43057450 + WaterTiles-6frames_154: 1163159814 + WaterTiles-6frames_155: 652511741 + WaterTiles-6frames_156: 949279066 + WaterTiles-6frames_157: 1010280109 + WaterTiles-6frames_158: -325467352 + WaterTiles-6frames_159: -274888325 + WaterTiles-6frames_16: 1034866088 + WaterTiles-6frames_160: -565514733 + WaterTiles-6frames_161: -2003901962 + WaterTiles-6frames_162: 1938487820 + WaterTiles-6frames_163: 2010722621 + WaterTiles-6frames_164: -1590604824 + WaterTiles-6frames_165: 105345461 + WaterTiles-6frames_166: 892067106 + WaterTiles-6frames_167: -463791397 + WaterTiles-6frames_168: 1505230852 + WaterTiles-6frames_169: 461407790 + WaterTiles-6frames_17: 527778717 + WaterTiles-6frames_170: -1614432364 + WaterTiles-6frames_171: 106760901 + WaterTiles-6frames_172: 2070845070 + WaterTiles-6frames_173: -507906470 + WaterTiles-6frames_174: 2010129410 + WaterTiles-6frames_175: -301233611 + WaterTiles-6frames_176: 1747202389 + WaterTiles-6frames_177: -122445569 + WaterTiles-6frames_178: -1392652428 + WaterTiles-6frames_179: -1106255390 + WaterTiles-6frames_18: -1988282775 + WaterTiles-6frames_180: -275825593 + WaterTiles-6frames_181: 2072838590 + WaterTiles-6frames_182: -776992905 + WaterTiles-6frames_183: 1047910878 + WaterTiles-6frames_184: 1036987340 + WaterTiles-6frames_185: -148116415 + WaterTiles-6frames_186: 1621704596 + WaterTiles-6frames_187: 1143101948 + WaterTiles-6frames_188: -2110735802 + WaterTiles-6frames_189: 1954358758 + WaterTiles-6frames_19: -221942198 + WaterTiles-6frames_190: -1921597046 + WaterTiles-6frames_191: -1607418179 + WaterTiles-6frames_192: -1412489867 + WaterTiles-6frames_193: 730979450 + WaterTiles-6frames_194: 1614965852 + WaterTiles-6frames_195: 1304160036 + WaterTiles-6frames_196: -1677445905 + WaterTiles-6frames_197: -1793286134 + WaterTiles-6frames_198: 1044913624 + WaterTiles-6frames_199: -1021374914 + WaterTiles-6frames_2: -470730449 + WaterTiles-6frames_20: -1114614662 + WaterTiles-6frames_200: -1328163740 + WaterTiles-6frames_201: -1564863539 + WaterTiles-6frames_202: -677752411 + WaterTiles-6frames_203: 409948998 + WaterTiles-6frames_204: -1573231259 + WaterTiles-6frames_205: 1392422120 + WaterTiles-6frames_206: 281798133 + WaterTiles-6frames_207: -1724567606 + WaterTiles-6frames_208: 63156252 + WaterTiles-6frames_209: -324208714 + WaterTiles-6frames_21: 1198781319 + WaterTiles-6frames_210: -1366645528 + WaterTiles-6frames_211: 653586140 + WaterTiles-6frames_212: 1823510598 + WaterTiles-6frames_213: -806362090 + WaterTiles-6frames_214: -160270074 + WaterTiles-6frames_215: -831465576 + WaterTiles-6frames_216: -149809582 + WaterTiles-6frames_217: -888657431 + WaterTiles-6frames_218: 464317065 + WaterTiles-6frames_219: -2011172065 + WaterTiles-6frames_22: 1056641767 + WaterTiles-6frames_220: 851187116 + WaterTiles-6frames_221: 1833707793 + WaterTiles-6frames_222: 1290483522 + WaterTiles-6frames_223: 1525115726 + WaterTiles-6frames_224: -1855160021 + WaterTiles-6frames_225: 1602370151 + WaterTiles-6frames_226: -1656675630 + WaterTiles-6frames_227: -1590218082 + WaterTiles-6frames_228: -1952237099 + WaterTiles-6frames_229: 1558029364 + WaterTiles-6frames_23: 1259483807 + WaterTiles-6frames_230: -400264521 + WaterTiles-6frames_231: -1393804615 + WaterTiles-6frames_232: -1901094531 + WaterTiles-6frames_233: -1950632267 + WaterTiles-6frames_234: -1171705670 + WaterTiles-6frames_235: -999018833 + WaterTiles-6frames_236: 2098974312 + WaterTiles-6frames_237: 954839862 + WaterTiles-6frames_238: -566146641 + WaterTiles-6frames_239: -1688492717 + WaterTiles-6frames_24: 1128262434 + WaterTiles-6frames_240: 1045734294 + WaterTiles-6frames_241: 1245303711 + WaterTiles-6frames_242: 717638336 + WaterTiles-6frames_243: -2086527285 + WaterTiles-6frames_244: -1924290289 + WaterTiles-6frames_245: 1140030121 + WaterTiles-6frames_246: -17422636 + WaterTiles-6frames_247: 1085553260 + WaterTiles-6frames_248: 888550150 + WaterTiles-6frames_249: -1324801208 + WaterTiles-6frames_25: -1122249770 + WaterTiles-6frames_250: 806984201 + WaterTiles-6frames_251: -1840685749 + WaterTiles-6frames_252: 102692489 + WaterTiles-6frames_253: 1843742755 + WaterTiles-6frames_254: 630135485 + WaterTiles-6frames_255: -1426570805 + WaterTiles-6frames_256: -505695635 + WaterTiles-6frames_257: -1345094003 + WaterTiles-6frames_258: -1640202735 + WaterTiles-6frames_259: 2084919571 + WaterTiles-6frames_26: -211013106 + WaterTiles-6frames_260: -1330681430 + WaterTiles-6frames_261: -196678413 + WaterTiles-6frames_262: 161362628 + WaterTiles-6frames_263: -120812374 + WaterTiles-6frames_264: 286543676 + WaterTiles-6frames_265: -1206921213 + WaterTiles-6frames_266: 382631968 + WaterTiles-6frames_267: 1963608540 + WaterTiles-6frames_268: 706654240 + WaterTiles-6frames_269: -1966078234 + WaterTiles-6frames_27: 733642711 + WaterTiles-6frames_270: 442560570 + WaterTiles-6frames_271: -1303691164 + WaterTiles-6frames_272: 264790297 + WaterTiles-6frames_273: -554107156 + WaterTiles-6frames_274: 337580039 + WaterTiles-6frames_275: -1465122011 + WaterTiles-6frames_276: -938278092 + WaterTiles-6frames_277: 1342749964 + WaterTiles-6frames_278: 713759048 + WaterTiles-6frames_279: -202805838 + WaterTiles-6frames_28: -171205864 + WaterTiles-6frames_280: 905383161 + WaterTiles-6frames_281: 965581638 + WaterTiles-6frames_282: -132075025 + WaterTiles-6frames_283: 939717686 + WaterTiles-6frames_284: 21004276 + WaterTiles-6frames_285: -229533326 + WaterTiles-6frames_286: -1850929221 + WaterTiles-6frames_287: 942911309 + WaterTiles-6frames_288: 1587036670 + WaterTiles-6frames_289: 803606107 + WaterTiles-6frames_29: 1933030987 + WaterTiles-6frames_290: 2127567052 + WaterTiles-6frames_291: 1327230559 + WaterTiles-6frames_292: -402602529 + WaterTiles-6frames_293: 144163362 + WaterTiles-6frames_294: 918274927 + WaterTiles-6frames_295: 509591125 + WaterTiles-6frames_296: -571876616 + WaterTiles-6frames_297: 1939222131 + WaterTiles-6frames_298: 1923233013 + WaterTiles-6frames_299: 940822049 + WaterTiles-6frames_3: 1836320857 + WaterTiles-6frames_30: 495265039 + WaterTiles-6frames_300: 2125623264 + WaterTiles-6frames_301: 433336734 + WaterTiles-6frames_302: 1567694019 + WaterTiles-6frames_303: 1025316551 + WaterTiles-6frames_304: -1510951702 + WaterTiles-6frames_305: 238934105 + WaterTiles-6frames_306: 782233073 + WaterTiles-6frames_307: -108943736 + WaterTiles-6frames_308: 1504063592 + WaterTiles-6frames_309: 1780376782 + WaterTiles-6frames_31: -820783338 + WaterTiles-6frames_310: -1229002569 + WaterTiles-6frames_311: -385423944 + WaterTiles-6frames_312: 1490755285 + WaterTiles-6frames_313: 1563464967 + WaterTiles-6frames_314: 876384076 + WaterTiles-6frames_315: 1981581281 + WaterTiles-6frames_316: -1904622063 + WaterTiles-6frames_317: -1429200031 + WaterTiles-6frames_318: 1528253963 + WaterTiles-6frames_319: 1920899108 + WaterTiles-6frames_32: 68933819 + WaterTiles-6frames_320: 895728508 + WaterTiles-6frames_321: -2108476250 + WaterTiles-6frames_322: -1194192277 + WaterTiles-6frames_323: 765710551 + WaterTiles-6frames_324: -1314403911 + WaterTiles-6frames_325: 1730542493 + WaterTiles-6frames_326: -189207988 + WaterTiles-6frames_327: -734549512 + WaterTiles-6frames_328: 515233647 + WaterTiles-6frames_329: -1391785380 + WaterTiles-6frames_33: -1971282001 + WaterTiles-6frames_330: 580111279 + WaterTiles-6frames_331: -875810381 + WaterTiles-6frames_332: 1406468424 + WaterTiles-6frames_333: 650329294 + WaterTiles-6frames_334: 949385409 + WaterTiles-6frames_335: 568418160 + WaterTiles-6frames_336: -867444370 + WaterTiles-6frames_337: -1565466404 + WaterTiles-6frames_338: -31338557 + WaterTiles-6frames_339: 1561262399 + WaterTiles-6frames_34: 2014053517 + WaterTiles-6frames_340: -1218558088 + WaterTiles-6frames_341: -1330754812 + WaterTiles-6frames_342: -695989582 + WaterTiles-6frames_343: 1990720636 + WaterTiles-6frames_344: -1844753719 + WaterTiles-6frames_345: -1888348767 + WaterTiles-6frames_346: -668614477 + WaterTiles-6frames_347: -798556111 + WaterTiles-6frames_348: -2093238213 + WaterTiles-6frames_349: 556440082 + WaterTiles-6frames_35: -1384568061 + WaterTiles-6frames_350: -726841671 + WaterTiles-6frames_351: -2136683340 + WaterTiles-6frames_352: -384224512 + WaterTiles-6frames_353: -1750266798 + WaterTiles-6frames_354: 73500146 + WaterTiles-6frames_355: 32556145 + WaterTiles-6frames_356: -1453699738 + WaterTiles-6frames_357: -7185139 + WaterTiles-6frames_358: -140639836 + WaterTiles-6frames_359: -1018787860 + WaterTiles-6frames_36: 1378559533 + WaterTiles-6frames_360: 172310551 + WaterTiles-6frames_361: -1290531002 + WaterTiles-6frames_362: -65915253 + WaterTiles-6frames_363: -445715994 + WaterTiles-6frames_364: 2136177604 + WaterTiles-6frames_365: -1969677440 + WaterTiles-6frames_366: 1633661798 + WaterTiles-6frames_367: 765030857 + WaterTiles-6frames_368: -109027789 + WaterTiles-6frames_369: 232444670 + WaterTiles-6frames_37: 1954960003 + WaterTiles-6frames_370: 6030712 + WaterTiles-6frames_371: 990121227 + WaterTiles-6frames_372: -1193516558 + WaterTiles-6frames_373: -236154909 + WaterTiles-6frames_374: -1775468295 + WaterTiles-6frames_375: -2028187238 + WaterTiles-6frames_376: -1426422104 + WaterTiles-6frames_377: 881975791 + WaterTiles-6frames_378: 134916912 + WaterTiles-6frames_379: 1925696921 + WaterTiles-6frames_38: -1064035073 + WaterTiles-6frames_380: 181913914 + WaterTiles-6frames_381: 1390889572 + WaterTiles-6frames_382: 776945237 + WaterTiles-6frames_383: -1930958063 + WaterTiles-6frames_384: -10582049 + WaterTiles-6frames_385: -721816309 + WaterTiles-6frames_386: 1193870173 + WaterTiles-6frames_387: -842923825 + WaterTiles-6frames_388: -285381998 + WaterTiles-6frames_389: 881709213 + WaterTiles-6frames_39: 538601555 + WaterTiles-6frames_390: 1892651300 + WaterTiles-6frames_391: -1276336955 + WaterTiles-6frames_392: 866936805 + WaterTiles-6frames_393: -533231606 + WaterTiles-6frames_394: 1549602774 + WaterTiles-6frames_395: 724582364 + WaterTiles-6frames_396: 2058393472 + WaterTiles-6frames_397: -1454855602 + WaterTiles-6frames_398: -105429185 + WaterTiles-6frames_399: 1606125016 + WaterTiles-6frames_4: -1669203685 + WaterTiles-6frames_40: 1109866397 + WaterTiles-6frames_400: 326196934 + WaterTiles-6frames_401: -876606967 + WaterTiles-6frames_402: 265863786 + WaterTiles-6frames_403: 77872836 + WaterTiles-6frames_404: -371514646 + WaterTiles-6frames_405: -352051824 + WaterTiles-6frames_406: -1431965704 + WaterTiles-6frames_407: 505377861 + WaterTiles-6frames_408: -293576106 + WaterTiles-6frames_409: -50868768 + WaterTiles-6frames_41: -1953566983 + WaterTiles-6frames_410: -781196930 + WaterTiles-6frames_411: -66528509 + WaterTiles-6frames_412: 1821060371 + WaterTiles-6frames_413: 1814645770 + WaterTiles-6frames_414: -599980886 + WaterTiles-6frames_415: 1780165522 + WaterTiles-6frames_416: 1349095923 + WaterTiles-6frames_417: -421849824 + WaterTiles-6frames_418: 781546190 + WaterTiles-6frames_419: 2047619370 + WaterTiles-6frames_42: -551253667 + WaterTiles-6frames_420: -2087363009 + WaterTiles-6frames_421: 1097954428 + WaterTiles-6frames_422: -1503952748 + WaterTiles-6frames_423: -2021387274 + WaterTiles-6frames_424: 1963780305 + WaterTiles-6frames_425: 604393180 + WaterTiles-6frames_426: 362232079 + WaterTiles-6frames_427: -1220133650 + WaterTiles-6frames_428: -1801322260 + WaterTiles-6frames_429: 204474805 + WaterTiles-6frames_43: -1645383755 + WaterTiles-6frames_430: -1739818552 + WaterTiles-6frames_431: -1544057865 + WaterTiles-6frames_432: -1524856432 + WaterTiles-6frames_433: 863805063 + WaterTiles-6frames_434: 1232381031 + WaterTiles-6frames_435: -248073846 + WaterTiles-6frames_436: 1866994714 + WaterTiles-6frames_437: -2104747818 + WaterTiles-6frames_438: 1087684392 + WaterTiles-6frames_439: -384511073 + WaterTiles-6frames_44: 2006188397 + WaterTiles-6frames_440: 1724648069 + WaterTiles-6frames_441: 797443130 + WaterTiles-6frames_442: 1342324836 + WaterTiles-6frames_443: 462291170 + WaterTiles-6frames_444: -847161271 + WaterTiles-6frames_445: -17294643 + WaterTiles-6frames_446: 2138782518 + WaterTiles-6frames_447: 1561245402 + WaterTiles-6frames_448: 1845024762 + WaterTiles-6frames_449: 1626189665 + WaterTiles-6frames_45: -342383529 + WaterTiles-6frames_450: -681676241 + WaterTiles-6frames_451: 1533564043 + WaterTiles-6frames_452: -1634187149 + WaterTiles-6frames_453: 932124262 + WaterTiles-6frames_454: 140299393 + WaterTiles-6frames_455: -1518515258 + WaterTiles-6frames_456: -1295897665 + WaterTiles-6frames_457: -690367536 + WaterTiles-6frames_458: 2044779470 + WaterTiles-6frames_459: -1947409045 + WaterTiles-6frames_46: -260369196 + WaterTiles-6frames_460: -1648985656 + WaterTiles-6frames_461: 41130328 + WaterTiles-6frames_462: -1338111597 + WaterTiles-6frames_463: -1325329891 + WaterTiles-6frames_464: -1096435548 + WaterTiles-6frames_465: -199677314 + WaterTiles-6frames_466: 2077112929 + WaterTiles-6frames_467: -1630256757 + WaterTiles-6frames_468: -1108976793 + WaterTiles-6frames_469: -1494745942 + WaterTiles-6frames_47: 869556204 + WaterTiles-6frames_470: -1945926814 + WaterTiles-6frames_471: -1158598490 + WaterTiles-6frames_472: 1320886704 + WaterTiles-6frames_473: -1466592886 + WaterTiles-6frames_474: 697652134 + WaterTiles-6frames_475: -1420179784 + WaterTiles-6frames_476: 1096497836 + WaterTiles-6frames_477: -1330803403 + WaterTiles-6frames_478: 1052893472 + WaterTiles-6frames_479: -195527761 + WaterTiles-6frames_48: 595167252 + WaterTiles-6frames_480: 8513765 + WaterTiles-6frames_481: -884552548 + WaterTiles-6frames_482: -1355954210 + WaterTiles-6frames_483: 2126467396 + WaterTiles-6frames_484: -46267464 + WaterTiles-6frames_485: 1735141223 + WaterTiles-6frames_486: -252821699 + WaterTiles-6frames_487: 1417821387 + WaterTiles-6frames_488: -1426896064 + WaterTiles-6frames_489: 1720923870 + WaterTiles-6frames_49: 346030179 + WaterTiles-6frames_490: -1910126722 + WaterTiles-6frames_491: -957789111 + WaterTiles-6frames_492: -1746921617 + WaterTiles-6frames_493: -107331160 + WaterTiles-6frames_494: 381750411 + WaterTiles-6frames_495: 2095570426 + WaterTiles-6frames_496: -859699219 + WaterTiles-6frames_497: -677540464 + WaterTiles-6frames_498: 1653338630 + WaterTiles-6frames_499: 766316994 + WaterTiles-6frames_5: -1525116580 + WaterTiles-6frames_50: -1904724136 + WaterTiles-6frames_500: -386782773 + WaterTiles-6frames_501: 1950142524 + WaterTiles-6frames_502: -199836111 + WaterTiles-6frames_503: -159469149 + WaterTiles-6frames_504: 398928771 + WaterTiles-6frames_505: 610230095 + WaterTiles-6frames_51: 2077555795 + WaterTiles-6frames_52: 1716020349 + WaterTiles-6frames_53: 844914142 + WaterTiles-6frames_54: -321026009 + WaterTiles-6frames_55: -368814468 + WaterTiles-6frames_56: 455683670 + WaterTiles-6frames_57: 203845237 + WaterTiles-6frames_58: 2032375707 + WaterTiles-6frames_59: 1677707546 + WaterTiles-6frames_6: -1804586345 + WaterTiles-6frames_60: 1939380255 + WaterTiles-6frames_61: 714610042 + WaterTiles-6frames_62: 103866078 + WaterTiles-6frames_63: -1066409382 + WaterTiles-6frames_64: -675392196 + WaterTiles-6frames_65: -919407559 + WaterTiles-6frames_66: -739924173 + WaterTiles-6frames_67: 1408270127 + WaterTiles-6frames_68: -1727141631 + WaterTiles-6frames_69: 1506441663 + WaterTiles-6frames_7: 1327718397 + WaterTiles-6frames_70: -1983346804 + WaterTiles-6frames_71: -658220508 + WaterTiles-6frames_72: 439147327 + WaterTiles-6frames_73: 953189657 + WaterTiles-6frames_74: 1935352301 + WaterTiles-6frames_75: -1192450937 + WaterTiles-6frames_76: -1421121871 + WaterTiles-6frames_77: -1372511380 + WaterTiles-6frames_78: -143475039 + WaterTiles-6frames_79: 1295880747 + WaterTiles-6frames_8: 836792448 + WaterTiles-6frames_80: -531007991 + WaterTiles-6frames_81: -350750500 + WaterTiles-6frames_82: -1570064181 + WaterTiles-6frames_83: -2037523842 + WaterTiles-6frames_84: -2134427775 + WaterTiles-6frames_85: -666278629 + WaterTiles-6frames_86: 862292077 + WaterTiles-6frames_87: 1673326799 + WaterTiles-6frames_88: 1691638692 + WaterTiles-6frames_89: 1680653517 + WaterTiles-6frames_9: 1212297631 + WaterTiles-6frames_90: -463416092 + WaterTiles-6frames_91: -627287427 + WaterTiles-6frames_92: 1807324502 + WaterTiles-6frames_93: -1631414822 + WaterTiles-6frames_94: -1503515007 + WaterTiles-6frames_95: -1962259848 + WaterTiles-6frames_96: 479736914 + WaterTiles-6frames_97: 929795805 + WaterTiles-6frames_98: -153498251 + WaterTiles-6frames_99: -1870170761 + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles.meta b/Assets/04_Tiles.meta new file mode 100644 index 0000000..461d72e --- /dev/null +++ b/Assets/04_Tiles.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 426a5901875fcc24fbf2d3c5987b316d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor.meta b/Assets/04_Tiles/Floor.meta new file mode 100644 index 0000000..b897bec --- /dev/null +++ b/Assets/04_Tiles/Floor.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63916c7ddff54ef478348d5f0daf15b5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/Floor.prefab b/Assets/04_Tiles/Floor/Floor.prefab new file mode 100644 index 0000000..840edee --- /dev/null +++ b/Assets/04_Tiles/Floor/Floor.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f310a9ccef724d7294c92b28104c247a70b22ae27b31caf96021d2d67fbd71b +size 591746 diff --git a/Assets/04_Tiles/Floor/Floor.prefab.meta b/Assets/04_Tiles/Floor/Floor.prefab.meta new file mode 100644 index 0000000..c37d609 --- /dev/null +++ b/Assets/04_Tiles/Floor/Floor.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e9bb0734e68191247b76107979ad3951 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_0.asset b/Assets/04_Tiles/Floor/TileSet_0.asset new file mode 100644 index 0000000..a1a531e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_0.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5248c1c071f87984498dae58537f75e505680da5ebf36cc3dbf98aef10bfb751 +size 826 diff --git a/Assets/04_Tiles/Floor/TileSet_0.asset.meta b/Assets/04_Tiles/Floor/TileSet_0.asset.meta new file mode 100644 index 0000000..5e08669 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_0.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7fd9fa3ac15061438574570a5a22f7c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1.asset b/Assets/04_Tiles/Floor/TileSet_1.asset new file mode 100644 index 0000000..4b0771b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:058ee19aa1e3fc9b4da242dc4833fbd292688a48b16a1ba4c659b9b21d8ece32 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1.asset.meta b/Assets/04_Tiles/Floor/TileSet_1.asset.meta new file mode 100644 index 0000000..50dc7e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 018d15d7ed15b00469ebf5d7d6a97cfb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_10.asset b/Assets/04_Tiles/Floor/TileSet_10.asset new file mode 100644 index 0000000..ed14df7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_10.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:373bf55936038306aa21b3b7a6e986c6370cb7780227be00a9f14395c9227f1b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_10.asset.meta b/Assets/04_Tiles/Floor/TileSet_10.asset.meta new file mode 100644 index 0000000..5807fcd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_10.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c69b1134167127044a5a12d4d610c5e8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_100.asset b/Assets/04_Tiles/Floor/TileSet_100.asset new file mode 100644 index 0000000..f793d94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_100.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f092d70130b1153ee5c7d24aef59326966ff66f64f9cfc4eb7147f9839b5d9d2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_100.asset.meta b/Assets/04_Tiles/Floor/TileSet_100.asset.meta new file mode 100644 index 0000000..0ab1835 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_100.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: def7292a33496a24284113d0aaa92c6b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1000.asset b/Assets/04_Tiles/Floor/TileSet_1000.asset new file mode 100644 index 0000000..f9bc999 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1000.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04e41480723cc22e898483d3f2e470c568bb9555642a867aec50d1d3a90bc80f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1000.asset.meta b/Assets/04_Tiles/Floor/TileSet_1000.asset.meta new file mode 100644 index 0000000..8f6adc5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1000.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39817828dea87a540a0e9db629b00544 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1001.asset b/Assets/04_Tiles/Floor/TileSet_1001.asset new file mode 100644 index 0000000..d3143d8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1001.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e58266441b2b80719d0b97f3783d59b889a945586ea58233c5eec9486ea24940 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1001.asset.meta b/Assets/04_Tiles/Floor/TileSet_1001.asset.meta new file mode 100644 index 0000000..85df271 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1001.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db5764537abd9924bb5e90bf7e23bd2f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1002.asset b/Assets/04_Tiles/Floor/TileSet_1002.asset new file mode 100644 index 0000000..e736e7c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1002.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:950280d991f64dd673f692e387467a90b5b9f03f49aa6233be7b0a24da631636 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1002.asset.meta b/Assets/04_Tiles/Floor/TileSet_1002.asset.meta new file mode 100644 index 0000000..7e2b563 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1002.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a48fe714a4056a94eac1b7907509fb1d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1003.asset b/Assets/04_Tiles/Floor/TileSet_1003.asset new file mode 100644 index 0000000..69f48dc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1003.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf55b6a69f1e6c43b791c87be68e747bcde7f7ea91ffa2b64a5d0a4ddbba6bc6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1003.asset.meta b/Assets/04_Tiles/Floor/TileSet_1003.asset.meta new file mode 100644 index 0000000..8d5112d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1003.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3939640890aa434fae784860e1311f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1004.asset b/Assets/04_Tiles/Floor/TileSet_1004.asset new file mode 100644 index 0000000..6c3d36f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1004.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ff9a2f2ac83a84b6f4b7e84cff193120879d830a75b29152dbd72462ce122a +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1004.asset.meta b/Assets/04_Tiles/Floor/TileSet_1004.asset.meta new file mode 100644 index 0000000..3a42505 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1004.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 746e6b7c7769af64fb8f08b68aa6782b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1005.asset b/Assets/04_Tiles/Floor/TileSet_1005.asset new file mode 100644 index 0000000..870806f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1005.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86fded6130fd31ff1cd57f3b76d9571ced10e314b6e7cbd7d24e23a23bbedd1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1005.asset.meta b/Assets/04_Tiles/Floor/TileSet_1005.asset.meta new file mode 100644 index 0000000..12f3e96 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1005.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53c458973b9e59247a3e58393ddbd170 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1006.asset b/Assets/04_Tiles/Floor/TileSet_1006.asset new file mode 100644 index 0000000..23b6735 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1006.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a09d3683098fa289b9c76e3929616d49301e786ac8905ad28e9071eab008929 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1006.asset.meta b/Assets/04_Tiles/Floor/TileSet_1006.asset.meta new file mode 100644 index 0000000..39ba0f8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1006.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 228d60cf7202f3f49ba55490dd165b6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1007.asset b/Assets/04_Tiles/Floor/TileSet_1007.asset new file mode 100644 index 0000000..684bff6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1007.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647f4df0f53478e858dd391359c45624d184d3d7556d5b10ef97b1613c1d2426 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1007.asset.meta b/Assets/04_Tiles/Floor/TileSet_1007.asset.meta new file mode 100644 index 0000000..646d0bf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1007.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a5a31069886282468430d67e15c5537 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1008.asset b/Assets/04_Tiles/Floor/TileSet_1008.asset new file mode 100644 index 0000000..2c5368c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1008.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced683cd5a0ee67e2ca57a9fb98777cbfb0f4b40cbf3f339a342cbcd870fa355 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1008.asset.meta b/Assets/04_Tiles/Floor/TileSet_1008.asset.meta new file mode 100644 index 0000000..78bbe89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1008.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23a151becb21b3e488c1491cc4d58a8c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1009.asset b/Assets/04_Tiles/Floor/TileSet_1009.asset new file mode 100644 index 0000000..081e623 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1009.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83201362e043a5a6808728f01f5c79ddc9a19e8332e0f43db91b4f6dd33a8767 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1009.asset.meta b/Assets/04_Tiles/Floor/TileSet_1009.asset.meta new file mode 100644 index 0000000..940229a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1009.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c678630162898984a969823c67509c32 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_101.asset b/Assets/04_Tiles/Floor/TileSet_101.asset new file mode 100644 index 0000000..837500a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_101.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d734b2332ff00b29d86eee6b5cacfe8a1353e81548f0fe79c4e8c8dbea5728 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_101.asset.meta b/Assets/04_Tiles/Floor/TileSet_101.asset.meta new file mode 100644 index 0000000..702ccfc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_101.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 611985c413f48d54dade28a2072e4171 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1010.asset b/Assets/04_Tiles/Floor/TileSet_1010.asset new file mode 100644 index 0000000..f52e0db --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1010.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a93c008d722f1921e12eb9cbfbeecc4390f5b9c73ed3a17cc33c44232681b6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1010.asset.meta b/Assets/04_Tiles/Floor/TileSet_1010.asset.meta new file mode 100644 index 0000000..9493345 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1010.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50e29a96f62e09c47a59248189d0eb03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1011.asset b/Assets/04_Tiles/Floor/TileSet_1011.asset new file mode 100644 index 0000000..53a80b4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1011.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df818061eeec350fd07c2ddb416dc70eacccf53ce3318708ccf737a7148830f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1011.asset.meta b/Assets/04_Tiles/Floor/TileSet_1011.asset.meta new file mode 100644 index 0000000..125afbb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1011.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d0406ac4f9f7de48b9870a970276127 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1012.asset b/Assets/04_Tiles/Floor/TileSet_1012.asset new file mode 100644 index 0000000..0e8a805 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1012.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc9a57fcc7bef0af345d9dced6f38b9428e4c1eeddd00043a02ae9cb262c244 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1012.asset.meta b/Assets/04_Tiles/Floor/TileSet_1012.asset.meta new file mode 100644 index 0000000..a46a86a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1012.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 018547e316b45c34c8b4e94a4824ad56 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1013.asset b/Assets/04_Tiles/Floor/TileSet_1013.asset new file mode 100644 index 0000000..87c0cda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1013.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c89b2dba0390d078df5ec8311561dd811dd63b04dd91c3c28e6567bd216eaaf0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1013.asset.meta b/Assets/04_Tiles/Floor/TileSet_1013.asset.meta new file mode 100644 index 0000000..847ce8e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1013.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f973cd5cc223d148a6995530611ab24 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1014.asset b/Assets/04_Tiles/Floor/TileSet_1014.asset new file mode 100644 index 0000000..51863b7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1014.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce399c0582dec8293a06460f6af61613f2d1f2fa7f06247b4cdca53a56f764fb +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1014.asset.meta b/Assets/04_Tiles/Floor/TileSet_1014.asset.meta new file mode 100644 index 0000000..6ba3f7c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1014.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3ae4984d337d7cc4aa3b2c02d8eeec2b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1015.asset b/Assets/04_Tiles/Floor/TileSet_1015.asset new file mode 100644 index 0000000..52322eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1015.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6eaa1f09c3ff8e76773278a47d7d54482f06b3adae6d6f9d8d186f956d8b2705 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1015.asset.meta b/Assets/04_Tiles/Floor/TileSet_1015.asset.meta new file mode 100644 index 0000000..b50d770 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1015.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c4cee05ca4e86041a0c2095decbf88e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1016.asset b/Assets/04_Tiles/Floor/TileSet_1016.asset new file mode 100644 index 0000000..e9f7fcc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1016.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07f31309a5ab60921634c27d3e9decb35bb745b98601558fe4b678ee69117cf3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1016.asset.meta b/Assets/04_Tiles/Floor/TileSet_1016.asset.meta new file mode 100644 index 0000000..fe263c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1016.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 16b6358047aea12428116ad5a1b71a80 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1017.asset b/Assets/04_Tiles/Floor/TileSet_1017.asset new file mode 100644 index 0000000..2c81d62 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1017.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f39e29ed5698caa3b25b31d6bfdfe917e2e8d146e3bd5e1cc77c692fba0443ae +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1017.asset.meta b/Assets/04_Tiles/Floor/TileSet_1017.asset.meta new file mode 100644 index 0000000..20879a9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1017.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d0a2ba8f4152804ab2702c99a31b234 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1018.asset b/Assets/04_Tiles/Floor/TileSet_1018.asset new file mode 100644 index 0000000..1c3f509 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1018.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2acb9f2779c82c3ef026172f49a15eac9a35ec9cf23a0e3aa8ea8e63d380f561 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1018.asset.meta b/Assets/04_Tiles/Floor/TileSet_1018.asset.meta new file mode 100644 index 0000000..7dfb388 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1018.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b192b148a4eb07642828a8faccd7652b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1019.asset b/Assets/04_Tiles/Floor/TileSet_1019.asset new file mode 100644 index 0000000..b5d8585 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1019.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b92db894c41f5be6b794b4f833b1113afa9a52e7960ef5f34821763c55e58e77 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1019.asset.meta b/Assets/04_Tiles/Floor/TileSet_1019.asset.meta new file mode 100644 index 0000000..0c1f001 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1019.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50b1f41913c24a24ebddb0a7b1c58d9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_102.asset b/Assets/04_Tiles/Floor/TileSet_102.asset new file mode 100644 index 0000000..dbcdddc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_102.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73644f57316563b7cd6df2cd473890d6b42212ae9df740671c121dcac178a9c8 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_102.asset.meta b/Assets/04_Tiles/Floor/TileSet_102.asset.meta new file mode 100644 index 0000000..dc0fafa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_102.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 363e68c6e2ed7334eba6c9ddc00d8efd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1020.asset b/Assets/04_Tiles/Floor/TileSet_1020.asset new file mode 100644 index 0000000..cecf62c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1020.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:724f0876c1d025510f1fb5c99a2d56c7322595646c575949182e408eb1320758 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1020.asset.meta b/Assets/04_Tiles/Floor/TileSet_1020.asset.meta new file mode 100644 index 0000000..b212dde --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1020.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 29f5bd2c030fd674e8ef813e06353503 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1021.asset b/Assets/04_Tiles/Floor/TileSet_1021.asset new file mode 100644 index 0000000..dd76fb2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1021.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e8cf38b121a80ff90a257f840446d867cf323de7783abcf2b7d284284463b2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1021.asset.meta b/Assets/04_Tiles/Floor/TileSet_1021.asset.meta new file mode 100644 index 0000000..b84266c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1021.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7b78d9c4225ec44ea979d611d2dc84b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1022.asset b/Assets/04_Tiles/Floor/TileSet_1022.asset new file mode 100644 index 0000000..103a0c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1022.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b8038470ff3940f09cef6bc75583381d93101029378c48cca3fc83201cca7ea +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1022.asset.meta b/Assets/04_Tiles/Floor/TileSet_1022.asset.meta new file mode 100644 index 0000000..9253bb4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1022.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 48cdea245e2cd054891033b08bd0beb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1023.asset b/Assets/04_Tiles/Floor/TileSet_1023.asset new file mode 100644 index 0000000..f1f6289 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1023.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056ef873177df53de214566808d26461c92131c06ef14e1222cb52acb6f19696 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1023.asset.meta b/Assets/04_Tiles/Floor/TileSet_1023.asset.meta new file mode 100644 index 0000000..fa4fd91 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1023.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d98166df93efa7d4e9580ab4931e42e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1024.asset b/Assets/04_Tiles/Floor/TileSet_1024.asset new file mode 100644 index 0000000..1c301cc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1024.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7f4d3655812de82b1310a45db3b011bab52fef3b19b169f4f4829874d7455a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1024.asset.meta b/Assets/04_Tiles/Floor/TileSet_1024.asset.meta new file mode 100644 index 0000000..4c12916 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1024.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3be42b9480f75e4429b99276cff08870 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1025.asset b/Assets/04_Tiles/Floor/TileSet_1025.asset new file mode 100644 index 0000000..3a2ebf6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1025.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9612911c1e690160b82468b6c0f25010960ec9c52b29147a6b805a73358a4153 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1025.asset.meta b/Assets/04_Tiles/Floor/TileSet_1025.asset.meta new file mode 100644 index 0000000..df05aee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1025.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 607d09f585c10cb46a8736119649a7d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1026.asset b/Assets/04_Tiles/Floor/TileSet_1026.asset new file mode 100644 index 0000000..e03da14 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1026.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb2b5102136122456ec06270b154fdb4b4a11bc33b5f421dbbc8c1138df7f6af +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1026.asset.meta b/Assets/04_Tiles/Floor/TileSet_1026.asset.meta new file mode 100644 index 0000000..8f74b2e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1026.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27982aeb259384e4e845020576d624c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1027.asset b/Assets/04_Tiles/Floor/TileSet_1027.asset new file mode 100644 index 0000000..b8d318f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1027.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30424ee8b070113c23a6418d3a7293473fef27cf1b264d7a63712b2f571e9877 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1027.asset.meta b/Assets/04_Tiles/Floor/TileSet_1027.asset.meta new file mode 100644 index 0000000..1d7f7b1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1027.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a00c825e00f67864b9a856a5e83d41ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1028.asset b/Assets/04_Tiles/Floor/TileSet_1028.asset new file mode 100644 index 0000000..fd1df1c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1028.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98b5085b1860b7ae3c2b7f9e91208d5223a35ea11e8a91b879e20e52b86bf77e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1028.asset.meta b/Assets/04_Tiles/Floor/TileSet_1028.asset.meta new file mode 100644 index 0000000..a12f2a2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1028.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 417860407010eef4dafd472f86fa9cb4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1029.asset b/Assets/04_Tiles/Floor/TileSet_1029.asset new file mode 100644 index 0000000..aac1aee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1029.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3adc46ddf557800b4a74a24518e19c6cb35875fa722608078fc3d593d393ae5d +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1029.asset.meta b/Assets/04_Tiles/Floor/TileSet_1029.asset.meta new file mode 100644 index 0000000..51eeef3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1029.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9386d21ef74fea84e91369b2b850352b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_103.asset b/Assets/04_Tiles/Floor/TileSet_103.asset new file mode 100644 index 0000000..d0d50e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_103.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2cded0eea05b5862660385f30da837b7f4e737c88f558a6b3d29bc184b68e2a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_103.asset.meta b/Assets/04_Tiles/Floor/TileSet_103.asset.meta new file mode 100644 index 0000000..de90bf1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_103.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f12ac4596fa50064a87f62fe5192694f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1030.asset b/Assets/04_Tiles/Floor/TileSet_1030.asset new file mode 100644 index 0000000..76e246b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1030.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb9f3cefdb68b2dbbfe8a5f84b6ce7a0dab8988328aa82cf9aa33df1af9c8ee +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1030.asset.meta b/Assets/04_Tiles/Floor/TileSet_1030.asset.meta new file mode 100644 index 0000000..eddc785 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1030.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd7622f169edf774f8668961bcad595f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1031.asset b/Assets/04_Tiles/Floor/TileSet_1031.asset new file mode 100644 index 0000000..9923d77 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1031.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26fb41c4a98ac1930987528d62018169ef3fe5a9543cb12264f23dc2e6451b97 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1031.asset.meta b/Assets/04_Tiles/Floor/TileSet_1031.asset.meta new file mode 100644 index 0000000..fbccbae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1031.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e93180f793140348adc34d01990c25f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1032.asset b/Assets/04_Tiles/Floor/TileSet_1032.asset new file mode 100644 index 0000000..2f30f37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1032.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c4f875eba72fbb14ace7184fe3769b425ff4f1c998b808d1a56869cfeb60e2f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1032.asset.meta b/Assets/04_Tiles/Floor/TileSet_1032.asset.meta new file mode 100644 index 0000000..701b67f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1032.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a220de50164b87842b973f9dbeac2da7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1033.asset b/Assets/04_Tiles/Floor/TileSet_1033.asset new file mode 100644 index 0000000..977942b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1033.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a86edb8f5a310fb9726b82051583ed8509ee71bc5744af77e193dd156c197f8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1033.asset.meta b/Assets/04_Tiles/Floor/TileSet_1033.asset.meta new file mode 100644 index 0000000..5bfee29 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1033.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc60367491bf0ad42aee8722a8e586b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1034.asset b/Assets/04_Tiles/Floor/TileSet_1034.asset new file mode 100644 index 0000000..0c959bb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1034.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1cae14ec4d17c38ca9235473cf44ece2ac0d8e20074faf180f5cac558ff4833 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1034.asset.meta b/Assets/04_Tiles/Floor/TileSet_1034.asset.meta new file mode 100644 index 0000000..4f77c0a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1034.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3d05bea65961314cbef37f8daf869be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1035.asset b/Assets/04_Tiles/Floor/TileSet_1035.asset new file mode 100644 index 0000000..507bde5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1035.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad03a2a6508a23135ea22868599c196a33d21807e1a1502e3466d8d90c7c19d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1035.asset.meta b/Assets/04_Tiles/Floor/TileSet_1035.asset.meta new file mode 100644 index 0000000..cc235f2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1035.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c5210d3bffa87c740a05caa59988e31a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1036.asset b/Assets/04_Tiles/Floor/TileSet_1036.asset new file mode 100644 index 0000000..f69d7e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1036.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0bbd106b04180727a58fe2b1641985aab8758f815b412a83d1e0faf637d95cc +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1036.asset.meta b/Assets/04_Tiles/Floor/TileSet_1036.asset.meta new file mode 100644 index 0000000..a38783d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1036.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae8f3c9cb34e4614f9ce87fce63a0364 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1037.asset b/Assets/04_Tiles/Floor/TileSet_1037.asset new file mode 100644 index 0000000..043e7be --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1037.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52f2a8b9b07709b3af2579d5b3caeb316aef877fea2549aa1059acff7e0c7861 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1037.asset.meta b/Assets/04_Tiles/Floor/TileSet_1037.asset.meta new file mode 100644 index 0000000..51523ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1037.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 24e6d8b1f5364f7498b1cca0db2f9d4f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1038.asset b/Assets/04_Tiles/Floor/TileSet_1038.asset new file mode 100644 index 0000000..111cb2e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1038.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27f832946dfdef65e5d78a5f80f889776258418724d3aa827be8a76458d7df5 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1038.asset.meta b/Assets/04_Tiles/Floor/TileSet_1038.asset.meta new file mode 100644 index 0000000..e2207d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1038.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a03742438906f14aa953245bfa7f1c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1039.asset b/Assets/04_Tiles/Floor/TileSet_1039.asset new file mode 100644 index 0000000..5f8bfe3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1039.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fb09b067f8b982cb8ee3a216f86d7d9322a2a631ef9999d9d53b31224d7431 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1039.asset.meta b/Assets/04_Tiles/Floor/TileSet_1039.asset.meta new file mode 100644 index 0000000..48c04e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1039.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d37b97dd89986ff40a93a9839488a7c1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_104.asset b/Assets/04_Tiles/Floor/TileSet_104.asset new file mode 100644 index 0000000..6f8bd0e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_104.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901fd515775225cf838e42cd257a5f4eaa8ed2641e0caa8bcd9d2e56d66eb6a0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_104.asset.meta b/Assets/04_Tiles/Floor/TileSet_104.asset.meta new file mode 100644 index 0000000..eb3c580 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_104.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ca309e49607186478db2dbc7d42382b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1040.asset b/Assets/04_Tiles/Floor/TileSet_1040.asset new file mode 100644 index 0000000..472f92d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1040.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7a7574d8c26a4f134fcbbddbf0f8afcdc2b8d63414980af430988cb9af259ed +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1040.asset.meta b/Assets/04_Tiles/Floor/TileSet_1040.asset.meta new file mode 100644 index 0000000..b094122 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1040.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58e78c2a91f2ce0409fb706b24d3d152 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1041.asset b/Assets/04_Tiles/Floor/TileSet_1041.asset new file mode 100644 index 0000000..06ca1c9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1041.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7cc2a6a85818a6019da07c36346fbf41e7e13c80113f93faa89636650bb448e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1041.asset.meta b/Assets/04_Tiles/Floor/TileSet_1041.asset.meta new file mode 100644 index 0000000..bbf6bd8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1041.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3e24df6377b4584e97dacb0e72e37a4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1042.asset b/Assets/04_Tiles/Floor/TileSet_1042.asset new file mode 100644 index 0000000..f8f117b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1042.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c120c49b22489271fde2bf57dd70bb1ceec7b8792fb9399ce112e7d73c8dd2ae +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1042.asset.meta b/Assets/04_Tiles/Floor/TileSet_1042.asset.meta new file mode 100644 index 0000000..ae3ed1b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1042.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5ddb81dc78e5804aabf3e4995fe27ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1043.asset b/Assets/04_Tiles/Floor/TileSet_1043.asset new file mode 100644 index 0000000..2995446 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1043.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a76c31c2edd073fcfd21c61f7fa2e9d29976b84ec6b906b893f12b1cc8e32c +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1043.asset.meta b/Assets/04_Tiles/Floor/TileSet_1043.asset.meta new file mode 100644 index 0000000..add6596 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1043.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c20175eff1860da4893c981955f36a09 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1044.asset b/Assets/04_Tiles/Floor/TileSet_1044.asset new file mode 100644 index 0000000..8512dec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1044.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0a5b5ca675cba1ef32d9a1b44b2cf04d7136b021503151e760796d39a1bd98 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1044.asset.meta b/Assets/04_Tiles/Floor/TileSet_1044.asset.meta new file mode 100644 index 0000000..a507dc8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1044.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9daaae5497a2c56418149e915037f28d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1045.asset b/Assets/04_Tiles/Floor/TileSet_1045.asset new file mode 100644 index 0000000..7d9defd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1045.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73bc13a79efe302d4bd5c46d99a81f7a67183c303d9302f7e58c247c0864b956 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1045.asset.meta b/Assets/04_Tiles/Floor/TileSet_1045.asset.meta new file mode 100644 index 0000000..ea5e834 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1045.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ddfc91364fd66048873d94dac1ce1b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1046.asset b/Assets/04_Tiles/Floor/TileSet_1046.asset new file mode 100644 index 0000000..a8bec8d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1046.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3949e8c84a982fed8109304f1dff0ef7b40264395d5068b1fdb9743cbf9bce90 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1046.asset.meta b/Assets/04_Tiles/Floor/TileSet_1046.asset.meta new file mode 100644 index 0000000..bf2b277 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1046.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ee81f8c5b3cd2648ac7a3ea18266f51 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1047.asset b/Assets/04_Tiles/Floor/TileSet_1047.asset new file mode 100644 index 0000000..68bbbaa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1047.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:016e3d1f05f761ee7c42dfc60dfdb0e3c68a8b994ccb390bb81ec4811989394b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1047.asset.meta b/Assets/04_Tiles/Floor/TileSet_1047.asset.meta new file mode 100644 index 0000000..cfb674f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1047.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0df9a11094ec368489db31a722be40fb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1048.asset b/Assets/04_Tiles/Floor/TileSet_1048.asset new file mode 100644 index 0000000..fdff155 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1048.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b324de5458d4ddddf5c12b1a52dc6fbdefe1310d6a496a038194f7ca590fadd9 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1048.asset.meta b/Assets/04_Tiles/Floor/TileSet_1048.asset.meta new file mode 100644 index 0000000..57bf83e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1048.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90203f878f3a83a4794380fd3fbe2117 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1049.asset b/Assets/04_Tiles/Floor/TileSet_1049.asset new file mode 100644 index 0000000..3bffdb6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1049.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29bce0259f810313d852e723ac240fcb5d2aa4b09d847da13e043e60fcc69465 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1049.asset.meta b/Assets/04_Tiles/Floor/TileSet_1049.asset.meta new file mode 100644 index 0000000..f0e0db8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1049.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15e259766377a5b46bcb719ab51e9a46 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_105.asset b/Assets/04_Tiles/Floor/TileSet_105.asset new file mode 100644 index 0000000..786ffcb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_105.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688b13bec8ca8783b4347b865540399557fb93cce408c243c9afa711e124ae5c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_105.asset.meta b/Assets/04_Tiles/Floor/TileSet_105.asset.meta new file mode 100644 index 0000000..0b7e20a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_105.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b6bde9cb5ef717c41b3ab716745a9955 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1050.asset b/Assets/04_Tiles/Floor/TileSet_1050.asset new file mode 100644 index 0000000..2812961 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1050.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efdb877582459ee5ae409475cff03f3809f3eca6635e9fe1a7888879fe8cec7e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1050.asset.meta b/Assets/04_Tiles/Floor/TileSet_1050.asset.meta new file mode 100644 index 0000000..35db71c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1050.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 918d91e1ded64874aab45ef7f51cc85b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1051.asset b/Assets/04_Tiles/Floor/TileSet_1051.asset new file mode 100644 index 0000000..8ee4486 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1051.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcb624fe716f93b2d87a434f5b724f3d2177587dd8c7d25e1c095f2a283ae89b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1051.asset.meta b/Assets/04_Tiles/Floor/TileSet_1051.asset.meta new file mode 100644 index 0000000..cab05b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1051.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c9a5c18436bae14aaa0c77ec1c61f43 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1052.asset b/Assets/04_Tiles/Floor/TileSet_1052.asset new file mode 100644 index 0000000..63eb66c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1052.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9075426515e73c4d565f3ca4265c49d667b8a872502e5e06f6b98eeacb796cf8 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1052.asset.meta b/Assets/04_Tiles/Floor/TileSet_1052.asset.meta new file mode 100644 index 0000000..8d8b4a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1052.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f101755722cac04681651769dba3889 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1053.asset b/Assets/04_Tiles/Floor/TileSet_1053.asset new file mode 100644 index 0000000..47b15fb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1053.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eeab3dc4d35a286af10cb5380df6d1328e0ff08cb87c6fb0256e25edf37ba989 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1053.asset.meta b/Assets/04_Tiles/Floor/TileSet_1053.asset.meta new file mode 100644 index 0000000..be30e86 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1053.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b57c03bc391117a488d27fd3897f6c38 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1054.asset b/Assets/04_Tiles/Floor/TileSet_1054.asset new file mode 100644 index 0000000..d871635 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1054.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecda30b32cef39490fc79ad6f0d124db8b48a14f4fefd00bca2a52dc45f796e5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1054.asset.meta b/Assets/04_Tiles/Floor/TileSet_1054.asset.meta new file mode 100644 index 0000000..5bd14bd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1054.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 880efc1edb407a84bae122e1d19d3a46 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1055.asset b/Assets/04_Tiles/Floor/TileSet_1055.asset new file mode 100644 index 0000000..d9ddecb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1055.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6e8abdb2e7133fb9e7c0b90e32e17e7ffe2752ad9c2d74ab189c592d5e3afe0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1055.asset.meta b/Assets/04_Tiles/Floor/TileSet_1055.asset.meta new file mode 100644 index 0000000..fc81a0d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1055.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86da916a48986254d9321dd079ad57c5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1056.asset b/Assets/04_Tiles/Floor/TileSet_1056.asset new file mode 100644 index 0000000..b0bf5fb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1056.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c86f15c9ca02b2d9b5efc1958d30098ce997a1284ff4161204be8abd2ca72bc2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1056.asset.meta b/Assets/04_Tiles/Floor/TileSet_1056.asset.meta new file mode 100644 index 0000000..f0dc75f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1056.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b1b4f75187a7774dbd5353cad888f3f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1057.asset b/Assets/04_Tiles/Floor/TileSet_1057.asset new file mode 100644 index 0000000..5ac3be9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1057.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de6f86cbf7a5503249e2c2d69101f4610fc8fd72dc89283674e92c13d1a48285 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1057.asset.meta b/Assets/04_Tiles/Floor/TileSet_1057.asset.meta new file mode 100644 index 0000000..8a828cb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1057.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f213e09a2ec3c344e85ca605b04814ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1058.asset b/Assets/04_Tiles/Floor/TileSet_1058.asset new file mode 100644 index 0000000..dc003c0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1058.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bc23b3fadc8337b7873cceca842987994a602e514d4fe57c9e7c159bbaf254 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1058.asset.meta b/Assets/04_Tiles/Floor/TileSet_1058.asset.meta new file mode 100644 index 0000000..73a8b52 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1058.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2742a2a14a657634b94f75406f9f9e59 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1059.asset b/Assets/04_Tiles/Floor/TileSet_1059.asset new file mode 100644 index 0000000..3e98d3c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1059.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d217447da53ccb808dcbab972a6a659b2be00fea338a38c936d44679a3d1c1 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1059.asset.meta b/Assets/04_Tiles/Floor/TileSet_1059.asset.meta new file mode 100644 index 0000000..88a0878 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1059.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c1c2dc858cb215489b066ed861e5c37 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_106.asset b/Assets/04_Tiles/Floor/TileSet_106.asset new file mode 100644 index 0000000..7b75826 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_106.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9856a34388f4ed5d54887270c4e920ddadcd87de5d939ff6230217676027e7ed +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_106.asset.meta b/Assets/04_Tiles/Floor/TileSet_106.asset.meta new file mode 100644 index 0000000..55573fa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_106.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64738fb06190e8c428f0682bea67d06c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1060.asset b/Assets/04_Tiles/Floor/TileSet_1060.asset new file mode 100644 index 0000000..386cdbf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1060.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8fde4c6e8548189a7be95457613f6a175b49cdccd11e21fee253a9f92bc622a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1060.asset.meta b/Assets/04_Tiles/Floor/TileSet_1060.asset.meta new file mode 100644 index 0000000..9fa539d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1060.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79db340c4d8d06148aa031e82d99649c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1061.asset b/Assets/04_Tiles/Floor/TileSet_1061.asset new file mode 100644 index 0000000..1a3daa6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1061.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827f0d749a8b5979826c75b192eaa801543951fc1dc64052b1e35f735032c8dc +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1061.asset.meta b/Assets/04_Tiles/Floor/TileSet_1061.asset.meta new file mode 100644 index 0000000..fadd801 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1061.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e84bd526e8361342bd05f18268db360 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1062.asset b/Assets/04_Tiles/Floor/TileSet_1062.asset new file mode 100644 index 0000000..0cdd20c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1062.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d6fa3a3e06cf33b548a74a0525992ae0f6345b1c31a210073a6b3ab78d4c74 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1062.asset.meta b/Assets/04_Tiles/Floor/TileSet_1062.asset.meta new file mode 100644 index 0000000..3e1f435 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1062.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea8767fe84ac68348a42d9a2252f9865 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1063.asset b/Assets/04_Tiles/Floor/TileSet_1063.asset new file mode 100644 index 0000000..bec917c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1063.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9223e3ade55c4bfdc4fbd1702b70a8d44cf76eca6544519f0d346c7e8c86367a +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1063.asset.meta b/Assets/04_Tiles/Floor/TileSet_1063.asset.meta new file mode 100644 index 0000000..47b124a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1063.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0bc6e8cd24e73a46ac81bed5f928f1e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1064.asset b/Assets/04_Tiles/Floor/TileSet_1064.asset new file mode 100644 index 0000000..c99b1b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1064.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4ec6cad7d3bbbd879122c8c4806662fcc8666c6666fd0c38e425f57ea5683e6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1064.asset.meta b/Assets/04_Tiles/Floor/TileSet_1064.asset.meta new file mode 100644 index 0000000..de2f22d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1064.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7d324a9615286994e87329b7176408e9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1065.asset b/Assets/04_Tiles/Floor/TileSet_1065.asset new file mode 100644 index 0000000..46aa488 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1065.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a24cd40b57535028cae180734cc48439fdd77ac9736e54f8fdd730fc4824043d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1065.asset.meta b/Assets/04_Tiles/Floor/TileSet_1065.asset.meta new file mode 100644 index 0000000..380c667 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1065.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bf3d1a2ca07b2894aae0b05299478ddd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1066.asset b/Assets/04_Tiles/Floor/TileSet_1066.asset new file mode 100644 index 0000000..b4232c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1066.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de9efc6855cd74651cb0050df530dcd5384bb9f64d10bc8d79134d7f026072e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1066.asset.meta b/Assets/04_Tiles/Floor/TileSet_1066.asset.meta new file mode 100644 index 0000000..473ea55 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1066.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0bc7b1e620d01e408928e071a3ed5c9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1067.asset b/Assets/04_Tiles/Floor/TileSet_1067.asset new file mode 100644 index 0000000..ee51420 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1067.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7b20b7183eeb19c2cb60311b2c76e6d0bb0831c0b6ee0fb8c34320340ae1830 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1067.asset.meta b/Assets/04_Tiles/Floor/TileSet_1067.asset.meta new file mode 100644 index 0000000..af2beb6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1067.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eef2a08d9cef3f647beef65a5ed53764 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1068.asset b/Assets/04_Tiles/Floor/TileSet_1068.asset new file mode 100644 index 0000000..f733661 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1068.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5d7f90b20cecd2a4694f36d4a854e7dc196e663e85e351ac25c9a3b73ac230 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1068.asset.meta b/Assets/04_Tiles/Floor/TileSet_1068.asset.meta new file mode 100644 index 0000000..ca0761e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1068.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d1cb0179cc0d47469f2bc0bab050add +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1069.asset b/Assets/04_Tiles/Floor/TileSet_1069.asset new file mode 100644 index 0000000..6fe400f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1069.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b11437f59b212b8e83c582583302ec4516a92b613b67e8c21371ba3f8ea6f564 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1069.asset.meta b/Assets/04_Tiles/Floor/TileSet_1069.asset.meta new file mode 100644 index 0000000..46f3c8d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1069.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05bc45bf2d4510a46a9d407d79f5c8e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_107.asset b/Assets/04_Tiles/Floor/TileSet_107.asset new file mode 100644 index 0000000..3249d70 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_107.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c12e70c0c06986fc58a3bf912660592fdb400d9f5642cf61c0164d52f6c95b13 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_107.asset.meta b/Assets/04_Tiles/Floor/TileSet_107.asset.meta new file mode 100644 index 0000000..c2b0a1d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_107.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ba548b0d3dd6d664e8e329063bf7cb89 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1070.asset b/Assets/04_Tiles/Floor/TileSet_1070.asset new file mode 100644 index 0000000..f41f61d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1070.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fef596116445ec33258eae71acc895fb892393bf6ff1ec7483a180b46ff1f7fe +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1070.asset.meta b/Assets/04_Tiles/Floor/TileSet_1070.asset.meta new file mode 100644 index 0000000..e275191 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1070.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 017da3a089da96349958b133df5c6a77 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1071.asset b/Assets/04_Tiles/Floor/TileSet_1071.asset new file mode 100644 index 0000000..ff0f302 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1071.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4058bde08f966dbd1f78510c4b1e74efcf28d252e7bd1cc3af6bd5dc9f657eb3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1071.asset.meta b/Assets/04_Tiles/Floor/TileSet_1071.asset.meta new file mode 100644 index 0000000..9abdee8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1071.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 52223de378b97bb41a688384c0b8e7a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1072.asset b/Assets/04_Tiles/Floor/TileSet_1072.asset new file mode 100644 index 0000000..23fe92f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1072.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:831dda97bbd4712268d66d64c4e1df940b8e7c54b6e72aebd0c36c86750594f1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1072.asset.meta b/Assets/04_Tiles/Floor/TileSet_1072.asset.meta new file mode 100644 index 0000000..7e32ea2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1072.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18aeb7f4e776ee84d8b307172ac2d8ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1073.asset b/Assets/04_Tiles/Floor/TileSet_1073.asset new file mode 100644 index 0000000..284bb5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1073.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:115ccd6573b50734145e5f389411896734d35cb7619c9fdc46226c65e6ea8132 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1073.asset.meta b/Assets/04_Tiles/Floor/TileSet_1073.asset.meta new file mode 100644 index 0000000..fcc676e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1073.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb28355361dd6f54e8b9e3f301b3913b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1074.asset b/Assets/04_Tiles/Floor/TileSet_1074.asset new file mode 100644 index 0000000..8a8d98f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1074.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4436f95509c713583ab3515c1632099ad376ce0cf2e5eb72d24598fa1acdb32a +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1074.asset.meta b/Assets/04_Tiles/Floor/TileSet_1074.asset.meta new file mode 100644 index 0000000..b9a4b5d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1074.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 289dc260586129d4e8d06c9fc5b48991 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1075.asset b/Assets/04_Tiles/Floor/TileSet_1075.asset new file mode 100644 index 0000000..16ace2d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1075.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85da7b6f727f55258a5c1056bfdb8b6c8ffcf763221885e8a923665306a1299 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1075.asset.meta b/Assets/04_Tiles/Floor/TileSet_1075.asset.meta new file mode 100644 index 0000000..9afdb39 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1075.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9682ba26bd7d0240b108e513e831998 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1076.asset b/Assets/04_Tiles/Floor/TileSet_1076.asset new file mode 100644 index 0000000..b3220d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1076.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2411e4609313ce7a8b7686df8a9faccf83a89280aeeadcb2bed5446dc41217ab +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1076.asset.meta b/Assets/04_Tiles/Floor/TileSet_1076.asset.meta new file mode 100644 index 0000000..1796b2c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1076.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d79edea60d24e3642af328d2cba08b4e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1077.asset b/Assets/04_Tiles/Floor/TileSet_1077.asset new file mode 100644 index 0000000..591a7ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1077.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a85095c4034c0cdcd7a716b01a76cab561b3e9da92607d6a7104fcd8b4fbba0 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1077.asset.meta b/Assets/04_Tiles/Floor/TileSet_1077.asset.meta new file mode 100644 index 0000000..198244d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1077.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55b29317eae69774f958bab84a5012da +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1078.asset b/Assets/04_Tiles/Floor/TileSet_1078.asset new file mode 100644 index 0000000..2eb9af1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1078.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f1af34977877b8acbe80677fb639bcb2c6121a038316f8827e2548541e4a59 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1078.asset.meta b/Assets/04_Tiles/Floor/TileSet_1078.asset.meta new file mode 100644 index 0000000..56ca824 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1078.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e099220676c917e4dacce13f91f14152 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1079.asset b/Assets/04_Tiles/Floor/TileSet_1079.asset new file mode 100644 index 0000000..0abb031 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1079.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e21ea363dccef3a9f0cfef57879d071155d26265d67c948af46c6126e7bf0959 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1079.asset.meta b/Assets/04_Tiles/Floor/TileSet_1079.asset.meta new file mode 100644 index 0000000..aef360a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1079.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1dbb84e61d6b37d4c8a9d9fba40f9b39 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_108.asset b/Assets/04_Tiles/Floor/TileSet_108.asset new file mode 100644 index 0000000..c78d6bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_108.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0839ae4177ed65acb81f0958488980b8ce28ea137c06df6153a743a59f61b8ad +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_108.asset.meta b/Assets/04_Tiles/Floor/TileSet_108.asset.meta new file mode 100644 index 0000000..53d76b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_108.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c64fc3f2bd2a62468ae2928bfefd5e5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1080.asset b/Assets/04_Tiles/Floor/TileSet_1080.asset new file mode 100644 index 0000000..bab5c5b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1080.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39bbdb5cd31384aa590b688b1c3fa610724236600172225d3f811ac548fa0a11 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1080.asset.meta b/Assets/04_Tiles/Floor/TileSet_1080.asset.meta new file mode 100644 index 0000000..5207fc0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1080.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b0ca741075b964499916c169ab64570 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1081.asset b/Assets/04_Tiles/Floor/TileSet_1081.asset new file mode 100644 index 0000000..50087d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1081.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a777f3c0ccda1ce0e84b6513fab4f258a6db654bdfd7bf0f1aebc13172b57eed +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1081.asset.meta b/Assets/04_Tiles/Floor/TileSet_1081.asset.meta new file mode 100644 index 0000000..978cb75 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1081.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c3f306a2b24dd644891de642f06a92e8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1082.asset b/Assets/04_Tiles/Floor/TileSet_1082.asset new file mode 100644 index 0000000..6306f0e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1082.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70d43be45cb7a49d709c848641fa57b4bbb9e566705e59e86584b65b729bcf55 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1082.asset.meta b/Assets/04_Tiles/Floor/TileSet_1082.asset.meta new file mode 100644 index 0000000..a332656 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1082.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 149bea16db411ed42935028be1a7504d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1083.asset b/Assets/04_Tiles/Floor/TileSet_1083.asset new file mode 100644 index 0000000..1cb732d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1083.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc282927fcbae498dee22083176918da14450885edd1e97f4ce850e02ba55a7 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1083.asset.meta b/Assets/04_Tiles/Floor/TileSet_1083.asset.meta new file mode 100644 index 0000000..31aef0e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1083.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a37e7479edbbde4692c188d9523d5f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1084.asset b/Assets/04_Tiles/Floor/TileSet_1084.asset new file mode 100644 index 0000000..0820355 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1084.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a7db23f40ef8db8a93fcc9cca96e47bf5e914307f69170918297ef8c131e3eb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1084.asset.meta b/Assets/04_Tiles/Floor/TileSet_1084.asset.meta new file mode 100644 index 0000000..cd9baec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1084.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 882f9925b51a1814ca8fd4ab0602b058 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1085.asset b/Assets/04_Tiles/Floor/TileSet_1085.asset new file mode 100644 index 0000000..6464e7d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1085.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af8e7aec41ec2444d427fb4c4fd77654b6f50041fdcb68e9e0293b0b4cfc865 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1085.asset.meta b/Assets/04_Tiles/Floor/TileSet_1085.asset.meta new file mode 100644 index 0000000..a4ec54a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1085.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 385e77d9158ee864896769f1a0883877 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1086.asset b/Assets/04_Tiles/Floor/TileSet_1086.asset new file mode 100644 index 0000000..fb32929 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1086.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bff65348957a36f12ecd9a3538247347abc842a8900c2731262e297752218e1 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1086.asset.meta b/Assets/04_Tiles/Floor/TileSet_1086.asset.meta new file mode 100644 index 0000000..56e541e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1086.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6aa9b261101323646b8dfebdd528631b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1087.asset b/Assets/04_Tiles/Floor/TileSet_1087.asset new file mode 100644 index 0000000..f538b59 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1087.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86297bd4c6f646c5490d56738a8ce880eaf9f9e0103d1799b84ad8139fd49910 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1087.asset.meta b/Assets/04_Tiles/Floor/TileSet_1087.asset.meta new file mode 100644 index 0000000..4e142a6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1087.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2cbc880ce306a79419ed6f7545964ef9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1088.asset b/Assets/04_Tiles/Floor/TileSet_1088.asset new file mode 100644 index 0000000..cb1c06d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1088.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d13ef6007436b00eb77870ba483c3cb078c370b865a9d52ede0c93dcad1cfcfb +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1088.asset.meta b/Assets/04_Tiles/Floor/TileSet_1088.asset.meta new file mode 100644 index 0000000..d8d34e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1088.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 952dd44974d80684da64877e5bc16cb6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1089.asset b/Assets/04_Tiles/Floor/TileSet_1089.asset new file mode 100644 index 0000000..653ca04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1089.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f31c6a5d7e7531944687cfa6bfed9284f64b35506c016566956884b05a79b6a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1089.asset.meta b/Assets/04_Tiles/Floor/TileSet_1089.asset.meta new file mode 100644 index 0000000..52fc9dc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1089.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fbccf6a4235f782418db2f273b1ed592 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_109.asset b/Assets/04_Tiles/Floor/TileSet_109.asset new file mode 100644 index 0000000..2bcdd4b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_109.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:318c39a701a90980124cd39edec8ae252ee8bb09949e67c706e688fa0e822749 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_109.asset.meta b/Assets/04_Tiles/Floor/TileSet_109.asset.meta new file mode 100644 index 0000000..d5713ad --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_109.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aad35388a140e9c40ba90322ef35f18b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1090.asset b/Assets/04_Tiles/Floor/TileSet_1090.asset new file mode 100644 index 0000000..33509ef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1090.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84ee5670fc78c390d9604931a6a62751236e8ac2f0c993f48c6382d74353e68c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1090.asset.meta b/Assets/04_Tiles/Floor/TileSet_1090.asset.meta new file mode 100644 index 0000000..71cd8e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1090.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6764620ad5847ee459e8002dece83a6b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1091.asset b/Assets/04_Tiles/Floor/TileSet_1091.asset new file mode 100644 index 0000000..2cd6326 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1091.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4a609921f163600fdf9a1cbe87f3e337230303149871aa433e034821c894dfe +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1091.asset.meta b/Assets/04_Tiles/Floor/TileSet_1091.asset.meta new file mode 100644 index 0000000..f8bda6d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1091.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 480eef7c70618404ea3c3d69b335561c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1092.asset b/Assets/04_Tiles/Floor/TileSet_1092.asset new file mode 100644 index 0000000..813f991 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1092.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736eb6ca9f46761641d5e4b22981560a1d0a06c25820e904fdcea3560d8c731e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1092.asset.meta b/Assets/04_Tiles/Floor/TileSet_1092.asset.meta new file mode 100644 index 0000000..3a0840a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1092.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af9ae2ffbae114945aa06fba3d2ed3f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1093.asset b/Assets/04_Tiles/Floor/TileSet_1093.asset new file mode 100644 index 0000000..1e731a5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1093.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ae8ee8851991d1314e418dcbe8ccd0eb38bfb4e2f6893dec7798a47056290bf +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1093.asset.meta b/Assets/04_Tiles/Floor/TileSet_1093.asset.meta new file mode 100644 index 0000000..9394c50 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1093.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0cf26968210f4484990c4588ae102801 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1094.asset b/Assets/04_Tiles/Floor/TileSet_1094.asset new file mode 100644 index 0000000..0fd3a6e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1094.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a52c82e43922b508ccc534d04ec722f80618a07f4a1df660592325d1ecf754 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1094.asset.meta b/Assets/04_Tiles/Floor/TileSet_1094.asset.meta new file mode 100644 index 0000000..3542fd7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1094.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8dc0c2716e797de408e5cf79c2d99b3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1095.asset b/Assets/04_Tiles/Floor/TileSet_1095.asset new file mode 100644 index 0000000..c312f02 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1095.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1f10ed46033fda0babd6a46b51ca29ee3ae8c89fe7a211a7d3b8049e80d11ae +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1095.asset.meta b/Assets/04_Tiles/Floor/TileSet_1095.asset.meta new file mode 100644 index 0000000..6db925d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1095.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7cc2b0e9c5c3ff142bbe815f00add110 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1096.asset b/Assets/04_Tiles/Floor/TileSet_1096.asset new file mode 100644 index 0000000..2c14925 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1096.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9fad2aa2507c8765ecd3e8625bf14288109bca30eb75278aec82a44375df64 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1096.asset.meta b/Assets/04_Tiles/Floor/TileSet_1096.asset.meta new file mode 100644 index 0000000..2d9713f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1096.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a26b809d2b69e1f4d9f8078a38f96bad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1097.asset b/Assets/04_Tiles/Floor/TileSet_1097.asset new file mode 100644 index 0000000..d6fe112 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1097.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0732d7989a7d2b1ad1fb24ae3ae89f113cf68b0e486bbd39bdd048d70f215d75 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1097.asset.meta b/Assets/04_Tiles/Floor/TileSet_1097.asset.meta new file mode 100644 index 0000000..c0bae51 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1097.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1e4f93286a541b46a39e9aa18b4ddc8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1098.asset b/Assets/04_Tiles/Floor/TileSet_1098.asset new file mode 100644 index 0000000..c3b831a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1098.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5df97dac2425472eed52138f081404de2d108d74e28d03f853629b098b615b8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1098.asset.meta b/Assets/04_Tiles/Floor/TileSet_1098.asset.meta new file mode 100644 index 0000000..3a92865 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1098.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be146006634acb743b22cd3dd51988a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1099.asset b/Assets/04_Tiles/Floor/TileSet_1099.asset new file mode 100644 index 0000000..64e3c04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1099.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8ba96b940bc868ad70d8031d8e07a1c7b0abc658429ee742ff936adb6f848a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1099.asset.meta b/Assets/04_Tiles/Floor/TileSet_1099.asset.meta new file mode 100644 index 0000000..d5cedfb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1099.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85f883cbad3367045bc9a16dcc3cee6a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_11.asset b/Assets/04_Tiles/Floor/TileSet_11.asset new file mode 100644 index 0000000..c5a121a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_11.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8c4c68560ca05632837f20be5748de3f92fc134c9696faf29139354c9ddae7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_11.asset.meta b/Assets/04_Tiles/Floor/TileSet_11.asset.meta new file mode 100644 index 0000000..7463c52 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_11.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 934a465f9b92e0d428c3bfaaf41a0259 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_110.asset b/Assets/04_Tiles/Floor/TileSet_110.asset new file mode 100644 index 0000000..c757333 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_110.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11975f084cf254a40ea55bea8ef8053bae5ef35fcb242c1d08bcea951cf68f1f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_110.asset.meta b/Assets/04_Tiles/Floor/TileSet_110.asset.meta new file mode 100644 index 0000000..41cc663 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_110.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15fd6b520074db34099e085643e90450 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1100.asset b/Assets/04_Tiles/Floor/TileSet_1100.asset new file mode 100644 index 0000000..45707f8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1100.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf5f4cfd39d4133178f3fa173a48ff19c8448629f19720a740755227bd7e8da2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1100.asset.meta b/Assets/04_Tiles/Floor/TileSet_1100.asset.meta new file mode 100644 index 0000000..f02a6e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1100.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc36adaf1355a884eb6ce4547acf461a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1101.asset b/Assets/04_Tiles/Floor/TileSet_1101.asset new file mode 100644 index 0000000..e34f406 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1101.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a81ba561b7072eda79887968dfd499a1818e72d0514d85dea74922b8ad00b486 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1101.asset.meta b/Assets/04_Tiles/Floor/TileSet_1101.asset.meta new file mode 100644 index 0000000..77e7011 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1101.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 310d607b5cd1d4a4ca3999751969dc9f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1102.asset b/Assets/04_Tiles/Floor/TileSet_1102.asset new file mode 100644 index 0000000..611aa3f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1102.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c8f27d8947a9aa7d3eb28f6d1b9c69d8a8e34b3b3378612d872fe2c213d835 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1102.asset.meta b/Assets/04_Tiles/Floor/TileSet_1102.asset.meta new file mode 100644 index 0000000..876b1ee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1102.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8137f0bedce348468eb10ef18fcc0f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1103.asset b/Assets/04_Tiles/Floor/TileSet_1103.asset new file mode 100644 index 0000000..1611dcc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1103.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80f3f15ae7f6385a1e9d499d9c94d60309cb9a6106526670b061ae53e8711469 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1103.asset.meta b/Assets/04_Tiles/Floor/TileSet_1103.asset.meta new file mode 100644 index 0000000..e2d95c4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1103.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7b19043488245b4aae4538be370f7ae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1104.asset b/Assets/04_Tiles/Floor/TileSet_1104.asset new file mode 100644 index 0000000..535202e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1104.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c92590eb58cb9cb27328ea3a5540fa1963064919724319b8380bb325de8f3fa +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1104.asset.meta b/Assets/04_Tiles/Floor/TileSet_1104.asset.meta new file mode 100644 index 0000000..af5cc0d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1104.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a76139dbb92e2ac4f93e26ee140e9d11 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1105.asset b/Assets/04_Tiles/Floor/TileSet_1105.asset new file mode 100644 index 0000000..5520fbe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1105.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b41cdf497fe91b3a5f7cbba8244f588c96ad4b7744d55d87b4e1d5f5d4384ac0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1105.asset.meta b/Assets/04_Tiles/Floor/TileSet_1105.asset.meta new file mode 100644 index 0000000..d00d9c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1105.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53f71c8e081a2bb4ab9b25938d482485 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1106.asset b/Assets/04_Tiles/Floor/TileSet_1106.asset new file mode 100644 index 0000000..adefe4f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1106.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5155fb9f1ca43e03b3aa49efa11e7abb2b788082182cdf19e14e15aef635b42 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1106.asset.meta b/Assets/04_Tiles/Floor/TileSet_1106.asset.meta new file mode 100644 index 0000000..eb4ccd3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1106.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3917242e16caf60499c0639f6bcc7d7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1107.asset b/Assets/04_Tiles/Floor/TileSet_1107.asset new file mode 100644 index 0000000..b9fe931 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1107.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95325656eb89ead8f61de2adbf7c306effbf0da96686eefe24dd8a38c1289cef +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1107.asset.meta b/Assets/04_Tiles/Floor/TileSet_1107.asset.meta new file mode 100644 index 0000000..2369311 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1107.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5207f1046ea36d845b44d2660d230bda +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1108.asset b/Assets/04_Tiles/Floor/TileSet_1108.asset new file mode 100644 index 0000000..786cf9f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1108.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e94263032dd37f3a3b0f9039dd4cc23676a5d71f1cdca9c6cf9b7e91341f3bb2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1108.asset.meta b/Assets/04_Tiles/Floor/TileSet_1108.asset.meta new file mode 100644 index 0000000..e29d390 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1108.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad180bb7c0b06dd4bacc927855966131 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1109.asset b/Assets/04_Tiles/Floor/TileSet_1109.asset new file mode 100644 index 0000000..a86e0a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1109.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733acf77a30daeed850d9dbcb0af15a5f60a1b764f1b2dac7ff9e12b488b1313 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1109.asset.meta b/Assets/04_Tiles/Floor/TileSet_1109.asset.meta new file mode 100644 index 0000000..412931e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1109.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b58ee2bb16c57174cba51f6b3e709717 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_111.asset b/Assets/04_Tiles/Floor/TileSet_111.asset new file mode 100644 index 0000000..2ffad25 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_111.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38fcaa92acc84c17a021876e0087b24937a7fbced14f9fd0909c11e6f23e6943 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_111.asset.meta b/Assets/04_Tiles/Floor/TileSet_111.asset.meta new file mode 100644 index 0000000..526c883 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_111.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0945e2453f70ca4899c9f327e2283ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1110.asset b/Assets/04_Tiles/Floor/TileSet_1110.asset new file mode 100644 index 0000000..9cdc027 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1110.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc07234556282d4e9b785bb9b228cafd1582b4ef5226c4d3969458199028a3b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1110.asset.meta b/Assets/04_Tiles/Floor/TileSet_1110.asset.meta new file mode 100644 index 0000000..4eceb42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1110.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ffe8bbb48dc69d49a1fa7ab336a9088 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1111.asset b/Assets/04_Tiles/Floor/TileSet_1111.asset new file mode 100644 index 0000000..09eafdd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1111.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6708b6038bc4802199efd8cb8662c9942f4554789a02f9574755aaf33e8e98a +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1111.asset.meta b/Assets/04_Tiles/Floor/TileSet_1111.asset.meta new file mode 100644 index 0000000..9cebdae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1111.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41d11a470746ac9488ad51d0df3ce456 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1112.asset b/Assets/04_Tiles/Floor/TileSet_1112.asset new file mode 100644 index 0000000..c4d91e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1112.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff4fe67eea3ab48ad977f4cf625dd99fee6e814c2e5bdb0f6237519ae2400115 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1112.asset.meta b/Assets/04_Tiles/Floor/TileSet_1112.asset.meta new file mode 100644 index 0000000..b8e304f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1112.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 743db13997e7eb54b9f7b6bf22c7d252 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1113.asset b/Assets/04_Tiles/Floor/TileSet_1113.asset new file mode 100644 index 0000000..068fe9e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1113.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2248623188d9f6f740567b36620d05757ec61111facef52f1c7df17a4eb03f9a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1113.asset.meta b/Assets/04_Tiles/Floor/TileSet_1113.asset.meta new file mode 100644 index 0000000..3ca25c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1113.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3e58328dba7f3843af1c633e7a607ce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1114.asset b/Assets/04_Tiles/Floor/TileSet_1114.asset new file mode 100644 index 0000000..90dae27 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1114.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe3c1cc907b9964ebc5b92144df115bcbbf464caa6b85d6e150b9f7e568a1457 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1114.asset.meta b/Assets/04_Tiles/Floor/TileSet_1114.asset.meta new file mode 100644 index 0000000..c8bf694 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1114.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dcd20884ac452fa4b9bc16020942b7ef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1115.asset b/Assets/04_Tiles/Floor/TileSet_1115.asset new file mode 100644 index 0000000..e1e3b95 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1115.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c771a5dbaaf616a5b82b489a55da6a9cd9ad5f931dc127c15b1a2a1479583045 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1115.asset.meta b/Assets/04_Tiles/Floor/TileSet_1115.asset.meta new file mode 100644 index 0000000..e18594e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1115.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa14a250f5c899f4186a0e30e9064d41 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1116.asset b/Assets/04_Tiles/Floor/TileSet_1116.asset new file mode 100644 index 0000000..e97bc1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1116.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec341522045e104f4889bb24a0c1a7dd11397738618d795000607a02f7074d10 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1116.asset.meta b/Assets/04_Tiles/Floor/TileSet_1116.asset.meta new file mode 100644 index 0000000..ac20819 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1116.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1169e05350b0740418a47f8c8a3f4cf3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1117.asset b/Assets/04_Tiles/Floor/TileSet_1117.asset new file mode 100644 index 0000000..003d3a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1117.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:033632d7b78c6344534e192e629451b7c604a08ec5a656edae6eaf9b0a55663b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1117.asset.meta b/Assets/04_Tiles/Floor/TileSet_1117.asset.meta new file mode 100644 index 0000000..df22715 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1117.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed63fb27b36feaa4fa64daeee7ffcceb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1118.asset b/Assets/04_Tiles/Floor/TileSet_1118.asset new file mode 100644 index 0000000..6508abd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1118.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa5183092a61d53138a22f8a41ae746ab4801216c21ddd69f667c0096553b8da +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1118.asset.meta b/Assets/04_Tiles/Floor/TileSet_1118.asset.meta new file mode 100644 index 0000000..72b2688 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1118.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21c766550c0747d42b57f64160bf59ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1119.asset b/Assets/04_Tiles/Floor/TileSet_1119.asset new file mode 100644 index 0000000..97f87c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1119.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b9638048c5ee39f5dcf412ba1dd3c188282cd5f34ab8aed25f7d06d46b98d11 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1119.asset.meta b/Assets/04_Tiles/Floor/TileSet_1119.asset.meta new file mode 100644 index 0000000..f08956e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1119.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 372bc68811ef36948be42582b014c342 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_112.asset b/Assets/04_Tiles/Floor/TileSet_112.asset new file mode 100644 index 0000000..23e76bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_112.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a36d3eb30fed4be8bd50a165e957e77a469a647f63f3482ddb790ef23dca5b5c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_112.asset.meta b/Assets/04_Tiles/Floor/TileSet_112.asset.meta new file mode 100644 index 0000000..4353b59 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_112.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af78ba43b0db2f746ba04135ecc00fa6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1120.asset b/Assets/04_Tiles/Floor/TileSet_1120.asset new file mode 100644 index 0000000..762017c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1120.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59327d7b9e8f2ce4cb3d23543fb310a8d91b514f738fdd78885e57dc4de2cc4b +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1120.asset.meta b/Assets/04_Tiles/Floor/TileSet_1120.asset.meta new file mode 100644 index 0000000..f87060f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1120.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cade0f3fdff5c8d44a5fc1c21f597a1f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1121.asset b/Assets/04_Tiles/Floor/TileSet_1121.asset new file mode 100644 index 0000000..ead09ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1121.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d74d4b934ca2c7c5fa8044aba8b717415b0e52a887aa35e102b9f6eac681a349 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1121.asset.meta b/Assets/04_Tiles/Floor/TileSet_1121.asset.meta new file mode 100644 index 0000000..801a4ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1121.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b8b3b8a86bb40649a7dd4e7dc64cea2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1122.asset b/Assets/04_Tiles/Floor/TileSet_1122.asset new file mode 100644 index 0000000..501e143 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1122.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00691711b9cd84530b58dd2ad83b61e4dd041e7108ce2a881daa82bc86afadf +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1122.asset.meta b/Assets/04_Tiles/Floor/TileSet_1122.asset.meta new file mode 100644 index 0000000..dae6ec9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1122.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d235f8ac57d65574895fe84f0908847a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1123.asset b/Assets/04_Tiles/Floor/TileSet_1123.asset new file mode 100644 index 0000000..7bfa3ef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1123.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:409f1399b2ae8887308de2b928c575b57a5e3e7fe4a2e09eaecce99d3a3d5972 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1123.asset.meta b/Assets/04_Tiles/Floor/TileSet_1123.asset.meta new file mode 100644 index 0000000..e8e46f2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1123.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66c9fb3c6d6193c46bd750e85dcaf893 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1124.asset b/Assets/04_Tiles/Floor/TileSet_1124.asset new file mode 100644 index 0000000..4279330 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1124.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e28d24a1233dce35d4977f68428b61ab22709d3087b4a36a55cbb1521fd8fc5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1124.asset.meta b/Assets/04_Tiles/Floor/TileSet_1124.asset.meta new file mode 100644 index 0000000..8daf6d0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1124.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f09b36eca9614e43aa24b21e27422ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1125.asset b/Assets/04_Tiles/Floor/TileSet_1125.asset new file mode 100644 index 0000000..fb54018 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1125.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab39dba644a0a1699fe8dd7f95bb971e69f88b6d9a51795adeecd2f7668ddc33 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1125.asset.meta b/Assets/04_Tiles/Floor/TileSet_1125.asset.meta new file mode 100644 index 0000000..44b7b8e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1125.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 335470b6fdd172b46b579fc66b84e852 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1126.asset b/Assets/04_Tiles/Floor/TileSet_1126.asset new file mode 100644 index 0000000..9ef198f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1126.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:805ccdd5824365e703f74e9880e8f0fef14cc9f356f7e48fde6d6909d638a210 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1126.asset.meta b/Assets/04_Tiles/Floor/TileSet_1126.asset.meta new file mode 100644 index 0000000..466d4f4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1126.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 890c5852a9c79f84c855bc4f5921dd53 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1127.asset b/Assets/04_Tiles/Floor/TileSet_1127.asset new file mode 100644 index 0000000..be57bbc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1127.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dccd7c227f6d374be0a061a6c27a5896ce99666fbcd4fa7af4e5570010e5040e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1127.asset.meta b/Assets/04_Tiles/Floor/TileSet_1127.asset.meta new file mode 100644 index 0000000..ade43d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1127.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5abd57781da0b684db7659e3a1cbbc73 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1128.asset b/Assets/04_Tiles/Floor/TileSet_1128.asset new file mode 100644 index 0000000..5c70567 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1128.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee76065f3c44f24655dff82d8628ed89201bbc493e9a75772a7eacb64475a7da +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1128.asset.meta b/Assets/04_Tiles/Floor/TileSet_1128.asset.meta new file mode 100644 index 0000000..bee725e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1128.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c84c2caf405ca4846a34d70f90c5c277 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1129.asset b/Assets/04_Tiles/Floor/TileSet_1129.asset new file mode 100644 index 0000000..6b966cf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1129.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f575cf0c2ad540d4948ee74bfb1d9ca7a2769bb9d60e1113ac80ae91b5cb0b18 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1129.asset.meta b/Assets/04_Tiles/Floor/TileSet_1129.asset.meta new file mode 100644 index 0000000..30928c4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1129.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c2655ce985b3554a84536be059bf6ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_113.asset b/Assets/04_Tiles/Floor/TileSet_113.asset new file mode 100644 index 0000000..46b4b5e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_113.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7984c931893e6d16b35825ca4bbc6d870d0b171f419c732161fe2a6483346425 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_113.asset.meta b/Assets/04_Tiles/Floor/TileSet_113.asset.meta new file mode 100644 index 0000000..a79a94f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_113.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b9fa1e303cf57c4cadd34baf67b7c3b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1130.asset b/Assets/04_Tiles/Floor/TileSet_1130.asset new file mode 100644 index 0000000..45c5b63 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1130.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18ce748174a0529e3630080bf6ca8942b7981abd025b0a525de1062e95046b1c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1130.asset.meta b/Assets/04_Tiles/Floor/TileSet_1130.asset.meta new file mode 100644 index 0000000..edcbaec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1130.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd2117ca8b609b04fa2c2004a27f91fd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1131.asset b/Assets/04_Tiles/Floor/TileSet_1131.asset new file mode 100644 index 0000000..19f73d9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1131.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ea9afda3142dd5bd6732639589b78a55e284f5869bacee962df935623ccc678 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1131.asset.meta b/Assets/04_Tiles/Floor/TileSet_1131.asset.meta new file mode 100644 index 0000000..ae6f74e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1131.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 112bc989631faa84a8d4bdeceff7a424 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1132.asset b/Assets/04_Tiles/Floor/TileSet_1132.asset new file mode 100644 index 0000000..dc99657 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1132.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963fc19d105a03c43c36463b0d4ea7faf1d94136b1e1114d4c591c32246567a5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1132.asset.meta b/Assets/04_Tiles/Floor/TileSet_1132.asset.meta new file mode 100644 index 0000000..d1f5a81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1132.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f28c18e76d2d3745859b86fd83e7b9f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1133.asset b/Assets/04_Tiles/Floor/TileSet_1133.asset new file mode 100644 index 0000000..bc2d756 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1133.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39441fff8d92331526bae95a5d024093aecff6c18733fd5cf716ac09da3325bb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1133.asset.meta b/Assets/04_Tiles/Floor/TileSet_1133.asset.meta new file mode 100644 index 0000000..3b7065c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1133.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d9f071aa6b88a3948b75d750ff2c553c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1134.asset b/Assets/04_Tiles/Floor/TileSet_1134.asset new file mode 100644 index 0000000..1c9bf2d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1134.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8983b744aae0a92308d7af0f40df33edf6993a2f8570d22a7e53006c9b4b512c +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1134.asset.meta b/Assets/04_Tiles/Floor/TileSet_1134.asset.meta new file mode 100644 index 0000000..b4b6d55 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1134.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f27bfc33eced7654496af91807fc15cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1135.asset b/Assets/04_Tiles/Floor/TileSet_1135.asset new file mode 100644 index 0000000..7b1e3cc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1135.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4376ec4d9fd7d1d2a8af381e0d3910f0b0df491b655819fe4c35651524746c58 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1135.asset.meta b/Assets/04_Tiles/Floor/TileSet_1135.asset.meta new file mode 100644 index 0000000..e140ec5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1135.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 595675a10a992394f9f0b5cdec68e535 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1136.asset b/Assets/04_Tiles/Floor/TileSet_1136.asset new file mode 100644 index 0000000..61a03cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1136.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31741730f621b5cb8861a1af97f6942aa4cad2ce7ff7d8a2510c21156d35f785 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1136.asset.meta b/Assets/04_Tiles/Floor/TileSet_1136.asset.meta new file mode 100644 index 0000000..e106f78 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1136.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7847686072218994d94a5fbd4ce802f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1137.asset b/Assets/04_Tiles/Floor/TileSet_1137.asset new file mode 100644 index 0000000..602059d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1137.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fed32fcb9484ee9123178dc846f6a1514bce86cc829245ec89bf6e4bed296a8d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1137.asset.meta b/Assets/04_Tiles/Floor/TileSet_1137.asset.meta new file mode 100644 index 0000000..f310700 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1137.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66b991b60099a084196f96bb472adae6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1138.asset b/Assets/04_Tiles/Floor/TileSet_1138.asset new file mode 100644 index 0000000..ad0b452 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1138.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b5bf717fc4d0095574446b0b0e14345ec926a1cee013f5509066aaa6c127a3e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1138.asset.meta b/Assets/04_Tiles/Floor/TileSet_1138.asset.meta new file mode 100644 index 0000000..7254ee5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1138.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79091044a10b7d24db8fe7ececf515c8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1139.asset b/Assets/04_Tiles/Floor/TileSet_1139.asset new file mode 100644 index 0000000..fbea086 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1139.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:685d18e10aec02d57ab41bc85eaa094abf91bec5ebc0c1b197ab5e6fc210c554 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1139.asset.meta b/Assets/04_Tiles/Floor/TileSet_1139.asset.meta new file mode 100644 index 0000000..e3259e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1139.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d34abe6419e74e4b9dbd82170229086 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_114.asset b/Assets/04_Tiles/Floor/TileSet_114.asset new file mode 100644 index 0000000..9b7ff04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_114.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6814f94b3606b9baca699d98f7cc0d4d0e9232d9f779fa88465b73da21df39ca +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_114.asset.meta b/Assets/04_Tiles/Floor/TileSet_114.asset.meta new file mode 100644 index 0000000..d8fa3fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_114.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57090e56c5e40654eae343e8b21884d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1140.asset b/Assets/04_Tiles/Floor/TileSet_1140.asset new file mode 100644 index 0000000..b218bd2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1140.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c49e4b8b921733a2781cf382ac821db43028e8dc82e4cd7c98492f21f7cc0e4 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1140.asset.meta b/Assets/04_Tiles/Floor/TileSet_1140.asset.meta new file mode 100644 index 0000000..8ca550c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1140.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 00e424c40eca7a04f8ba94cb67f8a0f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1141.asset b/Assets/04_Tiles/Floor/TileSet_1141.asset new file mode 100644 index 0000000..0a2380c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1141.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fab7e238bff87acdfdcd2ab9794e5f43e1ab22af4eb4106e273d28590eb855b5 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1141.asset.meta b/Assets/04_Tiles/Floor/TileSet_1141.asset.meta new file mode 100644 index 0000000..ac41e71 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1141.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 897f75c9350c3d149bd78df3022231b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1142.asset b/Assets/04_Tiles/Floor/TileSet_1142.asset new file mode 100644 index 0000000..4e73333 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1142.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3abd85b1bc882425c0d74856c7fada745dc1f26a07eb05039cb0f8db300f9dd9 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1142.asset.meta b/Assets/04_Tiles/Floor/TileSet_1142.asset.meta new file mode 100644 index 0000000..fc75bbc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1142.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f790a5380d5fc9642a792ef442f6bc74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1143.asset b/Assets/04_Tiles/Floor/TileSet_1143.asset new file mode 100644 index 0000000..3c8dc3d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1143.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffa1076e01ec6a82087f2beeded92dcdb708a0f6625270517d5925ac1842bf25 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1143.asset.meta b/Assets/04_Tiles/Floor/TileSet_1143.asset.meta new file mode 100644 index 0000000..e4273d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1143.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f7ad3c1f0100444e8af68f1eb1ff69f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1144.asset b/Assets/04_Tiles/Floor/TileSet_1144.asset new file mode 100644 index 0000000..fe67984 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1144.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e936615550c50ab19b21d92ea03f48582a137030ff47d36d9cde36d62d66f1ff +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1144.asset.meta b/Assets/04_Tiles/Floor/TileSet_1144.asset.meta new file mode 100644 index 0000000..51f8338 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1144.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fbd8718a6c0fc914d9a75e5bd49f23b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1145.asset b/Assets/04_Tiles/Floor/TileSet_1145.asset new file mode 100644 index 0000000..4d2e28e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1145.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8d88a76036e5cdfe44f86f2a698cd352b59d37c5bbad170436e519090e0f76 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1145.asset.meta b/Assets/04_Tiles/Floor/TileSet_1145.asset.meta new file mode 100644 index 0000000..b7514fa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1145.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5508741aabd2617458ca9751dcf62d08 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1146.asset b/Assets/04_Tiles/Floor/TileSet_1146.asset new file mode 100644 index 0000000..00bbd29 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1146.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58ebc72f35de89ba20d1b1e9885ef928f6440ae6a6dd24956c90fd0baba874a5 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1146.asset.meta b/Assets/04_Tiles/Floor/TileSet_1146.asset.meta new file mode 100644 index 0000000..3b2462b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1146.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10c19bd2d8bbc0c41a440071ec890e95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1147.asset b/Assets/04_Tiles/Floor/TileSet_1147.asset new file mode 100644 index 0000000..e07c63f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1147.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57781cadb8acf847e5f4d9f0fe7e94858855a2465a8d4ebaabd423099f234f09 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1147.asset.meta b/Assets/04_Tiles/Floor/TileSet_1147.asset.meta new file mode 100644 index 0000000..6c78bbf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1147.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c18622a6fbb4a51478a3cf42fc88e0ae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1148.asset b/Assets/04_Tiles/Floor/TileSet_1148.asset new file mode 100644 index 0000000..e39bee5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1148.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0961de17ab909325c0502b231bc3e772aa2656945e25a725cbf27cc9281eccf2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1148.asset.meta b/Assets/04_Tiles/Floor/TileSet_1148.asset.meta new file mode 100644 index 0000000..dad6392 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1148.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed8332e78dfa70a499edd48e691129dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1149.asset b/Assets/04_Tiles/Floor/TileSet_1149.asset new file mode 100644 index 0000000..39acc10 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1149.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d954cb6a0b7e2c9b479ef7bbbe5e7ef7f4d1d01ffc10b0cfde4deef2bbbd5b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1149.asset.meta b/Assets/04_Tiles/Floor/TileSet_1149.asset.meta new file mode 100644 index 0000000..74aa0f5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1149.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9fda67d5e5e378f468a60bd7687df8ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_115.asset b/Assets/04_Tiles/Floor/TileSet_115.asset new file mode 100644 index 0000000..e84980c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_115.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a597c7209d0b07b9c4cbed4c6cbbef1c0188ba785c44c4e461b352f7e0d7b97e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_115.asset.meta b/Assets/04_Tiles/Floor/TileSet_115.asset.meta new file mode 100644 index 0000000..adeaa02 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_115.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 183e603f7ebae34429fad9b5c9b450c7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1150.asset b/Assets/04_Tiles/Floor/TileSet_1150.asset new file mode 100644 index 0000000..46bc487 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1150.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d47458d6d08459e2d480c3863fdbbf45dfacf2ce55ec2756af94a2515239f6d1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1150.asset.meta b/Assets/04_Tiles/Floor/TileSet_1150.asset.meta new file mode 100644 index 0000000..d07f8e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1150.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ebc32c6857cc42847bbfa28eac6b2e64 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1151.asset b/Assets/04_Tiles/Floor/TileSet_1151.asset new file mode 100644 index 0000000..fc0c975 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1151.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1fb6131d03a4b64a47acf512a6494eb49f29052554025e38c825eb2130ae366 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1151.asset.meta b/Assets/04_Tiles/Floor/TileSet_1151.asset.meta new file mode 100644 index 0000000..88280f7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1151.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27817bc7de584ec4aadf0d738f9eb458 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1152.asset b/Assets/04_Tiles/Floor/TileSet_1152.asset new file mode 100644 index 0000000..6ab8fbb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1152.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5fbf7521bd6bb5a8ba8614a593c8ac4ff7e2dfdfd051b75ff1d766938deacf8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1152.asset.meta b/Assets/04_Tiles/Floor/TileSet_1152.asset.meta new file mode 100644 index 0000000..7b9620c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1152.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 935d1b99d7aa28341b7732b262668314 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1153.asset b/Assets/04_Tiles/Floor/TileSet_1153.asset new file mode 100644 index 0000000..f12d6fb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1153.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2206edd85c4731d7ddb59d2acc62d6aa025fb73cba1652210216d1d9bd3fc11 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1153.asset.meta b/Assets/04_Tiles/Floor/TileSet_1153.asset.meta new file mode 100644 index 0000000..8efd2e0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1153.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a9b93170bd6de7429fa2868a8cc1e5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1154.asset b/Assets/04_Tiles/Floor/TileSet_1154.asset new file mode 100644 index 0000000..2a6812a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1154.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de2e8ab83a86967235951d524b342b51c6f3c945a1c304030ab62949f85e80c2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1154.asset.meta b/Assets/04_Tiles/Floor/TileSet_1154.asset.meta new file mode 100644 index 0000000..63bcce7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1154.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cded8c6580e1bc040a805ff23f5a836a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1155.asset b/Assets/04_Tiles/Floor/TileSet_1155.asset new file mode 100644 index 0000000..b965c58 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1155.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b2a076b18b07fa0a815e3d9020486770aae0ea9033908972d18781c2daf535 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1155.asset.meta b/Assets/04_Tiles/Floor/TileSet_1155.asset.meta new file mode 100644 index 0000000..5819905 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1155.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f685266fd9d6ab44989e959d0ffa3b30 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1156.asset b/Assets/04_Tiles/Floor/TileSet_1156.asset new file mode 100644 index 0000000..d204c0f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1156.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b64907cd66be5eaf735a458680a18c3ad1de48b8f5bbcd5d2986a8f62ca5b52 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1156.asset.meta b/Assets/04_Tiles/Floor/TileSet_1156.asset.meta new file mode 100644 index 0000000..4baa183 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1156.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb343d46fa60ba843bf82b81dab1799a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1157.asset b/Assets/04_Tiles/Floor/TileSet_1157.asset new file mode 100644 index 0000000..8c58fdb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1157.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9c6e9db0fa6d897b2efc4a55321f9283508af3b29ecc2b880f1f0bf45e82367 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1157.asset.meta b/Assets/04_Tiles/Floor/TileSet_1157.asset.meta new file mode 100644 index 0000000..e87fcda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1157.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e9fdee4d73c1ea4ca679d3bc4fdf8ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1158.asset b/Assets/04_Tiles/Floor/TileSet_1158.asset new file mode 100644 index 0000000..1038324 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1158.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37abb4196e2d630c1647791e6525be47b8d85c9badc7abcb7c72b6d153c85046 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1158.asset.meta b/Assets/04_Tiles/Floor/TileSet_1158.asset.meta new file mode 100644 index 0000000..7162746 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1158.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e787625e230ac642aa53a10546b476b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1159.asset b/Assets/04_Tiles/Floor/TileSet_1159.asset new file mode 100644 index 0000000..6f8cdac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1159.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c65677f0aa2a4d9289010bb931f5080428f6ba8691e0f421e8c05b47926ae078 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1159.asset.meta b/Assets/04_Tiles/Floor/TileSet_1159.asset.meta new file mode 100644 index 0000000..9289f80 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1159.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e13c387392274524dbe9965740625be6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_116.asset b/Assets/04_Tiles/Floor/TileSet_116.asset new file mode 100644 index 0000000..5e3ec5a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_116.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd805b0aa82f97a2d02a4ac54323d71a7da0fa47b1ad1ed480af1ef4eeb9a9a2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_116.asset.meta b/Assets/04_Tiles/Floor/TileSet_116.asset.meta new file mode 100644 index 0000000..1af1952 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_116.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bd2595499d721d43b02907f7204e895 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1160.asset b/Assets/04_Tiles/Floor/TileSet_1160.asset new file mode 100644 index 0000000..894ea34 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1160.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc1e4d3881080ae58bc41a6363e7b5dd692b5d685ba595d34f013931261ff06 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1160.asset.meta b/Assets/04_Tiles/Floor/TileSet_1160.asset.meta new file mode 100644 index 0000000..caf09a1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1160.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3d96133459e5e6c46abea7ccafe67df0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1161.asset b/Assets/04_Tiles/Floor/TileSet_1161.asset new file mode 100644 index 0000000..7390096 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1161.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f663241dbb6358c37d803671aa52c4a20eb53e77054a2d19350a4a0da2f6bc +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1161.asset.meta b/Assets/04_Tiles/Floor/TileSet_1161.asset.meta new file mode 100644 index 0000000..599273b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1161.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae45c563e1e695a41a615bc0bb77c267 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1162.asset b/Assets/04_Tiles/Floor/TileSet_1162.asset new file mode 100644 index 0000000..ee122bf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1162.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ef3563d48ee6c24689c56559a05686bce055e2fb98dd3fdf38becdc4309a19 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1162.asset.meta b/Assets/04_Tiles/Floor/TileSet_1162.asset.meta new file mode 100644 index 0000000..4bb798e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1162.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1d255a4af166c44b981b2be65e9e3af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1163.asset b/Assets/04_Tiles/Floor/TileSet_1163.asset new file mode 100644 index 0000000..40dd3e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1163.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c011d1e1541e6138f4ace377930dbfa7287be5ef6b502f67112b91ca2534c677 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1163.asset.meta b/Assets/04_Tiles/Floor/TileSet_1163.asset.meta new file mode 100644 index 0000000..65322e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1163.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6eb97935aef8b149bd252e32eb668c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1164.asset b/Assets/04_Tiles/Floor/TileSet_1164.asset new file mode 100644 index 0000000..66a1789 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1164.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968c58e5d5eddaebec825870680dd90e79d8383f7ac56107e611de3c9e8187a3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1164.asset.meta b/Assets/04_Tiles/Floor/TileSet_1164.asset.meta new file mode 100644 index 0000000..d19eb79 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1164.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 528977b13bf126942b7dbcf05de3f296 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1165.asset b/Assets/04_Tiles/Floor/TileSet_1165.asset new file mode 100644 index 0000000..7f7f4e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1165.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:989e3c5b7074b81b17e3cd659f524103ace09de35124c9e375a91d0028ea9940 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1165.asset.meta b/Assets/04_Tiles/Floor/TileSet_1165.asset.meta new file mode 100644 index 0000000..0a3e050 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1165.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ce90f404b6ab4d2429cb7a7c539b7dcc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1166.asset b/Assets/04_Tiles/Floor/TileSet_1166.asset new file mode 100644 index 0000000..8eee7b1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1166.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9063d97806d3b7fc6bf847ac11687660213ad4295caa9af72424379ac3f0a2d2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1166.asset.meta b/Assets/04_Tiles/Floor/TileSet_1166.asset.meta new file mode 100644 index 0000000..afdbbb0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1166.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb0bc8f426322a44788ea1d11e1ca37e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1167.asset b/Assets/04_Tiles/Floor/TileSet_1167.asset new file mode 100644 index 0000000..5e5ac47 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1167.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d2cb2c8e9d12302d1d0317094cf15627407420628ab096a92415293d87ee948 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1167.asset.meta b/Assets/04_Tiles/Floor/TileSet_1167.asset.meta new file mode 100644 index 0000000..f86fd7b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1167.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b24e15812c2ee9847b96f7bc89972099 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1168.asset b/Assets/04_Tiles/Floor/TileSet_1168.asset new file mode 100644 index 0000000..e2b6130 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1168.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:749246090ac2ee7c0db5d7b76f5ad1604cb8495b8572fc1d8009f03e12b15ef7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1168.asset.meta b/Assets/04_Tiles/Floor/TileSet_1168.asset.meta new file mode 100644 index 0000000..2ce68e0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1168.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5dff3c7a59f512428e253bf4aa6f418 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1169.asset b/Assets/04_Tiles/Floor/TileSet_1169.asset new file mode 100644 index 0000000..361c9ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1169.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b0beb7985011dbafeec5698dd4b64607b3150443a7084fd34eac45929b1c31b +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1169.asset.meta b/Assets/04_Tiles/Floor/TileSet_1169.asset.meta new file mode 100644 index 0000000..d84b805 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1169.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23336f9223d5b854092e9d3dc0e27fff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_117.asset b/Assets/04_Tiles/Floor/TileSet_117.asset new file mode 100644 index 0000000..ccf9352 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_117.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6639ad63de12dcf10151dd61653ac27460dc4f09784dfb8fb1d3572a00a3df5e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_117.asset.meta b/Assets/04_Tiles/Floor/TileSet_117.asset.meta new file mode 100644 index 0000000..dd4660f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_117.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 385f3e212a0884242b4b7dda47df92d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1170.asset b/Assets/04_Tiles/Floor/TileSet_1170.asset new file mode 100644 index 0000000..4cae6de --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1170.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04f2e99672f98748eff2ba757dd9993ccea9c93a07c33064b5a4f14c59e82d80 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1170.asset.meta b/Assets/04_Tiles/Floor/TileSet_1170.asset.meta new file mode 100644 index 0000000..4073489 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1170.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38be4f3406650a24789ac2601e05b2c6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1171.asset b/Assets/04_Tiles/Floor/TileSet_1171.asset new file mode 100644 index 0000000..891a43b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1171.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a27f46d88d6a418776a2412e8cb676c64446541dfdf82c95af635606f3c2c5 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1171.asset.meta b/Assets/04_Tiles/Floor/TileSet_1171.asset.meta new file mode 100644 index 0000000..c8a9cbf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1171.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9816d4ac7e9b61a44a4acf3851dbecde +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1172.asset b/Assets/04_Tiles/Floor/TileSet_1172.asset new file mode 100644 index 0000000..4ff0db3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1172.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:736abedb18858a0a8e02dd89112adb1ffaf34b7df60b56cd6d2e8fccf615327c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1172.asset.meta b/Assets/04_Tiles/Floor/TileSet_1172.asset.meta new file mode 100644 index 0000000..50275df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1172.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d7267e8976c7934dbbfe94b77f91f44 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1173.asset b/Assets/04_Tiles/Floor/TileSet_1173.asset new file mode 100644 index 0000000..d888349 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1173.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9c16cd4f99b7c906581cad394584deddb14b060245269fff2a7839c3f613fca +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1173.asset.meta b/Assets/04_Tiles/Floor/TileSet_1173.asset.meta new file mode 100644 index 0000000..e479122 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1173.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf0a80e91b48ca541b9288eaea291224 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1174.asset b/Assets/04_Tiles/Floor/TileSet_1174.asset new file mode 100644 index 0000000..cbee86e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1174.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92503daaa2c1d2df7b934a6083f7e96788141fd5c7f21bc5f4f2b7179130ab44 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1174.asset.meta b/Assets/04_Tiles/Floor/TileSet_1174.asset.meta new file mode 100644 index 0000000..0a50629 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1174.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd91c8490ab57f84d823bd61c13b19f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1175.asset b/Assets/04_Tiles/Floor/TileSet_1175.asset new file mode 100644 index 0000000..1cdf6eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1175.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65e21d194d1630af88f15316aab322f38d0f077d4d4c5726757e2c5ffcfb862c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1175.asset.meta b/Assets/04_Tiles/Floor/TileSet_1175.asset.meta new file mode 100644 index 0000000..5359093 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1175.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ff102412143c39478c77960fd4674dd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1176.asset b/Assets/04_Tiles/Floor/TileSet_1176.asset new file mode 100644 index 0000000..19a434c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1176.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835f33cc03656b1ed5aa83e2ebbf8bfc299284756d0ace676def2d4c87424338 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1176.asset.meta b/Assets/04_Tiles/Floor/TileSet_1176.asset.meta new file mode 100644 index 0000000..a7c521a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1176.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 482e682a3f241c74a82bd15dc5a2398e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1177.asset b/Assets/04_Tiles/Floor/TileSet_1177.asset new file mode 100644 index 0000000..c8a5349 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1177.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d546916eb2d4e715a983323199627dbebf328f66b96a5ff057c02af198ac476b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1177.asset.meta b/Assets/04_Tiles/Floor/TileSet_1177.asset.meta new file mode 100644 index 0000000..fd362c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1177.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 305e978a0d2d082419180170353e2a25 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1178.asset b/Assets/04_Tiles/Floor/TileSet_1178.asset new file mode 100644 index 0000000..92613d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1178.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04c347cdb75230dc7392b6bbac3d942d809453d37ec0379d7ed7bb0ac60dfb07 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1178.asset.meta b/Assets/04_Tiles/Floor/TileSet_1178.asset.meta new file mode 100644 index 0000000..037eb63 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1178.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 190ebffcc9698464e9a09aa532f06221 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1179.asset b/Assets/04_Tiles/Floor/TileSet_1179.asset new file mode 100644 index 0000000..807a2a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1179.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c076b098124c29df0c2b0998c6a212df11d436bcc9b701915e974c6f8b75b0b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1179.asset.meta b/Assets/04_Tiles/Floor/TileSet_1179.asset.meta new file mode 100644 index 0000000..0cbc4a5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1179.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 878bd995acfeb9e4b9069447de956302 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_118.asset b/Assets/04_Tiles/Floor/TileSet_118.asset new file mode 100644 index 0000000..943797d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_118.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8d019d851660a90b5ef7711353b3fa4e1b5720551d01dd3dd08c2080b0f562f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_118.asset.meta b/Assets/04_Tiles/Floor/TileSet_118.asset.meta new file mode 100644 index 0000000..85337ec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_118.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1cd7bbfdc3d1e1345a6c087e99bbe1c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1180.asset b/Assets/04_Tiles/Floor/TileSet_1180.asset new file mode 100644 index 0000000..c8de1a2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1180.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:090196ef1864b18f882bdcbe859d7ab43e157105704902deac96138bab477dc5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1180.asset.meta b/Assets/04_Tiles/Floor/TileSet_1180.asset.meta new file mode 100644 index 0000000..0f2cf9d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1180.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75174bc95a797f7448414a5d1496c050 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1181.asset b/Assets/04_Tiles/Floor/TileSet_1181.asset new file mode 100644 index 0000000..7e7b300 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1181.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0f69912197a1ecb5f2282c304a4534e4c9271ad082f2eed875f0b38f6b863d2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1181.asset.meta b/Assets/04_Tiles/Floor/TileSet_1181.asset.meta new file mode 100644 index 0000000..5aeba99 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1181.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8730727e16ff6644b08c6d52eaebf90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1182.asset b/Assets/04_Tiles/Floor/TileSet_1182.asset new file mode 100644 index 0000000..795f54d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1182.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a55a7607191dffbb122a7394989449ddb9b4d5d8653342a12d492c06bb14ef39 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1182.asset.meta b/Assets/04_Tiles/Floor/TileSet_1182.asset.meta new file mode 100644 index 0000000..91d10ef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1182.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f501c5e8155368743895c9590b7bb962 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1183.asset b/Assets/04_Tiles/Floor/TileSet_1183.asset new file mode 100644 index 0000000..767c351 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1183.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4043f13d195632ac7f47f09aecfa50b7b2eb8893522f629ffda0cc9136254f01 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1183.asset.meta b/Assets/04_Tiles/Floor/TileSet_1183.asset.meta new file mode 100644 index 0000000..1153d90 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1183.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5833bf2e3ef08248840223da76e0c3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1184.asset b/Assets/04_Tiles/Floor/TileSet_1184.asset new file mode 100644 index 0000000..b816861 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1184.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b7a79495e1aa427b116e00f80c11101bf92f4ef39984dcaec2534c926d9e169 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1184.asset.meta b/Assets/04_Tiles/Floor/TileSet_1184.asset.meta new file mode 100644 index 0000000..618dd67 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1184.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f633ec9810202e84bb6be9d02394e54c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1185.asset b/Assets/04_Tiles/Floor/TileSet_1185.asset new file mode 100644 index 0000000..c1d2579 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1185.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3cd9492e625e2e1280bc97d71287a158a9b4df49e28fe52adfcde52ee37b05 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1185.asset.meta b/Assets/04_Tiles/Floor/TileSet_1185.asset.meta new file mode 100644 index 0000000..819df8e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1185.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 829ad16d33802834e9ff9105a4a30975 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1186.asset b/Assets/04_Tiles/Floor/TileSet_1186.asset new file mode 100644 index 0000000..5178452 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1186.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c5b1cfa5aa5d3d6837abbd807ca34271d6ad8537c7f8113f1f727389cd3a1b5 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1186.asset.meta b/Assets/04_Tiles/Floor/TileSet_1186.asset.meta new file mode 100644 index 0000000..bd043ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1186.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe474835015bff848ad6c418d0403ba6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1187.asset b/Assets/04_Tiles/Floor/TileSet_1187.asset new file mode 100644 index 0000000..b7c63cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1187.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0782e78d3b57518bcf580eb7e4aedb0410dd213b5627aa14b1d81f18da5ac834 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1187.asset.meta b/Assets/04_Tiles/Floor/TileSet_1187.asset.meta new file mode 100644 index 0000000..63776ca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1187.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08ab3409eba4dab48b108fbf43ca4c0f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1188.asset b/Assets/04_Tiles/Floor/TileSet_1188.asset new file mode 100644 index 0000000..2db5434 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1188.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327f268a30ec15d73ee36e5edbf9b18c07e995ec61b599c3fef7b10c4706a483 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1188.asset.meta b/Assets/04_Tiles/Floor/TileSet_1188.asset.meta new file mode 100644 index 0000000..0512eba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1188.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ad7797308526ab44874ce99daceb9e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1189.asset b/Assets/04_Tiles/Floor/TileSet_1189.asset new file mode 100644 index 0000000..07b0c30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1189.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437d60b6406ecddccfcf889d744452da6ffa70f681bff5192ebbeaec9dcf6dc6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1189.asset.meta b/Assets/04_Tiles/Floor/TileSet_1189.asset.meta new file mode 100644 index 0000000..3530cb6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1189.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 924822cf5180297488239e57539a46dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_119.asset b/Assets/04_Tiles/Floor/TileSet_119.asset new file mode 100644 index 0000000..1dbeb80 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_119.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a64ea11897a647a191cbfc503c90a88c813eda68f5436e488b5d098d9f336481 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_119.asset.meta b/Assets/04_Tiles/Floor/TileSet_119.asset.meta new file mode 100644 index 0000000..e6ea407 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_119.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 755d1d2f1ce6a4e4a8eefee24e3d52d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1190.asset b/Assets/04_Tiles/Floor/TileSet_1190.asset new file mode 100644 index 0000000..0119310 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1190.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2bf3768d85dccdccc3ca2d66defceba8f0157a755c3f9e3965c569d27c2f193 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_1190.asset.meta b/Assets/04_Tiles/Floor/TileSet_1190.asset.meta new file mode 100644 index 0000000..75aed2c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1190.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8535ca7e7d57c9e478e9dde54bf3d502 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1191.asset b/Assets/04_Tiles/Floor/TileSet_1191.asset new file mode 100644 index 0000000..1785862 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1191.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cea5439378175a9eab524c6d5810c82e694d3db456e3f9ed4bd967b765f4ef0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1191.asset.meta b/Assets/04_Tiles/Floor/TileSet_1191.asset.meta new file mode 100644 index 0000000..309b388 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1191.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f3aa8f65ce24414ab393e625837ea0b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1192.asset b/Assets/04_Tiles/Floor/TileSet_1192.asset new file mode 100644 index 0000000..3f0ff1b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1192.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5f51d4570981c090104577493381905d5911522c9511b67c5045b01bba0587 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1192.asset.meta b/Assets/04_Tiles/Floor/TileSet_1192.asset.meta new file mode 100644 index 0000000..2624a48 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1192.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a7d4affa80f00c44ea6b554d2015b780 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1193.asset b/Assets/04_Tiles/Floor/TileSet_1193.asset new file mode 100644 index 0000000..cbb963f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1193.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a77bf0916273a4c080bc7a97b56cac9e7cd323ab2defa53c8d115772f531c31 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1193.asset.meta b/Assets/04_Tiles/Floor/TileSet_1193.asset.meta new file mode 100644 index 0000000..da853e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1193.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6f935b36ed4fb043bab80f2a4955f3b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1194.asset b/Assets/04_Tiles/Floor/TileSet_1194.asset new file mode 100644 index 0000000..2237425 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1194.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5091bd3ad94a600ac0c87d1190199794bb1d667c7ad62606cfdb3f29daa0f157 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1194.asset.meta b/Assets/04_Tiles/Floor/TileSet_1194.asset.meta new file mode 100644 index 0000000..3d90260 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1194.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1be96f279e91a8d4e8c5eb4260765987 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1195.asset b/Assets/04_Tiles/Floor/TileSet_1195.asset new file mode 100644 index 0000000..8081b7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1195.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce61b1991b180cef697b62796d1fc1259dbc881728f94249c5aaf537cc046d87 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1195.asset.meta b/Assets/04_Tiles/Floor/TileSet_1195.asset.meta new file mode 100644 index 0000000..ad31c01 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1195.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8037e655ff3683e42ac24cf9b8965211 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1196.asset b/Assets/04_Tiles/Floor/TileSet_1196.asset new file mode 100644 index 0000000..230ea30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1196.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3eac6b4a3adcddc72585395bb8ed6077c81c00fdd98eff73b69fe8c6dd3ada2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1196.asset.meta b/Assets/04_Tiles/Floor/TileSet_1196.asset.meta new file mode 100644 index 0000000..af7240f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1196.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c696b03d68b8a549abae4b45b8ae85f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1197.asset b/Assets/04_Tiles/Floor/TileSet_1197.asset new file mode 100644 index 0000000..a06000e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1197.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b6d58b2a5353ce80b8e99678df3cd78169556ed82a957e5f27d5ceaf6ecfa5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1197.asset.meta b/Assets/04_Tiles/Floor/TileSet_1197.asset.meta new file mode 100644 index 0000000..af885df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1197.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 959c36177717e1948a5f425f28efaced +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1198.asset b/Assets/04_Tiles/Floor/TileSet_1198.asset new file mode 100644 index 0000000..1bf5d66 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1198.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba2b0efefecf5e35a0664e493d6601db7f61b53fe3710464bb2e0f795c2585d +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_1198.asset.meta b/Assets/04_Tiles/Floor/TileSet_1198.asset.meta new file mode 100644 index 0000000..5f1e2ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1198.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4ceaa547ccb5e5498578ac3d67811a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1199.asset b/Assets/04_Tiles/Floor/TileSet_1199.asset new file mode 100644 index 0000000..40ff5c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1199.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94eb689d50e962f7420032d3edb6e0a441af167e2817145e0832c91d5b8a9302 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1199.asset.meta b/Assets/04_Tiles/Floor/TileSet_1199.asset.meta new file mode 100644 index 0000000..46b7d35 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1199.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a7e86942e9498242a254af39637291c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_12.asset b/Assets/04_Tiles/Floor/TileSet_12.asset new file mode 100644 index 0000000..a178e54 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_12.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eada9131973fb22bcb579e5c995a592beef3305b48f0615bd5d0dc3104a6528c +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_12.asset.meta b/Assets/04_Tiles/Floor/TileSet_12.asset.meta new file mode 100644 index 0000000..975b429 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_12.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25f5b68c17c722a4dbd7bdf0cbcaeff1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_120.asset b/Assets/04_Tiles/Floor/TileSet_120.asset new file mode 100644 index 0000000..590daaa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_120.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80d84bfc6412a809fc7f01126989b50465feba843b4c77ea933f02e7896b4cda +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_120.asset.meta b/Assets/04_Tiles/Floor/TileSet_120.asset.meta new file mode 100644 index 0000000..7b41b45 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_120.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd60e18403651a445a0d5582bdf539a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1200.asset b/Assets/04_Tiles/Floor/TileSet_1200.asset new file mode 100644 index 0000000..1821594 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1200.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e1216faa51b8948c31cc492fd8fdfbaca6f4dc1cb1bbb9ca63369921126c54b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1200.asset.meta b/Assets/04_Tiles/Floor/TileSet_1200.asset.meta new file mode 100644 index 0000000..6677dfe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1200.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f57604b776ba1c43834f191b07c8bd2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1201.asset b/Assets/04_Tiles/Floor/TileSet_1201.asset new file mode 100644 index 0000000..f280bca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1201.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2a034a110a4b4e5022d2c9ec025bc6879344f2da50a14c551ce8d4c85e3304c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1201.asset.meta b/Assets/04_Tiles/Floor/TileSet_1201.asset.meta new file mode 100644 index 0000000..639cd97 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1201.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c2a4f577a6e3e24693afa4768fce78f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1202.asset b/Assets/04_Tiles/Floor/TileSet_1202.asset new file mode 100644 index 0000000..f2cd206 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1202.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f7947f7dbe494315c303c11c4d649559cd5b1f138116b5f2fe199c5858772de +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1202.asset.meta b/Assets/04_Tiles/Floor/TileSet_1202.asset.meta new file mode 100644 index 0000000..5c59616 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1202.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d47b6ec42ca5ba4439a3e41fa9f22095 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1203.asset b/Assets/04_Tiles/Floor/TileSet_1203.asset new file mode 100644 index 0000000..143c8db --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1203.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b497f3446020e2d090ba71d80c18d950f3e42017b7a29da210cd50cd2ca59dd +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1203.asset.meta b/Assets/04_Tiles/Floor/TileSet_1203.asset.meta new file mode 100644 index 0000000..2ec2fa5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1203.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13728a4a960e7cd429dcd855ed76ee54 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1204.asset b/Assets/04_Tiles/Floor/TileSet_1204.asset new file mode 100644 index 0000000..3170e56 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1204.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bb4b0f8886f697ae45b8ab3d23a1e6c2d421d978c2f76f54b56f4c57bb778e3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1204.asset.meta b/Assets/04_Tiles/Floor/TileSet_1204.asset.meta new file mode 100644 index 0000000..8c86992 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1204.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1c3743804d9028448080a9601a0a6ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1205.asset b/Assets/04_Tiles/Floor/TileSet_1205.asset new file mode 100644 index 0000000..8a9281f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1205.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41600684782f50113778ef37a9be1502d3309ab819d588b9f77b2ca658bfea48 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1205.asset.meta b/Assets/04_Tiles/Floor/TileSet_1205.asset.meta new file mode 100644 index 0000000..555ae60 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1205.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 548751547935edf4985eb62d36b579d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1206.asset b/Assets/04_Tiles/Floor/TileSet_1206.asset new file mode 100644 index 0000000..318b57e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1206.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74048df5ff6bb7a6d4f32800bc508f5f8b216c11ebce18e74cfa07a114abab55 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1206.asset.meta b/Assets/04_Tiles/Floor/TileSet_1206.asset.meta new file mode 100644 index 0000000..cd78d1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1206.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a908fda9453e6742a67d0882d0d57ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1207.asset b/Assets/04_Tiles/Floor/TileSet_1207.asset new file mode 100644 index 0000000..fc71fed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1207.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4a624ebab0a56318d8fd46f3a3d5e37c029d25f9ee22ef6ca3726b4cb34eb7b +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1207.asset.meta b/Assets/04_Tiles/Floor/TileSet_1207.asset.meta new file mode 100644 index 0000000..42b63ab --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1207.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fbe6671512bc6f42a9f4e7800e5b22b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1208.asset b/Assets/04_Tiles/Floor/TileSet_1208.asset new file mode 100644 index 0000000..9bc7fe2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1208.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb5fdbdc89973429f084e5ec09a3e93201e435eff06ae38cf6dd2174f3321ca +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1208.asset.meta b/Assets/04_Tiles/Floor/TileSet_1208.asset.meta new file mode 100644 index 0000000..bc160c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1208.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6e83e2388315404d8b46c72595f39ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1209.asset b/Assets/04_Tiles/Floor/TileSet_1209.asset new file mode 100644 index 0000000..28c426d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1209.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e3f587e38d115b526e92624b7e4d58e94fcb9cc09ac9ce6565af7d180e664c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1209.asset.meta b/Assets/04_Tiles/Floor/TileSet_1209.asset.meta new file mode 100644 index 0000000..c6f1a55 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1209.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0879a563dc996294eb59c66c309c2b74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_121.asset b/Assets/04_Tiles/Floor/TileSet_121.asset new file mode 100644 index 0000000..8d979e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_121.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2bdaeb9f5eb4fe1a15606d8d0ac4ac75f821e15dc262d293c050b79c082c61 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_121.asset.meta b/Assets/04_Tiles/Floor/TileSet_121.asset.meta new file mode 100644 index 0000000..6b236a1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_121.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71ef1263248e7f64ba572cbfe4b62d25 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1210.asset b/Assets/04_Tiles/Floor/TileSet_1210.asset new file mode 100644 index 0000000..dbf1566 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1210.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a74fac40cd381cb0870af1ba4f96e2eae0b0e97088579d57c02b8ba3c3a0edcd +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1210.asset.meta b/Assets/04_Tiles/Floor/TileSet_1210.asset.meta new file mode 100644 index 0000000..a6a0564 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1210.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 456a919f2d58ae249a4f3f5c98c8502a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1211.asset b/Assets/04_Tiles/Floor/TileSet_1211.asset new file mode 100644 index 0000000..b76e3ac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1211.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca33c732cb5ab0fed37c22ebac9437fc441f421df676aa033f005b0319c7ba37 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1211.asset.meta b/Assets/04_Tiles/Floor/TileSet_1211.asset.meta new file mode 100644 index 0000000..4982e8d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1211.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a9ac30332a9c2b1499a65a42a00a3ac5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1212.asset b/Assets/04_Tiles/Floor/TileSet_1212.asset new file mode 100644 index 0000000..f8e4e98 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1212.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a4e16c4b2d3d68135559999698e13b7b3c6cb554ddc3e43cdfa0ed87953696 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1212.asset.meta b/Assets/04_Tiles/Floor/TileSet_1212.asset.meta new file mode 100644 index 0000000..9a8ae59 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1212.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f91c7338a0b84149b4cd9d8716d045f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1213.asset b/Assets/04_Tiles/Floor/TileSet_1213.asset new file mode 100644 index 0000000..c1efcf4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1213.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad1f24c277b0dbd790fb05a39f14797ffa00b9bd4a0a0cab8bef6f6ed269e084 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1213.asset.meta b/Assets/04_Tiles/Floor/TileSet_1213.asset.meta new file mode 100644 index 0000000..66c9cbd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1213.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 688c5d0b0209453488ebb3c6983dddca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1214.asset b/Assets/04_Tiles/Floor/TileSet_1214.asset new file mode 100644 index 0000000..8bbc798 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1214.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f23c4bf33c7b385aea8c6862f41a0551f8fc08bfb39a5c1e5003447f0986d47f +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1214.asset.meta b/Assets/04_Tiles/Floor/TileSet_1214.asset.meta new file mode 100644 index 0000000..d799933 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1214.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15193912743705d469909537993f5686 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1215.asset b/Assets/04_Tiles/Floor/TileSet_1215.asset new file mode 100644 index 0000000..d6b882e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1215.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6712b9485263df675eccae0d825478775727d4c53a137138187273d73eff965e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1215.asset.meta b/Assets/04_Tiles/Floor/TileSet_1215.asset.meta new file mode 100644 index 0000000..1d08a61 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1215.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2f0fd12846ebbb43a9eff26cc695394 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1216.asset b/Assets/04_Tiles/Floor/TileSet_1216.asset new file mode 100644 index 0000000..21a7686 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1216.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37ce44eae1f2f67fe02aad2ca11b34b93802cb3ad1a4d99b76741a0e18911a16 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1216.asset.meta b/Assets/04_Tiles/Floor/TileSet_1216.asset.meta new file mode 100644 index 0000000..ad88680 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1216.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f750b0f0ddb981b459090868180d15f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1217.asset b/Assets/04_Tiles/Floor/TileSet_1217.asset new file mode 100644 index 0000000..19bd35d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1217.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:935f15219a4da6f867dad358b5ff1e10d1315101f9a5e50327cf7fda7af1de38 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1217.asset.meta b/Assets/04_Tiles/Floor/TileSet_1217.asset.meta new file mode 100644 index 0000000..ca9a464 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1217.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 558ecb25434b7db46b2d99db54ca993d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1218.asset b/Assets/04_Tiles/Floor/TileSet_1218.asset new file mode 100644 index 0000000..13afd71 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1218.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e22b653049a91df9aaa41e1710b96d964569c59bd764a8eae4096d12775bdc6c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1218.asset.meta b/Assets/04_Tiles/Floor/TileSet_1218.asset.meta new file mode 100644 index 0000000..aaef5ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1218.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d09aeb76caf98df49bcd022ee720efec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1219.asset b/Assets/04_Tiles/Floor/TileSet_1219.asset new file mode 100644 index 0000000..8b4f8bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1219.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bf15cd5c869d6760d48629d98c4f2d2027869ad1097404f675fa9696a3e9943 +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1219.asset.meta b/Assets/04_Tiles/Floor/TileSet_1219.asset.meta new file mode 100644 index 0000000..86d443d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1219.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63b1f1016cb07f94fbe2ba510b7fc10f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_122.asset b/Assets/04_Tiles/Floor/TileSet_122.asset new file mode 100644 index 0000000..b52136d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_122.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ba9ebafc32b090dbcb769000dfb119a96dc115dc7ebc2002a4635891f4d6494 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_122.asset.meta b/Assets/04_Tiles/Floor/TileSet_122.asset.meta new file mode 100644 index 0000000..44bd1a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_122.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1939958eb586f1948bb591d498131671 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1220.asset b/Assets/04_Tiles/Floor/TileSet_1220.asset new file mode 100644 index 0000000..0c73408 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1220.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cabe0b932bd34db2eeb8861f7c767cdcb59a80d1be70f6540e445d435d75482 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1220.asset.meta b/Assets/04_Tiles/Floor/TileSet_1220.asset.meta new file mode 100644 index 0000000..1ca556b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1220.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5013a9d220e717c49bca4a5bf9ee6db4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1221.asset b/Assets/04_Tiles/Floor/TileSet_1221.asset new file mode 100644 index 0000000..6eb6a55 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1221.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cff2b0edb9631449beb990bc1be7ec60d0251847b8a41a8fbfe4fda115b3497e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1221.asset.meta b/Assets/04_Tiles/Floor/TileSet_1221.asset.meta new file mode 100644 index 0000000..b1b224f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1221.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c1eb98ca9986104fb23b36f80b4280b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1222.asset b/Assets/04_Tiles/Floor/TileSet_1222.asset new file mode 100644 index 0000000..0e6a886 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1222.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fc645109c7bbeff4e9c394adf8725c4d74771b8bea076ca194986f0b678d28 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1222.asset.meta b/Assets/04_Tiles/Floor/TileSet_1222.asset.meta new file mode 100644 index 0000000..918e093 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1222.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9528c12ef2fe2674cb47df83b1824d28 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1223.asset b/Assets/04_Tiles/Floor/TileSet_1223.asset new file mode 100644 index 0000000..b0c85c9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1223.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75483584898aded6e6f32206efe6f2fe60231db238d1a877fcb203f965216f6f +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1223.asset.meta b/Assets/04_Tiles/Floor/TileSet_1223.asset.meta new file mode 100644 index 0000000..d0cb134 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1223.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8380e0ca190356c49b50b75a4458dded +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1224.asset b/Assets/04_Tiles/Floor/TileSet_1224.asset new file mode 100644 index 0000000..bc6d219 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1224.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a2df0c8759badc8532a9baf67d7a5d71a431fb2d002f1295507f594b6c5701c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1224.asset.meta b/Assets/04_Tiles/Floor/TileSet_1224.asset.meta new file mode 100644 index 0000000..0cd1329 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1224.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14648402f13ac474a834430c4f163016 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1225.asset b/Assets/04_Tiles/Floor/TileSet_1225.asset new file mode 100644 index 0000000..425d2df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1225.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81c4a9e23dc2dc34486346d446da7df80c1060aaeb889a8fe9a2e75d5361820 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1225.asset.meta b/Assets/04_Tiles/Floor/TileSet_1225.asset.meta new file mode 100644 index 0000000..7418956 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1225.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb56156822dfebf4280a3b5639c5f546 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1226.asset b/Assets/04_Tiles/Floor/TileSet_1226.asset new file mode 100644 index 0000000..39d7b1e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1226.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2149b849e28e2e0b056b2b3b39d9c99d966091b96c18278d62dbf6fbae0d18c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1226.asset.meta b/Assets/04_Tiles/Floor/TileSet_1226.asset.meta new file mode 100644 index 0000000..9aaa7cc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1226.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e01ee192db49f043b57243f858eb0e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1227.asset b/Assets/04_Tiles/Floor/TileSet_1227.asset new file mode 100644 index 0000000..f540f78 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1227.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0281ce468025d1483ddc3948fb14a0281781e4bcd5df6cdfc876351c3989564c +size 820 diff --git a/Assets/04_Tiles/Floor/TileSet_1227.asset.meta b/Assets/04_Tiles/Floor/TileSet_1227.asset.meta new file mode 100644 index 0000000..6226982 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1227.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 397336442691f4d4dbce4eb9ce0981a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1228.asset b/Assets/04_Tiles/Floor/TileSet_1228.asset new file mode 100644 index 0000000..1c4a718 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1228.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f57cf0c8a6a9624acc3af1bc9358b0f3e565f68026db5d958568b245135eb366 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1228.asset.meta b/Assets/04_Tiles/Floor/TileSet_1228.asset.meta new file mode 100644 index 0000000..e6df915 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1228.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b89b6cad9f1a74b4e90fdb524b750071 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1229.asset b/Assets/04_Tiles/Floor/TileSet_1229.asset new file mode 100644 index 0000000..d4d2d2a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1229.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac69ce726cce0cea53be02a7e935c3c7bb2bb42cd0e4f71ee2e265e30bfbd05a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1229.asset.meta b/Assets/04_Tiles/Floor/TileSet_1229.asset.meta new file mode 100644 index 0000000..e4a3007 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1229.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5367ca30010e972419e76c92f364b3c6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_123.asset b/Assets/04_Tiles/Floor/TileSet_123.asset new file mode 100644 index 0000000..ef2e5eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_123.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dade84963cd0789bd09d43adc96bb724e1a24c942f71e2415ba6f53041e44b46 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_123.asset.meta b/Assets/04_Tiles/Floor/TileSet_123.asset.meta new file mode 100644 index 0000000..f76b31f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_123.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84e2c186497d7974b944a458c3358c61 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1230.asset b/Assets/04_Tiles/Floor/TileSet_1230.asset new file mode 100644 index 0000000..5fa3abf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1230.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd1250e987023e006ab1dc8d440600f5906f4a4e805834be73f99c8502a22896 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1230.asset.meta b/Assets/04_Tiles/Floor/TileSet_1230.asset.meta new file mode 100644 index 0000000..f85479a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1230.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49e29dc3ff3aea643b5532b0ebed767e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1231.asset b/Assets/04_Tiles/Floor/TileSet_1231.asset new file mode 100644 index 0000000..7163650 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1231.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0325a30e1a55ca743f2ac697e235d9d5907a1a3d9284d5ca79e6db95d027e3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_1231.asset.meta b/Assets/04_Tiles/Floor/TileSet_1231.asset.meta new file mode 100644 index 0000000..cb7af6a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1231.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a8205217c06a064b8b91f7a7b6d413e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_1232.asset b/Assets/04_Tiles/Floor/TileSet_1232.asset new file mode 100644 index 0000000..b52500d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1232.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72d0c0375706adad648b2a67f221a1ebd6bd7affd063742dfdc5bdcacc2b853b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_1232.asset.meta b/Assets/04_Tiles/Floor/TileSet_1232.asset.meta new file mode 100644 index 0000000..c675a12 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_1232.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbe956bcbd7979f4c8374e11ce811fc7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_124.asset b/Assets/04_Tiles/Floor/TileSet_124.asset new file mode 100644 index 0000000..414fd56 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_124.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec665e933e60c50dc7eac4d59b63448bac0971d9bdde6a293cefa12f893291c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_124.asset.meta b/Assets/04_Tiles/Floor/TileSet_124.asset.meta new file mode 100644 index 0000000..1d5a28a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_124.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f18bc8cba5994d4983fe27614a437a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_125.asset b/Assets/04_Tiles/Floor/TileSet_125.asset new file mode 100644 index 0000000..e42dc17 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_125.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a217feadeedc1cda7a5e5f42a0cf2c10d043ee2a07f3f4bc0dc5281dcb73ad6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_125.asset.meta b/Assets/04_Tiles/Floor/TileSet_125.asset.meta new file mode 100644 index 0000000..31ed5ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_125.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f4b959772ba446498cd7f4f68b845a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_126.asset b/Assets/04_Tiles/Floor/TileSet_126.asset new file mode 100644 index 0000000..6f098fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_126.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:460900dc59f046638fb0bdaa840a75016d6a461ec0ecec1e415d44b898f23f1b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_126.asset.meta b/Assets/04_Tiles/Floor/TileSet_126.asset.meta new file mode 100644 index 0000000..fe2a8c3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_126.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 242751c4c9621ea498303efce9c905fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_127.asset b/Assets/04_Tiles/Floor/TileSet_127.asset new file mode 100644 index 0000000..f3558e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_127.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d010ef32e821e10a1ff05ee1cc7c81678fc7644919e18155c86ca1d91c18276 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_127.asset.meta b/Assets/04_Tiles/Floor/TileSet_127.asset.meta new file mode 100644 index 0000000..f689c85 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_127.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19ed6821af6e3f24e8239c15d4d85640 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_128.asset b/Assets/04_Tiles/Floor/TileSet_128.asset new file mode 100644 index 0000000..c3a56b3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_128.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:646d38e379f3b5e33de5614c20a925f7c05bbe9c20bab391e980f01f51e17880 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_128.asset.meta b/Assets/04_Tiles/Floor/TileSet_128.asset.meta new file mode 100644 index 0000000..3ecc9f5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_128.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b4a3980247d60a408bc4acd9dc99a70 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_129.asset b/Assets/04_Tiles/Floor/TileSet_129.asset new file mode 100644 index 0000000..b5c70a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_129.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6733bd857b949ef2c0b0e5927fd10419f5f1377108320aa1069039bb9ae2deca +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_129.asset.meta b/Assets/04_Tiles/Floor/TileSet_129.asset.meta new file mode 100644 index 0000000..fb1f839 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_129.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1830646b1cf971642aeff533e829efb5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_13.asset b/Assets/04_Tiles/Floor/TileSet_13.asset new file mode 100644 index 0000000..c9e1748 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_13.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1998f71af77d7459415d364176e171029c09a377b52de1ce6cf68c1b65b54f7 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_13.asset.meta b/Assets/04_Tiles/Floor/TileSet_13.asset.meta new file mode 100644 index 0000000..066ad8c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_13.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 717b9928572fc374faf7dc4daed2fbb5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_130.asset b/Assets/04_Tiles/Floor/TileSet_130.asset new file mode 100644 index 0000000..df4c391 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_130.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0ebf79fe640b50f5e0753446629e9f4678f50622d4605dcbd7c2435ad8724d6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_130.asset.meta b/Assets/04_Tiles/Floor/TileSet_130.asset.meta new file mode 100644 index 0000000..df0c8fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_130.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: deecbc01905a13443a9d76f6bd495800 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_131.asset b/Assets/04_Tiles/Floor/TileSet_131.asset new file mode 100644 index 0000000..554b350 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_131.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d3a89f3769ef17bb967ecff583304fbdeb34b2c4b171b274b4b4db62e9e1547 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_131.asset.meta b/Assets/04_Tiles/Floor/TileSet_131.asset.meta new file mode 100644 index 0000000..0408bb7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_131.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 736d144c6e3587b419d6ea50b11e29be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_132.asset b/Assets/04_Tiles/Floor/TileSet_132.asset new file mode 100644 index 0000000..d4e30ed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_132.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93de3dd9729c909fdbee573243143471382d9c9d1e9f10c5c28a80d2ebe7950f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_132.asset.meta b/Assets/04_Tiles/Floor/TileSet_132.asset.meta new file mode 100644 index 0000000..ca8cfb3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_132.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 94684f7b2e2f72648b1b9334ebc1f840 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_133.asset b/Assets/04_Tiles/Floor/TileSet_133.asset new file mode 100644 index 0000000..8e387b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_133.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da6613d80565a72c68bda9583ac6d9fc5e6352d12de155a0358d9d55e96541bf +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_133.asset.meta b/Assets/04_Tiles/Floor/TileSet_133.asset.meta new file mode 100644 index 0000000..960f9c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_133.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ae5d4932d5ca3749b5b6609183ee641 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_134.asset b/Assets/04_Tiles/Floor/TileSet_134.asset new file mode 100644 index 0000000..8181fa7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_134.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b12bfcde413b9f8149db864b50a984893f56f1aceaae53024294a565200544e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_134.asset.meta b/Assets/04_Tiles/Floor/TileSet_134.asset.meta new file mode 100644 index 0000000..b56e04e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_134.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 97a7313598ee5a64baca162c615c599f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_135.asset b/Assets/04_Tiles/Floor/TileSet_135.asset new file mode 100644 index 0000000..12f75f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_135.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60306958c051dbfedf5a106600437246cda5d1853665e03fc0c4ae7684956eac +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_135.asset.meta b/Assets/04_Tiles/Floor/TileSet_135.asset.meta new file mode 100644 index 0000000..5fae65c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_135.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 540e5677dec231a4eae4cccba93fc502 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_136.asset b/Assets/04_Tiles/Floor/TileSet_136.asset new file mode 100644 index 0000000..324ca24 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_136.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:392c27baee5c89926671aeb5c175e119f751c850afcc9841ab0dd02798656bc0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_136.asset.meta b/Assets/04_Tiles/Floor/TileSet_136.asset.meta new file mode 100644 index 0000000..fcdac89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_136.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2803e072e632eb943bb57942816d457d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_137.asset b/Assets/04_Tiles/Floor/TileSet_137.asset new file mode 100644 index 0000000..c5a31c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_137.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b68ef9ebf4e7ca2274058f96756a8eb58139d822a12b48165565a6a9f26a868 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_137.asset.meta b/Assets/04_Tiles/Floor/TileSet_137.asset.meta new file mode 100644 index 0000000..2d27684 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_137.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aedcce28a96837c48a8dd9599e7b7678 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_138.asset b/Assets/04_Tiles/Floor/TileSet_138.asset new file mode 100644 index 0000000..4107c59 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_138.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e46e41c1b9e82f6c2cd2044a8e135a6a4c71a495fcf15961b55727929095ab11 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_138.asset.meta b/Assets/04_Tiles/Floor/TileSet_138.asset.meta new file mode 100644 index 0000000..2c6d527 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_138.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a6104a75db58e944ae11b5b179ca29c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_139.asset b/Assets/04_Tiles/Floor/TileSet_139.asset new file mode 100644 index 0000000..eb26afc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_139.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5aea3909afa67de991904227a1f9230ee9bedba277889fd493d2393a3ba6d4cf +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_139.asset.meta b/Assets/04_Tiles/Floor/TileSet_139.asset.meta new file mode 100644 index 0000000..eb27466 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_139.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6055b24e596a9c748a8e1d31214fddc3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_14.asset b/Assets/04_Tiles/Floor/TileSet_14.asset new file mode 100644 index 0000000..597114d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_14.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68f661d8716205ac5f59c37eb46f2179d3f39242f2f4caa83cc0179fb670ee13 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_14.asset.meta b/Assets/04_Tiles/Floor/TileSet_14.asset.meta new file mode 100644 index 0000000..dcb96ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_14.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a8a562e4dccb03478adec83a8255de8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_140.asset b/Assets/04_Tiles/Floor/TileSet_140.asset new file mode 100644 index 0000000..c3d79f1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_140.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbda7cfd9111e34a9ac734d6287e792e68efd98f254cc67e783e975190a9ba99 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_140.asset.meta b/Assets/04_Tiles/Floor/TileSet_140.asset.meta new file mode 100644 index 0000000..1b545b1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_140.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4dae6f5d615997342bdb82c77edaefbc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_141.asset b/Assets/04_Tiles/Floor/TileSet_141.asset new file mode 100644 index 0000000..74cc394 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_141.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0323f1fbebaf9545142f5c52975bb225881f708e545bf2b5d2a8f9b537d29db +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_141.asset.meta b/Assets/04_Tiles/Floor/TileSet_141.asset.meta new file mode 100644 index 0000000..3190785 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_141.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 826402f9fe00f9d4a8b3f12a9256ef90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_142.asset b/Assets/04_Tiles/Floor/TileSet_142.asset new file mode 100644 index 0000000..f45ec1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_142.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dbbb08b036351ab3734f49e0f48bde9379fa3de6d5d717e51dd6a5699dff9e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_142.asset.meta b/Assets/04_Tiles/Floor/TileSet_142.asset.meta new file mode 100644 index 0000000..9d21b43 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_142.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 42d34fe6a7153b242bd4f7afe6c49b48 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_143.asset b/Assets/04_Tiles/Floor/TileSet_143.asset new file mode 100644 index 0000000..599ea95 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_143.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3445486ef10a6d0330cff0605981d92c6aa81b5052214f3e3b19d0921bf3193f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_143.asset.meta b/Assets/04_Tiles/Floor/TileSet_143.asset.meta new file mode 100644 index 0000000..40f092e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_143.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 327e25c266361734aaa9518b9cff47f8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_144.asset b/Assets/04_Tiles/Floor/TileSet_144.asset new file mode 100644 index 0000000..c12575d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_144.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc47bf3a8b8bc41cc40374dedae02a2f9ae3276601755f0dce95c918c66fbe5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_144.asset.meta b/Assets/04_Tiles/Floor/TileSet_144.asset.meta new file mode 100644 index 0000000..3bb2b29 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_144.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0eb55656da436dc4dbd7167343600abc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_145.asset b/Assets/04_Tiles/Floor/TileSet_145.asset new file mode 100644 index 0000000..582df44 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_145.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be851cd31af3be6d83f83f73d00369c1b17419e4af3c45f532c50a243d0808b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_145.asset.meta b/Assets/04_Tiles/Floor/TileSet_145.asset.meta new file mode 100644 index 0000000..19e6248 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_145.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d151601a3d16e8b4a817a986a623dd5f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_146.asset b/Assets/04_Tiles/Floor/TileSet_146.asset new file mode 100644 index 0000000..b5be2ee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_146.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:549a1e75b71eaf833739afa61e05569a6b9989f9457b9d236a2fb8f7a689458f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_146.asset.meta b/Assets/04_Tiles/Floor/TileSet_146.asset.meta new file mode 100644 index 0000000..896e70f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_146.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9cb8277849732544a6c3e6311205bea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_147.asset b/Assets/04_Tiles/Floor/TileSet_147.asset new file mode 100644 index 0000000..7502d0b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_147.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:005fd3c63843bcae13d2d44fc8f6c5f2ffcdbf28d3da6376f7e2ad526e1b5dfc +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_147.asset.meta b/Assets/04_Tiles/Floor/TileSet_147.asset.meta new file mode 100644 index 0000000..5cc9c4e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_147.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d08968f4536d4d4aa3da6e314ddebad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_148.asset b/Assets/04_Tiles/Floor/TileSet_148.asset new file mode 100644 index 0000000..5bbc39a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_148.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5ffd1411f2f75e47081bbb5fead896243b456b05889ea34f9dc588c8f6a84ee +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_148.asset.meta b/Assets/04_Tiles/Floor/TileSet_148.asset.meta new file mode 100644 index 0000000..30c4407 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_148.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e883d7d2ab2ae044b2cbda3389b71e9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_149.asset b/Assets/04_Tiles/Floor/TileSet_149.asset new file mode 100644 index 0000000..a96ac68 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_149.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2558fe1a8eb09bb0c090231a6f72d911a120c2a0bca9fb4443418bf2bb051dcf +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_149.asset.meta b/Assets/04_Tiles/Floor/TileSet_149.asset.meta new file mode 100644 index 0000000..1e8cb8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_149.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f1726096795d2324fbcdf9f6b61438d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_15.asset b/Assets/04_Tiles/Floor/TileSet_15.asset new file mode 100644 index 0000000..0b39dde --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_15.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bce54608192da8e133d6897dd88712bd159654f803b95505524b7b4b40a18ae +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_15.asset.meta b/Assets/04_Tiles/Floor/TileSet_15.asset.meta new file mode 100644 index 0000000..be1169d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_15.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d86dd8ea6e7d4694fa05a158a7ff6798 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_150.asset b/Assets/04_Tiles/Floor/TileSet_150.asset new file mode 100644 index 0000000..8502ef7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_150.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d65d7c81827fc3f17ef05c8bea4de395baa971b994561c7cfb2caf851603530 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_150.asset.meta b/Assets/04_Tiles/Floor/TileSet_150.asset.meta new file mode 100644 index 0000000..bcde96e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_150.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99d6728117331884ea10d568e5508cef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_151.asset b/Assets/04_Tiles/Floor/TileSet_151.asset new file mode 100644 index 0000000..f86f0c9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_151.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0dfaaafd7f19c8dbe39b0441d1374df115ec3dc2be233ce158acee6580572a +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_151.asset.meta b/Assets/04_Tiles/Floor/TileSet_151.asset.meta new file mode 100644 index 0000000..10b85e0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_151.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58fd0631ca0ffda4d9ea665c71103276 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_152.asset b/Assets/04_Tiles/Floor/TileSet_152.asset new file mode 100644 index 0000000..eca1331 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_152.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c940b063101333df7c6272a6ac79b2f5832e4be5933d15ea37224c6e73290603 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_152.asset.meta b/Assets/04_Tiles/Floor/TileSet_152.asset.meta new file mode 100644 index 0000000..9fe1e00 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_152.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d61489c40ca44ed4ea97479d193b3cb9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_153.asset b/Assets/04_Tiles/Floor/TileSet_153.asset new file mode 100644 index 0000000..3178a8a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_153.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a084dab43318a463adceb86174411721325e7581d8d1e15fe0d2ced7117ddfa4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_153.asset.meta b/Assets/04_Tiles/Floor/TileSet_153.asset.meta new file mode 100644 index 0000000..77c732d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_153.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9dbd42c16929d5e48b405ded01b6d8dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_154.asset b/Assets/04_Tiles/Floor/TileSet_154.asset new file mode 100644 index 0000000..393239d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_154.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e3479d269180a044f22a99e490b9bc2e6efe2151f106915a1b4a14936e1d25e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_154.asset.meta b/Assets/04_Tiles/Floor/TileSet_154.asset.meta new file mode 100644 index 0000000..1097830 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_154.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 07f972be3ad5fdb4694b8df389e3c59f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_155.asset b/Assets/04_Tiles/Floor/TileSet_155.asset new file mode 100644 index 0000000..b8986ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_155.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3a7b92ce529585a38b5928fa3827fd59aae460cfe41fb5515ebdb62d744704 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_155.asset.meta b/Assets/04_Tiles/Floor/TileSet_155.asset.meta new file mode 100644 index 0000000..001d3e4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_155.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa103d491a584e446aa4a0912982e3dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_156.asset b/Assets/04_Tiles/Floor/TileSet_156.asset new file mode 100644 index 0000000..91a7991 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_156.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f36327b0166289fa925d1042aee383e24a6698cf817e4536de21bc94b86ee9b0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_156.asset.meta b/Assets/04_Tiles/Floor/TileSet_156.asset.meta new file mode 100644 index 0000000..ccbf514 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_156.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b22da9616affe5c4b905701185fc623b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_157.asset b/Assets/04_Tiles/Floor/TileSet_157.asset new file mode 100644 index 0000000..1d9b824 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_157.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72b8c750386a1c6e58578c95f9b04faa8e2e2107d7f605f7098b42ea2da5ce33 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_157.asset.meta b/Assets/04_Tiles/Floor/TileSet_157.asset.meta new file mode 100644 index 0000000..f512ef1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_157.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79c9ee9d64a2bc8408c5a8a433d7cdf7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_158.asset b/Assets/04_Tiles/Floor/TileSet_158.asset new file mode 100644 index 0000000..e103f17 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_158.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f708c80fa9b17f6f7d76276cc4c45b079bcd45bf5c0d8d4084ec748b0824f20e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_158.asset.meta b/Assets/04_Tiles/Floor/TileSet_158.asset.meta new file mode 100644 index 0000000..3e725e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_158.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff2e92e1b089ebc45afafcfdd4c07997 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_159.asset b/Assets/04_Tiles/Floor/TileSet_159.asset new file mode 100644 index 0000000..5cb831c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_159.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9ace828eaa100fc10a3b073d56e85c38cc3bb1428f11392d2e831241ed6deb7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_159.asset.meta b/Assets/04_Tiles/Floor/TileSet_159.asset.meta new file mode 100644 index 0000000..30e3557 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_159.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f49acbc03742fb4f8367c8e9e9bf044 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_16.asset b/Assets/04_Tiles/Floor/TileSet_16.asset new file mode 100644 index 0000000..730da94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_16.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bdabfae7d8c8d1c33d2b15c3c54f73d81285d1be4d8e6ecfe5a5de6a6d3c022 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_16.asset.meta b/Assets/04_Tiles/Floor/TileSet_16.asset.meta new file mode 100644 index 0000000..62b9f16 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_16.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d974bbc60015584b8c8217867504341 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_160.asset b/Assets/04_Tiles/Floor/TileSet_160.asset new file mode 100644 index 0000000..564e381 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_160.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69998f5c43a18740b6825138f4a372d62cccc17ad0a5bc2059d5c6a655edc8c5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_160.asset.meta b/Assets/04_Tiles/Floor/TileSet_160.asset.meta new file mode 100644 index 0000000..767a855 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_160.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1db4be8f2b8e35a478a0a5022e88e926 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_161.asset b/Assets/04_Tiles/Floor/TileSet_161.asset new file mode 100644 index 0000000..de60b37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_161.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0445a8a04adf9b337f2a4d6109f7ccb452c1e538923c0dfc14cf265800331ee +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_161.asset.meta b/Assets/04_Tiles/Floor/TileSet_161.asset.meta new file mode 100644 index 0000000..7018308 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_161.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70fd0f7242ea48442ae42516a3abfac0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_162.asset b/Assets/04_Tiles/Floor/TileSet_162.asset new file mode 100644 index 0000000..cbc5663 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_162.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab526271e2748da004deb0cf3ebdbbce41ea6864f1be2702306c27a074431d12 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_162.asset.meta b/Assets/04_Tiles/Floor/TileSet_162.asset.meta new file mode 100644 index 0000000..8c9b975 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_162.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d569c1b65afe784d968b9763ced3a49 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_163.asset b/Assets/04_Tiles/Floor/TileSet_163.asset new file mode 100644 index 0000000..06b76e4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_163.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b179d0cda331db0659176afec36d979fb5cdf8fa9304e547eec1b9846b0e80f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_163.asset.meta b/Assets/04_Tiles/Floor/TileSet_163.asset.meta new file mode 100644 index 0000000..5d2c314 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_163.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f1d0a7669b1ff641ab69838e4dab9bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_164.asset b/Assets/04_Tiles/Floor/TileSet_164.asset new file mode 100644 index 0000000..08dee30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_164.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cde84c8e8976ba67e520e98981f254d5f16aee87c1075e08a027a734e584b892 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_164.asset.meta b/Assets/04_Tiles/Floor/TileSet_164.asset.meta new file mode 100644 index 0000000..38450b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_164.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb2ec4d3030fe1e4db754f88f1215247 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_165.asset b/Assets/04_Tiles/Floor/TileSet_165.asset new file mode 100644 index 0000000..9da4dbe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_165.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2654acb25c88ac41f525264f05d75d2f8184b2e28fb245a16a21301ea1fc0e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_165.asset.meta b/Assets/04_Tiles/Floor/TileSet_165.asset.meta new file mode 100644 index 0000000..dd3d67f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_165.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a7556257059d20a42a8eb9ae4799ddd3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_166.asset b/Assets/04_Tiles/Floor/TileSet_166.asset new file mode 100644 index 0000000..c9d424d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_166.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f207312b8d3cdf5106e2a2485d0ca5b10c69a8d3237234450a4dcaecaf8f0f62 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_166.asset.meta b/Assets/04_Tiles/Floor/TileSet_166.asset.meta new file mode 100644 index 0000000..68dc4d3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_166.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3756d7e3ca383174b9f31813a8946565 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_167.asset b/Assets/04_Tiles/Floor/TileSet_167.asset new file mode 100644 index 0000000..269170b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_167.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3e351005e4d29052d7311015f4d750f0215b1be09c02a979842f98aaf5989fd +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_167.asset.meta b/Assets/04_Tiles/Floor/TileSet_167.asset.meta new file mode 100644 index 0000000..83f6c71 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_167.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87afb79403cb0a14c83b4e897f09c590 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_168.asset b/Assets/04_Tiles/Floor/TileSet_168.asset new file mode 100644 index 0000000..e679eec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_168.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dbedc7b57d46d1c650f1681b551d0a611d7aed7401c648b281056ef37cce97d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_168.asset.meta b/Assets/04_Tiles/Floor/TileSet_168.asset.meta new file mode 100644 index 0000000..b352e6a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_168.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d897fe3d4b15e8b46b9ed451f963e8ae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_169.asset b/Assets/04_Tiles/Floor/TileSet_169.asset new file mode 100644 index 0000000..e0a9d23 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_169.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d48681c47470d0a22bb2900acface5d754a8a7f31f40da771b38bbdad1a80e0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_169.asset.meta b/Assets/04_Tiles/Floor/TileSet_169.asset.meta new file mode 100644 index 0000000..ab1d36b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_169.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d9623cd56574c45449160e874e8743c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_17.asset b/Assets/04_Tiles/Floor/TileSet_17.asset new file mode 100644 index 0000000..24435d4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_17.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84a9cb89c52fc5cb1cdbff270947e98992e7a1186f35abc6631ad54fefd98563 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_17.asset.meta b/Assets/04_Tiles/Floor/TileSet_17.asset.meta new file mode 100644 index 0000000..4f295d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_17.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 426d1328a99bb3f429464a54cea32c12 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_170.asset b/Assets/04_Tiles/Floor/TileSet_170.asset new file mode 100644 index 0000000..a10010d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_170.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19d5ee26a3cbace007ee71bf4fa7ad2e41208a79bb5ead9adbbd14cb1e3ddb12 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_170.asset.meta b/Assets/04_Tiles/Floor/TileSet_170.asset.meta new file mode 100644 index 0000000..ca452cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_170.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ce2ebec36a736945810d750814646f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_171.asset b/Assets/04_Tiles/Floor/TileSet_171.asset new file mode 100644 index 0000000..4040dc0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_171.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e05e399154a6bfea1e3a73195ddc71193e75448923f6f8ba39928c992944a4a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_171.asset.meta b/Assets/04_Tiles/Floor/TileSet_171.asset.meta new file mode 100644 index 0000000..4cc2971 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_171.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bcf59d823d9350b4c938c6397c84240b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_172.asset b/Assets/04_Tiles/Floor/TileSet_172.asset new file mode 100644 index 0000000..f3b1cb5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_172.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adc6ecd78ae127cb965b259dfe7954e57c936c5a9c79a76c94205cc69543a243 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_172.asset.meta b/Assets/04_Tiles/Floor/TileSet_172.asset.meta new file mode 100644 index 0000000..bdc0725 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_172.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1510ba0cbd2ebd843bab06df6dbbfa35 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_173.asset b/Assets/04_Tiles/Floor/TileSet_173.asset new file mode 100644 index 0000000..9657dcd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_173.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5df58206e378af12e87b07cec1bb0eb54cbc2acf11521ffc71bf3a76e66d94cd +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_173.asset.meta b/Assets/04_Tiles/Floor/TileSet_173.asset.meta new file mode 100644 index 0000000..21c26e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_173.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0f8dfff1d9dcf0046983c60ed9e19c7b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_174.asset b/Assets/04_Tiles/Floor/TileSet_174.asset new file mode 100644 index 0000000..b906e7b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_174.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6e292413b48e46a49268711f61df9c44a72419bcda8ac93bf077ce53aff967a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_174.asset.meta b/Assets/04_Tiles/Floor/TileSet_174.asset.meta new file mode 100644 index 0000000..491fff3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_174.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e89e80989b075740ba4860d2f9d9e93 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_175.asset b/Assets/04_Tiles/Floor/TileSet_175.asset new file mode 100644 index 0000000..c8ed48b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_175.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:973088d49bd3686f8bc1d0cf27dfdf3619b5793cc9f5d2a55a60b4e4e2c9aec2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_175.asset.meta b/Assets/04_Tiles/Floor/TileSet_175.asset.meta new file mode 100644 index 0000000..2ede82a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_175.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fcbbfaec7d3039b4fa74c16c7869fe48 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_176.asset b/Assets/04_Tiles/Floor/TileSet_176.asset new file mode 100644 index 0000000..f2bbc6c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_176.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0930285d255306e7aaa4b39bb72c92f23a2aaa0c02d7218408cae21960391113 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_176.asset.meta b/Assets/04_Tiles/Floor/TileSet_176.asset.meta new file mode 100644 index 0000000..72d9424 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_176.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a2af85f9b7007e54a8f01096d83622f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_177.asset b/Assets/04_Tiles/Floor/TileSet_177.asset new file mode 100644 index 0000000..3532a7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_177.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e242e5b39136a526f25dd88bc10388348eb7d4aac9afa181cc1d1d61f251b407 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_177.asset.meta b/Assets/04_Tiles/Floor/TileSet_177.asset.meta new file mode 100644 index 0000000..c4ec4ec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_177.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc7090b0e9ba23b40b656d98ebc4314f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_178.asset b/Assets/04_Tiles/Floor/TileSet_178.asset new file mode 100644 index 0000000..8e0e69b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_178.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38611ea82dc6e4b63ee62ff3d64efa5ca44eaba17c9d1b5521b670fe3143314f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_178.asset.meta b/Assets/04_Tiles/Floor/TileSet_178.asset.meta new file mode 100644 index 0000000..708e787 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_178.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f1ae154310ac52542a993a65f43c9b12 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_179.asset b/Assets/04_Tiles/Floor/TileSet_179.asset new file mode 100644 index 0000000..41d662c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_179.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12e77456762fd5e0e866303ea681ccef59b6b90c517b1d2c4c748546bfcb8431 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_179.asset.meta b/Assets/04_Tiles/Floor/TileSet_179.asset.meta new file mode 100644 index 0000000..0ffb6cf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_179.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8bee1938f433af54a999befb28fb5324 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_18.asset b/Assets/04_Tiles/Floor/TileSet_18.asset new file mode 100644 index 0000000..ad094f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_18.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8e47fb0fe08c2b5e5c6d9efc87febe9bb4ae536f330fb065f1f81722b88868 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_18.asset.meta b/Assets/04_Tiles/Floor/TileSet_18.asset.meta new file mode 100644 index 0000000..e69c02e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_18.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 729b4db5f50e1524187a2745ca3eb7b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_180.asset b/Assets/04_Tiles/Floor/TileSet_180.asset new file mode 100644 index 0000000..e58f943 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_180.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b9d992e20884d8b1668c08bf7491dce0c2b14d83703cf62ed3e9cc8aff7d42 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_180.asset.meta b/Assets/04_Tiles/Floor/TileSet_180.asset.meta new file mode 100644 index 0000000..2170bf9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_180.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ad782e88a1feeb4187e85f717a94f0e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_181.asset b/Assets/04_Tiles/Floor/TileSet_181.asset new file mode 100644 index 0000000..2fe9f7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_181.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:541dead5578e38d459b959533878cfdaa1470398d9b584ec316f5e25d800e35a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_181.asset.meta b/Assets/04_Tiles/Floor/TileSet_181.asset.meta new file mode 100644 index 0000000..cbb5982 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_181.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c4d0b4e45b58224b9523de3a936c7cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_182.asset b/Assets/04_Tiles/Floor/TileSet_182.asset new file mode 100644 index 0000000..eba578a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_182.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4d58980f4d9135a51cf5b5700d9cbbce35a467970b3788d3ca2f5e86bf5c67 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_182.asset.meta b/Assets/04_Tiles/Floor/TileSet_182.asset.meta new file mode 100644 index 0000000..03a8043 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_182.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7a70223bc64d43469b553255c9b979c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_183.asset b/Assets/04_Tiles/Floor/TileSet_183.asset new file mode 100644 index 0000000..7f16c6e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_183.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a377e85f05d197ecae7faf1e2b7fd47eb32317f33485446de4439b4fb3cb0310 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_183.asset.meta b/Assets/04_Tiles/Floor/TileSet_183.asset.meta new file mode 100644 index 0000000..c16da80 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_183.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 907e4591579f7a649953b221184eab6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_184.asset b/Assets/04_Tiles/Floor/TileSet_184.asset new file mode 100644 index 0000000..5821ffe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_184.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46690a91ae4dd298b63c15eba718f1164ce69b609388d48fd51a07ec316f7399 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_184.asset.meta b/Assets/04_Tiles/Floor/TileSet_184.asset.meta new file mode 100644 index 0000000..e574819 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_184.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56583e20e5b90f841a987d97ca493c3d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_185.asset b/Assets/04_Tiles/Floor/TileSet_185.asset new file mode 100644 index 0000000..2dda0ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_185.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe406dfff005c98c8c27612e32d5ad3056252cc4ecc3185d08df7b2b9a311db +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_185.asset.meta b/Assets/04_Tiles/Floor/TileSet_185.asset.meta new file mode 100644 index 0000000..141e0e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_185.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 51da606e2e7b9c34993c0d2be259da4c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_186.asset b/Assets/04_Tiles/Floor/TileSet_186.asset new file mode 100644 index 0000000..60b13cc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_186.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:175379d3cec2d9de6c76b3fb03f49b042aa41fe1602ad7e0451815cf9c99ae62 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_186.asset.meta b/Assets/04_Tiles/Floor/TileSet_186.asset.meta new file mode 100644 index 0000000..7bca982 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_186.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7dfcd74b77c98d4e8c04c308ec69223 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_187.asset b/Assets/04_Tiles/Floor/TileSet_187.asset new file mode 100644 index 0000000..5acf5c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_187.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3d68ceb5a3226372263545c06bee0f11c96aa9ef94f3271fcf9c529d7b87f54 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_187.asset.meta b/Assets/04_Tiles/Floor/TileSet_187.asset.meta new file mode 100644 index 0000000..d9b9eed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_187.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15d5b8a092dbc58468f0e51d04fd1a2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_188.asset b/Assets/04_Tiles/Floor/TileSet_188.asset new file mode 100644 index 0000000..1b7b7dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_188.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b553e5ba8e0886897e0d7f3013e3b7f775a1818f6d58f25936ea924cfc6f8305 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_188.asset.meta b/Assets/04_Tiles/Floor/TileSet_188.asset.meta new file mode 100644 index 0000000..454d9c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_188.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c88388c9a2a57d64cbf52bec1ea0cf5e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_189.asset b/Assets/04_Tiles/Floor/TileSet_189.asset new file mode 100644 index 0000000..35d9e2a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_189.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a76c4094201a9a82396f5b0fd3eb1153fd3d8ce598d12b9a253053c5b13ee086 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_189.asset.meta b/Assets/04_Tiles/Floor/TileSet_189.asset.meta new file mode 100644 index 0000000..493f0ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_189.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79f09db63fa0e3e4ca3a39a9e07e466e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_19.asset b/Assets/04_Tiles/Floor/TileSet_19.asset new file mode 100644 index 0000000..41dd219 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_19.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:074692f82e78bd2ddbb5a5a46c0719afd4b1a793f95055cc8059a32cc5a07ae4 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_19.asset.meta b/Assets/04_Tiles/Floor/TileSet_19.asset.meta new file mode 100644 index 0000000..d5600b7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_19.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fd90102fd7be27046998b6aad3b0acf4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_190.asset b/Assets/04_Tiles/Floor/TileSet_190.asset new file mode 100644 index 0000000..c7b4cda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_190.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df68f465185976ae9479256de11831020cb7923fb88a188a7155f0ea2dbd9f4f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_190.asset.meta b/Assets/04_Tiles/Floor/TileSet_190.asset.meta new file mode 100644 index 0000000..2243bdc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_190.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8eb3c403be4ad4a45a86bd590527dd66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_191.asset b/Assets/04_Tiles/Floor/TileSet_191.asset new file mode 100644 index 0000000..2009a23 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_191.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4db835cd7bba504e235a51dccae33d116e766c01b027a81a82a584b887340471 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_191.asset.meta b/Assets/04_Tiles/Floor/TileSet_191.asset.meta new file mode 100644 index 0000000..60d8ee3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_191.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a643af03b88fa1478a71729ee14fb1f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_192.asset b/Assets/04_Tiles/Floor/TileSet_192.asset new file mode 100644 index 0000000..be643d3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_192.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93076a8fe66f5a5540470ec8ce5ec8f5ca6130df5dbddbed6acc5e870651cacd +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_192.asset.meta b/Assets/04_Tiles/Floor/TileSet_192.asset.meta new file mode 100644 index 0000000..adbe58e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_192.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b19cd8388c9d6b418c1546544b17c27 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_193.asset b/Assets/04_Tiles/Floor/TileSet_193.asset new file mode 100644 index 0000000..0f0b4c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_193.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1afbfe2a28d496e8d8e30dd6edb6467b57c346e8526419004637a287e31d5b59 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_193.asset.meta b/Assets/04_Tiles/Floor/TileSet_193.asset.meta new file mode 100644 index 0000000..529b7b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_193.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31436b13a5d395546b75c1965809386a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_194.asset b/Assets/04_Tiles/Floor/TileSet_194.asset new file mode 100644 index 0000000..8d70e76 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_194.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f0fb0c94cc0a77b2ca5df2d704959ce38e0533df2a721e45e65897039ce4a8 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_194.asset.meta b/Assets/04_Tiles/Floor/TileSet_194.asset.meta new file mode 100644 index 0000000..1fe7e61 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_194.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a4fe6e16b8f7d14a93adbcb2ea6060f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_195.asset b/Assets/04_Tiles/Floor/TileSet_195.asset new file mode 100644 index 0000000..47e8912 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_195.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb67ca1803fe77ccd56bb15182591a73aa8f077aeef91d823e4f40c840f898c7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_195.asset.meta b/Assets/04_Tiles/Floor/TileSet_195.asset.meta new file mode 100644 index 0000000..4397b40 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_195.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c841c345b7412a489b397a0e5120a22 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_196.asset b/Assets/04_Tiles/Floor/TileSet_196.asset new file mode 100644 index 0000000..b6cb6ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_196.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9f2fa9561ccf91298b8c24887cbaf40bc0894bce294d69b4d65d56c85ab5aae +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_196.asset.meta b/Assets/04_Tiles/Floor/TileSet_196.asset.meta new file mode 100644 index 0000000..e46b845 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_196.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 503e7de2c50597e41a875a02512f1ce2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_197.asset b/Assets/04_Tiles/Floor/TileSet_197.asset new file mode 100644 index 0000000..ea46ac7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_197.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b009d0aa55e9e2a8f8d5db07c9ebc6c55221d68e0871c1ae0386f577382adb1b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_197.asset.meta b/Assets/04_Tiles/Floor/TileSet_197.asset.meta new file mode 100644 index 0000000..538ec76 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_197.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81d11c92cf76aba4ab5898e99fc3a14d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_198.asset b/Assets/04_Tiles/Floor/TileSet_198.asset new file mode 100644 index 0000000..b22ea9f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_198.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa874d91437c254bbe4b7ca51004f7dd31a4414266cdb3d7ae8a50a7f2f875ee +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_198.asset.meta b/Assets/04_Tiles/Floor/TileSet_198.asset.meta new file mode 100644 index 0000000..08715a6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_198.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5000246d1a5e73a4cade79c5d87ac560 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_199.asset b/Assets/04_Tiles/Floor/TileSet_199.asset new file mode 100644 index 0000000..a8372cb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_199.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b4e1f896e58446d25d5334a14bebd9c004338ea929021d38bbe1462a19ccb8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_199.asset.meta b/Assets/04_Tiles/Floor/TileSet_199.asset.meta new file mode 100644 index 0000000..9ed6c2a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_199.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 720f170cee7ccb24da5c988d7a2fe0a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_2.asset b/Assets/04_Tiles/Floor/TileSet_2.asset new file mode 100644 index 0000000..0ed6396 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_2.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22f4d47972f43f2f18c547fa7c64f8ba6c1627a05255199d7dc01ccd5e81fe0 +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_2.asset.meta b/Assets/04_Tiles/Floor/TileSet_2.asset.meta new file mode 100644 index 0000000..8d8e708 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_2.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 854c191bc9f8bbf4289bb9d8b602e653 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_20.asset b/Assets/04_Tiles/Floor/TileSet_20.asset new file mode 100644 index 0000000..ffc3061 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_20.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbcae2813de0371ee2e8110eeb175e15322362de62a734acf6483b5f78730d59 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_20.asset.meta b/Assets/04_Tiles/Floor/TileSet_20.asset.meta new file mode 100644 index 0000000..da23fbc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_20.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f298192caace507478e526ab1c52c8a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_200.asset b/Assets/04_Tiles/Floor/TileSet_200.asset new file mode 100644 index 0000000..8b4726d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_200.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a350a7e0fe1828b10e3b4b82227fe4a7dc951476aecce8459083953093746a6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_200.asset.meta b/Assets/04_Tiles/Floor/TileSet_200.asset.meta new file mode 100644 index 0000000..3f6ba34 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_200.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae9f6753cb3fa8440989fffdb219e197 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_201.asset b/Assets/04_Tiles/Floor/TileSet_201.asset new file mode 100644 index 0000000..dd8406b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_201.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27b392730cea61cc0116104cf3d4de65c79e8c6171336ad6f4ebbdd968d1db4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_201.asset.meta b/Assets/04_Tiles/Floor/TileSet_201.asset.meta new file mode 100644 index 0000000..2827252 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_201.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 506e47e641c145647a8ace144fddef32 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_202.asset b/Assets/04_Tiles/Floor/TileSet_202.asset new file mode 100644 index 0000000..f59ba07 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_202.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:811e5d14adacc65e42c1f7924448e91759b2fc910f45a96d1fb9916a09ed0376 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_202.asset.meta b/Assets/04_Tiles/Floor/TileSet_202.asset.meta new file mode 100644 index 0000000..68831d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_202.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c18a4273e29fdfc4c8f37865f50d58f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_203.asset b/Assets/04_Tiles/Floor/TileSet_203.asset new file mode 100644 index 0000000..caca744 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_203.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3d1325e6005fd434949768ce6754b192a2d215a1c5a5959feee03ba47ba8deb +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_203.asset.meta b/Assets/04_Tiles/Floor/TileSet_203.asset.meta new file mode 100644 index 0000000..ec43ae8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_203.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55226e351e0696f40b56c82f14fa0c1d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_204.asset b/Assets/04_Tiles/Floor/TileSet_204.asset new file mode 100644 index 0000000..e725cab --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_204.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0a5a2fffad4f3abbc4110caa5183bc8ce3ff939be38b9065dd04a92f7a76d2d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_204.asset.meta b/Assets/04_Tiles/Floor/TileSet_204.asset.meta new file mode 100644 index 0000000..791ff50 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_204.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c637e808ee5f9a940beb9a7928c64292 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_205.asset b/Assets/04_Tiles/Floor/TileSet_205.asset new file mode 100644 index 0000000..74f6b38 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_205.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8e6cdffc7cb9470836e05a6aa79772bc208345951b4dc73b3e37c55a95e62ac +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_205.asset.meta b/Assets/04_Tiles/Floor/TileSet_205.asset.meta new file mode 100644 index 0000000..57c2266 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_205.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fcaba8fbae16adf4b9cd17307bc36a90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_206.asset b/Assets/04_Tiles/Floor/TileSet_206.asset new file mode 100644 index 0000000..75e94c9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_206.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651e6ff1d61199df51ff812401f6d7154f5c96a1de39f35e88ffbd0a037eebc3 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_206.asset.meta b/Assets/04_Tiles/Floor/TileSet_206.asset.meta new file mode 100644 index 0000000..d56e90b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_206.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe8b10d99dddf12419b549e6ff4e61e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_207.asset b/Assets/04_Tiles/Floor/TileSet_207.asset new file mode 100644 index 0000000..09a2892 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_207.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1b43f2224f17113c70950391da9810841f3792a2b4abe7743b0926e1e7901c0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_207.asset.meta b/Assets/04_Tiles/Floor/TileSet_207.asset.meta new file mode 100644 index 0000000..faef483 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_207.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06a748fe694df4a4493c51db3fec2393 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_208.asset b/Assets/04_Tiles/Floor/TileSet_208.asset new file mode 100644 index 0000000..d715793 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_208.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ca094c958f211be63ebc799a9563bd4b73184fcd0b6e7642c374a24928ecef +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_208.asset.meta b/Assets/04_Tiles/Floor/TileSet_208.asset.meta new file mode 100644 index 0000000..05f1790 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_208.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10e091e7217993a44ad9aac271ef4f0b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_209.asset b/Assets/04_Tiles/Floor/TileSet_209.asset new file mode 100644 index 0000000..4a11015 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_209.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0be3f271364175ad93f2a6d75f9f56689b9c40629cdd686d3e6a27e0d2296a62 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_209.asset.meta b/Assets/04_Tiles/Floor/TileSet_209.asset.meta new file mode 100644 index 0000000..619b7e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_209.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 047409441331e974ea121cf1b457387f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_21.asset b/Assets/04_Tiles/Floor/TileSet_21.asset new file mode 100644 index 0000000..3fc5e76 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_21.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f81d8c65f2dc330b9df34064c62cc119c43db6873bd008b7a8447298a71f53d4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_21.asset.meta b/Assets/04_Tiles/Floor/TileSet_21.asset.meta new file mode 100644 index 0000000..fa90e16 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_21.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9231556b678442f40876d298bd753e21 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_210.asset b/Assets/04_Tiles/Floor/TileSet_210.asset new file mode 100644 index 0000000..3452965 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_210.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c6530730e0ea29181d4b75209f8cb4cd05e72721c1b7d6676a6ed9f937954c1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_210.asset.meta b/Assets/04_Tiles/Floor/TileSet_210.asset.meta new file mode 100644 index 0000000..77a5e96 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_210.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ad9b1e8b3fdabb4dbc32425fc7bc7ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_211.asset b/Assets/04_Tiles/Floor/TileSet_211.asset new file mode 100644 index 0000000..ebe357f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_211.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93a4d5e82e512da9c20aad4f3b5aaa1bfe484d1f4f41cf8a6bf822b045667727 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_211.asset.meta b/Assets/04_Tiles/Floor/TileSet_211.asset.meta new file mode 100644 index 0000000..ad6d9cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_211.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 031ccd11f3d04a04cbc88db8c87fd536 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_212.asset b/Assets/04_Tiles/Floor/TileSet_212.asset new file mode 100644 index 0000000..e9b4c85 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_212.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53c2e52e42df15012430c039be4f8d58bba7b51bc4ac29e7ae9eb58dd9b48990 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_212.asset.meta b/Assets/04_Tiles/Floor/TileSet_212.asset.meta new file mode 100644 index 0000000..e57d4ad --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_212.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 413f09100ba285c489971f69a0cb58d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_213.asset b/Assets/04_Tiles/Floor/TileSet_213.asset new file mode 100644 index 0000000..17f4528 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_213.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91aaa11632264d687a1e648a0c986ed114ddcfa0180fa3dc344801d945a36b8b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_213.asset.meta b/Assets/04_Tiles/Floor/TileSet_213.asset.meta new file mode 100644 index 0000000..2745265 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_213.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e0d613ff01395fa40b43c21f4f4e47b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_214.asset b/Assets/04_Tiles/Floor/TileSet_214.asset new file mode 100644 index 0000000..0ad7e05 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_214.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb269366f066e51c986e8005d49255028d7769d895ec453546b548bfd14fddc +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_214.asset.meta b/Assets/04_Tiles/Floor/TileSet_214.asset.meta new file mode 100644 index 0000000..db5d0ab --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_214.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c45dea1123a02b848a39cca544ba0697 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_215.asset b/Assets/04_Tiles/Floor/TileSet_215.asset new file mode 100644 index 0000000..c24d711 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_215.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:903f3f82fd79cbadd7f71f1bcecb806045600e14ac585b5eece839e5817c50cd +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_215.asset.meta b/Assets/04_Tiles/Floor/TileSet_215.asset.meta new file mode 100644 index 0000000..300bb1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_215.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f10276a03169f8c47a9c3722581c31ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_216.asset b/Assets/04_Tiles/Floor/TileSet_216.asset new file mode 100644 index 0000000..e757a89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_216.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e6cd3bbf180b49d4c343d30f35d9a17bbeea5143f6ff935a4e62660a183cd2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_216.asset.meta b/Assets/04_Tiles/Floor/TileSet_216.asset.meta new file mode 100644 index 0000000..208bb07 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_216.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f2748ab06295a446b5984b55e9cc572 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_217.asset b/Assets/04_Tiles/Floor/TileSet_217.asset new file mode 100644 index 0000000..346932d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_217.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da4022202d1367c431568940e7dbe96f449c1e5b11247d951eb8d133ab9b356 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_217.asset.meta b/Assets/04_Tiles/Floor/TileSet_217.asset.meta new file mode 100644 index 0000000..5a3377e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_217.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e11aab2e40a031489c7c2de2c4b1875 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_218.asset b/Assets/04_Tiles/Floor/TileSet_218.asset new file mode 100644 index 0000000..50249d3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_218.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56f7f84b9f935ad1544a81437e0653a7f8336094c63a9ec828ac8aa43869af1f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_218.asset.meta b/Assets/04_Tiles/Floor/TileSet_218.asset.meta new file mode 100644 index 0000000..594f414 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_218.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 322edd60864512545ba235cec6ae55cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_219.asset b/Assets/04_Tiles/Floor/TileSet_219.asset new file mode 100644 index 0000000..d959b18 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_219.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ac4412528fd97f055c86f0580a9907626195bb90a43471b588ae15ef20c7c1e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_219.asset.meta b/Assets/04_Tiles/Floor/TileSet_219.asset.meta new file mode 100644 index 0000000..e2c7f43 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_219.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee9fe68e4bc859f48a750d191766dec9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_22.asset b/Assets/04_Tiles/Floor/TileSet_22.asset new file mode 100644 index 0000000..f5d5b4b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_22.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1d2e44124067048a421bb153652b3a529c7473f1639d9a5740c52c3a6d768b8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_22.asset.meta b/Assets/04_Tiles/Floor/TileSet_22.asset.meta new file mode 100644 index 0000000..63166c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_22.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 30957212bdbb86e47beb920f055d1819 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_220.asset b/Assets/04_Tiles/Floor/TileSet_220.asset new file mode 100644 index 0000000..0c9087c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_220.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082dd0fc7bf256bc03290e5bf6e30f8443cae937f1509db929d2f475acbea64b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_220.asset.meta b/Assets/04_Tiles/Floor/TileSet_220.asset.meta new file mode 100644 index 0000000..97fee85 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_220.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7f53fc1330cb324e9b7229bd80ab6c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_221.asset b/Assets/04_Tiles/Floor/TileSet_221.asset new file mode 100644 index 0000000..9f6bc36 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_221.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e1865940f968dfae1d4e9b81ac64b82aace9cd317126aedf33ca08a0ab2f81e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_221.asset.meta b/Assets/04_Tiles/Floor/TileSet_221.asset.meta new file mode 100644 index 0000000..1229e63 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_221.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb94223837b9be14687b7869c0c7ce66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_222.asset b/Assets/04_Tiles/Floor/TileSet_222.asset new file mode 100644 index 0000000..9c02cb3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_222.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0924952476fd38f25b1035334e5f0e9b2dfda3f6c00f7dcc21748b8afa3c53c7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_222.asset.meta b/Assets/04_Tiles/Floor/TileSet_222.asset.meta new file mode 100644 index 0000000..eb546fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_222.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0aaa7572d38e9274e98f5b86603491d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_223.asset b/Assets/04_Tiles/Floor/TileSet_223.asset new file mode 100644 index 0000000..0f925a9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_223.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4acc59bf392e2e606f5b79fa4d84b7159f26b44237077abdf45b11ddf5b5152 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_223.asset.meta b/Assets/04_Tiles/Floor/TileSet_223.asset.meta new file mode 100644 index 0000000..ab76a4b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_223.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 596a3185c7f180b4b83f8d2c2afb3592 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_224.asset b/Assets/04_Tiles/Floor/TileSet_224.asset new file mode 100644 index 0000000..5925ede --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_224.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe03bf1f189d4c7e17a1cf6d056ff82d408a26e6d931792916ba085fde279523 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_224.asset.meta b/Assets/04_Tiles/Floor/TileSet_224.asset.meta new file mode 100644 index 0000000..9a415af --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_224.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd15b01cd3012be449d551c6dd86bdcb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_225.asset b/Assets/04_Tiles/Floor/TileSet_225.asset new file mode 100644 index 0000000..85e419f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_225.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b927a6e682ff8abeb47487ae98e0c74f3af8889e5ceb460d5b201174d5638a02 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_225.asset.meta b/Assets/04_Tiles/Floor/TileSet_225.asset.meta new file mode 100644 index 0000000..6a19461 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_225.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a4c1f45942c27943b53d90acc988a72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_226.asset b/Assets/04_Tiles/Floor/TileSet_226.asset new file mode 100644 index 0000000..adbeb3e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_226.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c25a5efd7706c84e462a82a55574050c7683c87cc2426a79262f323071383c3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_226.asset.meta b/Assets/04_Tiles/Floor/TileSet_226.asset.meta new file mode 100644 index 0000000..69d39b9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_226.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33a9c927db89f144c940c11a7f68cba4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_227.asset b/Assets/04_Tiles/Floor/TileSet_227.asset new file mode 100644 index 0000000..061a2c3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_227.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f79d0215d2463116f75e7d58bb79830df1737381f0737bad90c5d165f8846d6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_227.asset.meta b/Assets/04_Tiles/Floor/TileSet_227.asset.meta new file mode 100644 index 0000000..6d8d988 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_227.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c22a3bbfe7c40d48b15fcfc4801f5d7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_228.asset b/Assets/04_Tiles/Floor/TileSet_228.asset new file mode 100644 index 0000000..5ac1932 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_228.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0e6a00b358cb7fd988db28a983edaf68f750848badcbca73c2d87d0c1353280 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_228.asset.meta b/Assets/04_Tiles/Floor/TileSet_228.asset.meta new file mode 100644 index 0000000..3061f49 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_228.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81dae36b8f2d1884faa67bfd22ad4576 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_229.asset b/Assets/04_Tiles/Floor/TileSet_229.asset new file mode 100644 index 0000000..3ef040f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_229.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f77783f642b12cfc0a9e4da621e26234dcfddc8e92c1dfcd725b28347215f6d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_229.asset.meta b/Assets/04_Tiles/Floor/TileSet_229.asset.meta new file mode 100644 index 0000000..da7986b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_229.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ab6616742c997b40a51c2a2dff25cc6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_23.asset b/Assets/04_Tiles/Floor/TileSet_23.asset new file mode 100644 index 0000000..26caf3a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_23.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9efb0647caae15eccdef42b16973a951e5154a2f2813bd1993d0d0db41ab926a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_23.asset.meta b/Assets/04_Tiles/Floor/TileSet_23.asset.meta new file mode 100644 index 0000000..831a52c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_23.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19d471b06c0583649b6d9049e0e754c1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_230.asset b/Assets/04_Tiles/Floor/TileSet_230.asset new file mode 100644 index 0000000..2d6df37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_230.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bba017a6f74ef9b70e087f6a79c6b4dcbcae1f69760b03e19c33989a95090644 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_230.asset.meta b/Assets/04_Tiles/Floor/TileSet_230.asset.meta new file mode 100644 index 0000000..5f2040d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_230.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc61b7ad857eb394b89e0463d0877d06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_231.asset b/Assets/04_Tiles/Floor/TileSet_231.asset new file mode 100644 index 0000000..fa36ee1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_231.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae3b121a01ec4e34516c824f8f04fa4fe311ee1b7df3831a76c137275b2716b0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_231.asset.meta b/Assets/04_Tiles/Floor/TileSet_231.asset.meta new file mode 100644 index 0000000..8e03351 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_231.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ec0b70c334108442ae5047748bad262 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_232.asset b/Assets/04_Tiles/Floor/TileSet_232.asset new file mode 100644 index 0000000..c4622bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_232.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25d23b1520bdf1f27606a684e4e8c064d90269054abf5fc5112edbc3d204342 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_232.asset.meta b/Assets/04_Tiles/Floor/TileSet_232.asset.meta new file mode 100644 index 0000000..4878df2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_232.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b5ef809d1065e648aed702a0f73588e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_233.asset b/Assets/04_Tiles/Floor/TileSet_233.asset new file mode 100644 index 0000000..9dc7d51 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_233.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baa09a01745ca9a0123344e7b728aa71d39379903bad22ae52c3d9353f7da309 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_233.asset.meta b/Assets/04_Tiles/Floor/TileSet_233.asset.meta new file mode 100644 index 0000000..deb6de4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_233.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d22c3cb00c959394bb6ccd3f7ff4ca25 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_234.asset b/Assets/04_Tiles/Floor/TileSet_234.asset new file mode 100644 index 0000000..6bbe8d3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_234.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5cd6568fdda1d6da4b8344ac0843ddd5772d6d836ca8f1391bcdd3718289443 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_234.asset.meta b/Assets/04_Tiles/Floor/TileSet_234.asset.meta new file mode 100644 index 0000000..2f33bb7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_234.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95806ef41a4b4d44ca5ebb7362cc64e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_235.asset b/Assets/04_Tiles/Floor/TileSet_235.asset new file mode 100644 index 0000000..d200f1e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_235.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25adbb166420be002749c29dd84f2835a1eb60828673c8bca4a259c5a7db71b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_235.asset.meta b/Assets/04_Tiles/Floor/TileSet_235.asset.meta new file mode 100644 index 0000000..27c8bcc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_235.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f8ea262a366c674eb0106477b03aaf1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_236.asset b/Assets/04_Tiles/Floor/TileSet_236.asset new file mode 100644 index 0000000..842270e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_236.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d475d7abaa8e6313b0a5f4ec45cf7db03e1d4c56e6b92cc1c45dbf22991036 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_236.asset.meta b/Assets/04_Tiles/Floor/TileSet_236.asset.meta new file mode 100644 index 0000000..01b5a94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_236.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d478aed001773bb40a3a5ca82262e07e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_237.asset b/Assets/04_Tiles/Floor/TileSet_237.asset new file mode 100644 index 0000000..cdf6839 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_237.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548a81249a32a9e9e536d4d6ba1ce22537960fe2d62330bedfd1b917c1951fb8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_237.asset.meta b/Assets/04_Tiles/Floor/TileSet_237.asset.meta new file mode 100644 index 0000000..08bce35 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_237.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f00c57dc7a3f3f74cb5a13f1459c6708 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_238.asset b/Assets/04_Tiles/Floor/TileSet_238.asset new file mode 100644 index 0000000..97584ab --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_238.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39a80bf2ec1b07920832d29d1e45a4c9e2850c6bf4af525525e3424a7546d290 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_238.asset.meta b/Assets/04_Tiles/Floor/TileSet_238.asset.meta new file mode 100644 index 0000000..f20711f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_238.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44d489cad7675614f801f9a352086df6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_239.asset b/Assets/04_Tiles/Floor/TileSet_239.asset new file mode 100644 index 0000000..9439474 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_239.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a103252c4687ea496c45883643ac8f26dc098b6cd196d662b677588b710a6f78 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_239.asset.meta b/Assets/04_Tiles/Floor/TileSet_239.asset.meta new file mode 100644 index 0000000..99d93b6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_239.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b6ef106767d968648b1c174cc8960c77 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_24.asset b/Assets/04_Tiles/Floor/TileSet_24.asset new file mode 100644 index 0000000..e805811 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_24.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe7fab7d97a62df7dde36029fa884708b0e7a5defad2bf1a8bb61d85ffc777f1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_24.asset.meta b/Assets/04_Tiles/Floor/TileSet_24.asset.meta new file mode 100644 index 0000000..3128b9a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_24.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b6ef3c328a8474448a33487fd1b5270 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_240.asset b/Assets/04_Tiles/Floor/TileSet_240.asset new file mode 100644 index 0000000..85bd3f2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_240.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffa80a6684febc88ca3ddde39d818a69042cd10cae287b6e0d5faf1031ef62d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_240.asset.meta b/Assets/04_Tiles/Floor/TileSet_240.asset.meta new file mode 100644 index 0000000..7c2257f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_240.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2bb561336e432cb4cbdb818088fdb5db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_241.asset b/Assets/04_Tiles/Floor/TileSet_241.asset new file mode 100644 index 0000000..9376a1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_241.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae70633c4bf6f2b0014c1e67a858b0e59bb63f3456a27fc038b20847936f5b81 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_241.asset.meta b/Assets/04_Tiles/Floor/TileSet_241.asset.meta new file mode 100644 index 0000000..182cb4c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_241.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7110bef742ff33e479060ea41763cd80 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_242.asset b/Assets/04_Tiles/Floor/TileSet_242.asset new file mode 100644 index 0000000..2cd8c55 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_242.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d8cc97533222e97a86d168af905cef3931a660750baac793f31d2c9ded62290 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_242.asset.meta b/Assets/04_Tiles/Floor/TileSet_242.asset.meta new file mode 100644 index 0000000..d276455 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_242.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 948c3e56402308d4596af3547785f5fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_243.asset b/Assets/04_Tiles/Floor/TileSet_243.asset new file mode 100644 index 0000000..5084729 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_243.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c090b750c5f82ef44287f82ac78469b3984562202a856325f715edd67ce944cc +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_243.asset.meta b/Assets/04_Tiles/Floor/TileSet_243.asset.meta new file mode 100644 index 0000000..3344459 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_243.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b55515b9716cd5742bbe0e7ec64a0f2e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_244.asset b/Assets/04_Tiles/Floor/TileSet_244.asset new file mode 100644 index 0000000..4620f98 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_244.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd035dc31c3354ee81a53eebd238d15be41e413661989cb9a151596fd586313c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_244.asset.meta b/Assets/04_Tiles/Floor/TileSet_244.asset.meta new file mode 100644 index 0000000..d8815da --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_244.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90d298c0f1211864b93ca0711be7ad91 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_245.asset b/Assets/04_Tiles/Floor/TileSet_245.asset new file mode 100644 index 0000000..3be20e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_245.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af58325de9563e7c4f73633408c0be064bee70d18e12ea5d75a05b3c05928eae +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_245.asset.meta b/Assets/04_Tiles/Floor/TileSet_245.asset.meta new file mode 100644 index 0000000..dc69236 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_245.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c598280c46d7e4e4894d5cc8da632438 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_246.asset b/Assets/04_Tiles/Floor/TileSet_246.asset new file mode 100644 index 0000000..bf46f89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_246.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aec405fc62d791e860919ff72c742edcc53d2ee4faa789e54d6d8b7d2b010702 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_246.asset.meta b/Assets/04_Tiles/Floor/TileSet_246.asset.meta new file mode 100644 index 0000000..0e5f624 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_246.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8f05a34acde14a4ba0037fbd54cf7b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_247.asset b/Assets/04_Tiles/Floor/TileSet_247.asset new file mode 100644 index 0000000..e6d4f1b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_247.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98fd02718070dd5cea279f230bee540ff243926e424438797cf71c2c1e55c410 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_247.asset.meta b/Assets/04_Tiles/Floor/TileSet_247.asset.meta new file mode 100644 index 0000000..b44e1ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_247.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0cfdb40027834647b8926c6eb8fbbd2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_248.asset b/Assets/04_Tiles/Floor/TileSet_248.asset new file mode 100644 index 0000000..bc39e99 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_248.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72e6fccfccd97824948719cb8304e6fa631c50fbf2254441f469a183f1746576 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_248.asset.meta b/Assets/04_Tiles/Floor/TileSet_248.asset.meta new file mode 100644 index 0000000..2e782b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_248.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55e2d7cace88fe047bb656548c28365b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_249.asset b/Assets/04_Tiles/Floor/TileSet_249.asset new file mode 100644 index 0000000..cb98e79 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_249.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f3a4e0006dad8457743e0948be470103eb2d82aa4e0de2da29a8a85b3a7a38e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_249.asset.meta b/Assets/04_Tiles/Floor/TileSet_249.asset.meta new file mode 100644 index 0000000..abe73f1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_249.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a99b96f861403d4fbaf7ed815254565 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_25.asset b/Assets/04_Tiles/Floor/TileSet_25.asset new file mode 100644 index 0000000..88ec449 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_25.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56bd525c1d604c8ef6391cd0a1600af5d6739a7c35890cc256b61e27e74e05eb +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_25.asset.meta b/Assets/04_Tiles/Floor/TileSet_25.asset.meta new file mode 100644 index 0000000..77580f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_25.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f10c08f1d10225c43b28e235caccd721 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_250.asset b/Assets/04_Tiles/Floor/TileSet_250.asset new file mode 100644 index 0000000..18b0114 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_250.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc2345a9eda267d485ad3dade1c77e8f087d3878a58abc4ccbc449edd7b2ea2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_250.asset.meta b/Assets/04_Tiles/Floor/TileSet_250.asset.meta new file mode 100644 index 0000000..af9e258 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_250.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bf006dbe743eaab4c9e2b52d5a445c0d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_251.asset b/Assets/04_Tiles/Floor/TileSet_251.asset new file mode 100644 index 0000000..327b396 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_251.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2ac1c67bb2ea9ad5b44088cb261bc6ec4fd9b1a9e5111ea6d45efa4ab8362f9 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_251.asset.meta b/Assets/04_Tiles/Floor/TileSet_251.asset.meta new file mode 100644 index 0000000..7a40dc4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_251.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68dd0bab1b2500a4c9d74d7f31b6a8f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_252.asset b/Assets/04_Tiles/Floor/TileSet_252.asset new file mode 100644 index 0000000..ee4cc32 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_252.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f7ca46cc9599ecc3a3fdd17da553c1bccb0d78b451b8030b9a7ae90b48cee4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_252.asset.meta b/Assets/04_Tiles/Floor/TileSet_252.asset.meta new file mode 100644 index 0000000..e943450 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_252.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 341c0655da8a4f5498f45cd131585f39 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_253.asset b/Assets/04_Tiles/Floor/TileSet_253.asset new file mode 100644 index 0000000..1d7e54f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_253.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9502d03ce450a0fc88b0c472a658ff17301cd3febed82c8c867627d7f0fca7b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_253.asset.meta b/Assets/04_Tiles/Floor/TileSet_253.asset.meta new file mode 100644 index 0000000..f82fdc3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_253.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 49e95e0b743b58746a0be1cfd7ced512 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_254.asset b/Assets/04_Tiles/Floor/TileSet_254.asset new file mode 100644 index 0000000..511e942 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_254.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc97fd36ec9d8f325bfa586075a149029863f5b73afa38417e5d33685026b2d4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_254.asset.meta b/Assets/04_Tiles/Floor/TileSet_254.asset.meta new file mode 100644 index 0000000..26f568f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_254.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 028e915652bdda34d8c285d0d9d2abc6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_255.asset b/Assets/04_Tiles/Floor/TileSet_255.asset new file mode 100644 index 0000000..5fbcdad --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_255.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82fce89a17331b9f60c81cb8f6287583baf199c4766af39734d1dd9932ee3697 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_255.asset.meta b/Assets/04_Tiles/Floor/TileSet_255.asset.meta new file mode 100644 index 0000000..dc3af64 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_255.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 316267e26a39cdb4490edd55eff46ef8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_256.asset b/Assets/04_Tiles/Floor/TileSet_256.asset new file mode 100644 index 0000000..f507401 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_256.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48c02430936168948158648c9f74f4d84808adfa53e83c956fb562ce9eafe47c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_256.asset.meta b/Assets/04_Tiles/Floor/TileSet_256.asset.meta new file mode 100644 index 0000000..300b225 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_256.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a9d365667d444ad4bb83794a976e2d37 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_257.asset b/Assets/04_Tiles/Floor/TileSet_257.asset new file mode 100644 index 0000000..fdf0656 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_257.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901ff2cee478c302dcd8516ae96fec46c801271197a2f9fbae59fe3a3594d165 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_257.asset.meta b/Assets/04_Tiles/Floor/TileSet_257.asset.meta new file mode 100644 index 0000000..ee6c279 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_257.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4daa4e3725f0814caabb5df7c163bf3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_258.asset b/Assets/04_Tiles/Floor/TileSet_258.asset new file mode 100644 index 0000000..c364b7e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_258.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c95e20ab2309fff6c67052f117686693bb1efed535c5f3c41290153f4714c1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_258.asset.meta b/Assets/04_Tiles/Floor/TileSet_258.asset.meta new file mode 100644 index 0000000..90184f7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_258.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20f8b70609da9be46a594a585d32e4bc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_259.asset b/Assets/04_Tiles/Floor/TileSet_259.asset new file mode 100644 index 0000000..0bd9581 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_259.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:866c904a09143717b565e6779fdbc1f28b062e54901ca5c39ee9fea55446c193 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_259.asset.meta b/Assets/04_Tiles/Floor/TileSet_259.asset.meta new file mode 100644 index 0000000..3bf9ab9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_259.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bfacea6535636d445b6e553ac63152dd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_26.asset b/Assets/04_Tiles/Floor/TileSet_26.asset new file mode 100644 index 0000000..1f09955 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_26.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8daa70b34705c3dd5a1faa02df487fa7719a2cc6b555e2566fae23879432cd16 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_26.asset.meta b/Assets/04_Tiles/Floor/TileSet_26.asset.meta new file mode 100644 index 0000000..edc72b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_26.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e336a4836532634a90fa2db47f5a6da +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_260.asset b/Assets/04_Tiles/Floor/TileSet_260.asset new file mode 100644 index 0000000..b395e95 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_260.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e433c7d54cd5ff25afabcf408f5b412d3d3e5c2698e83820c852a6d7f9f6871 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_260.asset.meta b/Assets/04_Tiles/Floor/TileSet_260.asset.meta new file mode 100644 index 0000000..ad34a62 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_260.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dcd3d6f9d5eb66c41b56bb51fe3cca75 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_261.asset b/Assets/04_Tiles/Floor/TileSet_261.asset new file mode 100644 index 0000000..5aaded1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_261.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d19b5bbea7111e92247679d4b610c63f1497f7d08cff155dd21e17fcf4fb71b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_261.asset.meta b/Assets/04_Tiles/Floor/TileSet_261.asset.meta new file mode 100644 index 0000000..453a486 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_261.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9466919967114a47817e975c9cd220e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_262.asset b/Assets/04_Tiles/Floor/TileSet_262.asset new file mode 100644 index 0000000..9ae96c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_262.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09c810012a918cebe76e288a95d5920622a6138a63b837d21d462da94729e567 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_262.asset.meta b/Assets/04_Tiles/Floor/TileSet_262.asset.meta new file mode 100644 index 0000000..459aa20 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_262.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 673def3a3887e5f43b4fd839e160767b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_263.asset b/Assets/04_Tiles/Floor/TileSet_263.asset new file mode 100644 index 0000000..363c1aa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_263.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9f3513d0842b6182d2157af8b80b198b9982dea645d91b8ec59c359606ce2a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_263.asset.meta b/Assets/04_Tiles/Floor/TileSet_263.asset.meta new file mode 100644 index 0000000..a5e1651 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_263.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1b8918a4500ec444b19b1b573b5abaf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_264.asset b/Assets/04_Tiles/Floor/TileSet_264.asset new file mode 100644 index 0000000..e613217 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_264.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a1ca5a25800a4472386095a58f2c4de5ac961134ddee3198bd23520c6a074fc +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_264.asset.meta b/Assets/04_Tiles/Floor/TileSet_264.asset.meta new file mode 100644 index 0000000..da38ac2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_264.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8bdb33fb084e3ec4082cd618d9489685 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_265.asset b/Assets/04_Tiles/Floor/TileSet_265.asset new file mode 100644 index 0000000..3905030 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_265.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31837887310449079666e90b5dc31f515ffab3e640dc7e98a1bc2e450dcb8380 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_265.asset.meta b/Assets/04_Tiles/Floor/TileSet_265.asset.meta new file mode 100644 index 0000000..a09b9e6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_265.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d691cc15be6dd7d41a9eb8e629527727 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_266.asset b/Assets/04_Tiles/Floor/TileSet_266.asset new file mode 100644 index 0000000..1c5ac4e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_266.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b71601f677aa92e7af933f6bcd1702ebbd0261156fe46d979d7dd5591c9eac13 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_266.asset.meta b/Assets/04_Tiles/Floor/TileSet_266.asset.meta new file mode 100644 index 0000000..5e5bd1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_266.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1040ad0b9b3a4c940af5a9ebaab21b0c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_267.asset b/Assets/04_Tiles/Floor/TileSet_267.asset new file mode 100644 index 0000000..34e2f65 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_267.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3074f1c682d7974de3d7e56c273496bbac2063266f37acfe1a388e1a8d3d01f6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_267.asset.meta b/Assets/04_Tiles/Floor/TileSet_267.asset.meta new file mode 100644 index 0000000..939f036 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_267.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e62d5e39642b50f45b43da0da47f8084 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_268.asset b/Assets/04_Tiles/Floor/TileSet_268.asset new file mode 100644 index 0000000..6043e15 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_268.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5e4d499df3b22c282ef66cd6998fb2dcb31349ee8d1c64113f0d1fbdc30793 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_268.asset.meta b/Assets/04_Tiles/Floor/TileSet_268.asset.meta new file mode 100644 index 0000000..f72ea49 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_268.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e4a84b0d6af0064c9a0b319677347d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_269.asset b/Assets/04_Tiles/Floor/TileSet_269.asset new file mode 100644 index 0000000..baac423 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_269.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30652f31a1a5b13694e4e590d2f0f2b7293dea445c6a14ce6922bf75143b57bb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_269.asset.meta b/Assets/04_Tiles/Floor/TileSet_269.asset.meta new file mode 100644 index 0000000..4334345 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_269.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85a8fc81b15471046a5f32e747eeccf2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_27.asset b/Assets/04_Tiles/Floor/TileSet_27.asset new file mode 100644 index 0000000..b560714 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_27.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51f6993416c55d0ac00d2bede9da3f4bbe89e62a720669961bb8a283da5ce103 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_27.asset.meta b/Assets/04_Tiles/Floor/TileSet_27.asset.meta new file mode 100644 index 0000000..0455868 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_27.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b6c2b9fe60b24c4a8d650f538d42169 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_270.asset b/Assets/04_Tiles/Floor/TileSet_270.asset new file mode 100644 index 0000000..b8b756e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_270.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c8bec8666ee891c300fbf115bcde8b59724740a8ccd70ad1886615ace79a4b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_270.asset.meta b/Assets/04_Tiles/Floor/TileSet_270.asset.meta new file mode 100644 index 0000000..76de33a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_270.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a784ad67a9b8f7468412bb8e6b1da82 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_271.asset b/Assets/04_Tiles/Floor/TileSet_271.asset new file mode 100644 index 0000000..3cf7e65 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_271.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06c0a72ed6495ff31b2c3f425be13a74fd348999bb27fc75b4ff81b4451a62ac +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_271.asset.meta b/Assets/04_Tiles/Floor/TileSet_271.asset.meta new file mode 100644 index 0000000..84642a3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_271.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2baf21a7ddfe5d245a8a8108d9da8a3e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_272.asset b/Assets/04_Tiles/Floor/TileSet_272.asset new file mode 100644 index 0000000..5e8518a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_272.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:381d48499431752fd04436bb3caad78c2a5bb28284648e607fbbf8620a5a2b3b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_272.asset.meta b/Assets/04_Tiles/Floor/TileSet_272.asset.meta new file mode 100644 index 0000000..8dafdf5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_272.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e7ddd148b70fd00408cacad32971e65f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_273.asset b/Assets/04_Tiles/Floor/TileSet_273.asset new file mode 100644 index 0000000..a4637d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_273.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b545da7cae32a7fe166a85fe80cd32ebd8d7d14bf8d39c1b098e2a8076f824e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_273.asset.meta b/Assets/04_Tiles/Floor/TileSet_273.asset.meta new file mode 100644 index 0000000..ea0ac05 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_273.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccb3bca5a5cb41d4393832c5dd9592e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_274.asset b/Assets/04_Tiles/Floor/TileSet_274.asset new file mode 100644 index 0000000..6c6b350 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_274.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b459b2b45cd2a25bf12b55454dee7d6a8455ae79ef6e1641d4fe80484912a1f5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_274.asset.meta b/Assets/04_Tiles/Floor/TileSet_274.asset.meta new file mode 100644 index 0000000..13745e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_274.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 229b78e1d4bd85248a0edb25259a1183 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_275.asset b/Assets/04_Tiles/Floor/TileSet_275.asset new file mode 100644 index 0000000..5eb1e0d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_275.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2ca844879060ff30ea2a3dcd08fea04ba2c65c58dbb428d5bcb6ef59953640e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_275.asset.meta b/Assets/04_Tiles/Floor/TileSet_275.asset.meta new file mode 100644 index 0000000..1261a1d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_275.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c5bdf61899f83841b2a28a1c69703c5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_276.asset b/Assets/04_Tiles/Floor/TileSet_276.asset new file mode 100644 index 0000000..4412f71 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_276.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe6a12bc7e7cecdd908dd5564fb1b6180cd62380bf5b77604260d0116972e13c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_276.asset.meta b/Assets/04_Tiles/Floor/TileSet_276.asset.meta new file mode 100644 index 0000000..e28d5f3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_276.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2525550e79aeaf14389b6316d88d493b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_277.asset b/Assets/04_Tiles/Floor/TileSet_277.asset new file mode 100644 index 0000000..f27b9d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_277.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7045af55f7f6a9b40540645e86b8fc175ef59ad93bf91b832e1d2a3442980f21 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_277.asset.meta b/Assets/04_Tiles/Floor/TileSet_277.asset.meta new file mode 100644 index 0000000..46183f8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_277.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5f326c9a5b416c45a106f4e6c5142fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_278.asset b/Assets/04_Tiles/Floor/TileSet_278.asset new file mode 100644 index 0000000..e0c4dce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_278.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6be4464f14ace827e6180a8904a21a8c6dc0412b6a73f66c2f968589f4bc97 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_278.asset.meta b/Assets/04_Tiles/Floor/TileSet_278.asset.meta new file mode 100644 index 0000000..475da67 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_278.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e32fa0b840625844da8b2dd040cb8880 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_279.asset b/Assets/04_Tiles/Floor/TileSet_279.asset new file mode 100644 index 0000000..4336c42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_279.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63dbd5998f5428c2a2d127e35e77671bccb7b62bedff99e0e8f2db190e9f6042 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_279.asset.meta b/Assets/04_Tiles/Floor/TileSet_279.asset.meta new file mode 100644 index 0000000..e8233c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_279.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a47c1b8fa55ef240aefcc5c9a0e7720 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_28.asset b/Assets/04_Tiles/Floor/TileSet_28.asset new file mode 100644 index 0000000..db06dd4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_28.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32a99861d47937b67b8b263f003f6feacc9ea3cbe9dbdd15dafd4b3a74cca3ac +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_28.asset.meta b/Assets/04_Tiles/Floor/TileSet_28.asset.meta new file mode 100644 index 0000000..36129d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_28.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ecce55dc1f162e540a207bebd23a52c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_280.asset b/Assets/04_Tiles/Floor/TileSet_280.asset new file mode 100644 index 0000000..0cd00b7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_280.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec3db90f3d3c5ef2e88f7d245c3eeb09d3d22614ae8368fcf9af980405f16cf +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_280.asset.meta b/Assets/04_Tiles/Floor/TileSet_280.asset.meta new file mode 100644 index 0000000..300cd11 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_280.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5936f3e61c1b4a649b52a465aad1c6c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_281.asset b/Assets/04_Tiles/Floor/TileSet_281.asset new file mode 100644 index 0000000..64a2dcc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_281.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52f0524c8b609e1e7fa1fc48931712037d37155db14bde7da59ae00b50c452e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_281.asset.meta b/Assets/04_Tiles/Floor/TileSet_281.asset.meta new file mode 100644 index 0000000..9440020 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_281.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5265575dc584a8e47a6bc7114c9a3e47 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_282.asset b/Assets/04_Tiles/Floor/TileSet_282.asset new file mode 100644 index 0000000..ecd99b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_282.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85f8f1f4d53028be417fe61ae6c0b76926f288cb36130318ee1665ae2bc24044 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_282.asset.meta b/Assets/04_Tiles/Floor/TileSet_282.asset.meta new file mode 100644 index 0000000..805fe95 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_282.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1acfd9a9c8493a04aa5bba65d659a4a8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_283.asset b/Assets/04_Tiles/Floor/TileSet_283.asset new file mode 100644 index 0000000..87d6af2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_283.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d01c9d9e7bf85d32c95950dcd9ba0db19d96b475f2814d639c3519575d66ec77 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_283.asset.meta b/Assets/04_Tiles/Floor/TileSet_283.asset.meta new file mode 100644 index 0000000..b840605 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_283.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea02b507a4a6a334da74a77779f11e4b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_284.asset b/Assets/04_Tiles/Floor/TileSet_284.asset new file mode 100644 index 0000000..d9d90c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_284.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e75d3658600c70067d74ba150c9980fde7456cbb4d81097d968b6507e9b67bed +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_284.asset.meta b/Assets/04_Tiles/Floor/TileSet_284.asset.meta new file mode 100644 index 0000000..faca50e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_284.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb8af57f809a9a4439aefdc7543092d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_285.asset b/Assets/04_Tiles/Floor/TileSet_285.asset new file mode 100644 index 0000000..7fafff2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_285.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c64afa9aae4b9e73cbe06176fa018573ce9beceb76ba6d83e72cf3e90bb76c7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_285.asset.meta b/Assets/04_Tiles/Floor/TileSet_285.asset.meta new file mode 100644 index 0000000..447823f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_285.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9d4c6e6e7bf3bf489017385debcc9d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_286.asset b/Assets/04_Tiles/Floor/TileSet_286.asset new file mode 100644 index 0000000..942e306 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_286.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af18b4b00f14cb18680beb1b3467408a131198d9842752f953c3283160b95780 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_286.asset.meta b/Assets/04_Tiles/Floor/TileSet_286.asset.meta new file mode 100644 index 0000000..0a05ded --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_286.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 847e895f2f10b2e49aaa7f8bba20128a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_287.asset b/Assets/04_Tiles/Floor/TileSet_287.asset new file mode 100644 index 0000000..0b5c03a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_287.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7197248df9852a07e69f35b9735a31b418de6f3dd67923357874bafce2de26ad +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_287.asset.meta b/Assets/04_Tiles/Floor/TileSet_287.asset.meta new file mode 100644 index 0000000..8862517 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_287.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 868fecd1b86ed4d4bab05e5009ed4467 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_288.asset b/Assets/04_Tiles/Floor/TileSet_288.asset new file mode 100644 index 0000000..02c85cb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_288.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad02cbe0f12351b8f2b15962fa10e518612108747897a51cfe1a3bbb511f8bbf +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_288.asset.meta b/Assets/04_Tiles/Floor/TileSet_288.asset.meta new file mode 100644 index 0000000..96c34d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_288.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4199ae0730169744a9eaa599e37108af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_289.asset b/Assets/04_Tiles/Floor/TileSet_289.asset new file mode 100644 index 0000000..1763dcf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_289.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c771307ec922e194794e2271b2bedde4cfeabbe2720f8c316db6fe935e45268 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_289.asset.meta b/Assets/04_Tiles/Floor/TileSet_289.asset.meta new file mode 100644 index 0000000..fafe598 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_289.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75c0835696500e34ab3f22ae13a05711 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_29.asset b/Assets/04_Tiles/Floor/TileSet_29.asset new file mode 100644 index 0000000..47abe88 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_29.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12eec5707ef55d5bef32d55e6fc7b6833e16fe80d2c3260e7f3f002be7dfb9cb +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_29.asset.meta b/Assets/04_Tiles/Floor/TileSet_29.asset.meta new file mode 100644 index 0000000..062b69a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_29.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 799f6846a30fece44add0dc6e05029a4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_290.asset b/Assets/04_Tiles/Floor/TileSet_290.asset new file mode 100644 index 0000000..204dfd6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_290.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ccc001ddddce6e7262b837c5ff2876135cf8f531cdfe87f59eed9a9ca7e4240 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_290.asset.meta b/Assets/04_Tiles/Floor/TileSet_290.asset.meta new file mode 100644 index 0000000..066000c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_290.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f9e9503d42143f24191c4e93df59c026 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_291.asset b/Assets/04_Tiles/Floor/TileSet_291.asset new file mode 100644 index 0000000..f580c28 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_291.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b185102a39e9373304652466bd8234b9926e83893b7e0c6664b7b8d757140745 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_291.asset.meta b/Assets/04_Tiles/Floor/TileSet_291.asset.meta new file mode 100644 index 0000000..eef5f48 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_291.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f892a4ac82350ba4daf6643638eea35c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_292.asset b/Assets/04_Tiles/Floor/TileSet_292.asset new file mode 100644 index 0000000..2929ffb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_292.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d56201b52a6535e18cf012199d6738cbb63098b759968c4881fb3fa4ef4a3455 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_292.asset.meta b/Assets/04_Tiles/Floor/TileSet_292.asset.meta new file mode 100644 index 0000000..d773a1d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_292.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f4f2c51dc0cc5245abe9d8bfdeb0aae +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_293.asset b/Assets/04_Tiles/Floor/TileSet_293.asset new file mode 100644 index 0000000..a84e568 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_293.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:603d2111639cfe5cca70f0b5521a916c50a25caced40caf897534539a4d3a56e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_293.asset.meta b/Assets/04_Tiles/Floor/TileSet_293.asset.meta new file mode 100644 index 0000000..5c0e147 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_293.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6de5e9e24daa11945a7bd054c9e7b646 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_294.asset b/Assets/04_Tiles/Floor/TileSet_294.asset new file mode 100644 index 0000000..06aab93 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_294.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387d685466eeb291b488d9a733de0e50d999f837a42c05cb66455b78a65decb7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_294.asset.meta b/Assets/04_Tiles/Floor/TileSet_294.asset.meta new file mode 100644 index 0000000..163cfa5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_294.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd6adbd5825bad54bae9e0febd6e683e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_295.asset b/Assets/04_Tiles/Floor/TileSet_295.asset new file mode 100644 index 0000000..ae72d98 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_295.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:399332968f71f1df030edd9277e208108d5163ceb46574b615ab1a0db7ef8e64 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_295.asset.meta b/Assets/04_Tiles/Floor/TileSet_295.asset.meta new file mode 100644 index 0000000..63ba859 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_295.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fead9a686f7297f4c81f3efcf6907657 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_296.asset b/Assets/04_Tiles/Floor/TileSet_296.asset new file mode 100644 index 0000000..0b06655 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_296.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c979eb66c3b36d23cc5cf5d7fb8266db6a6f7d024cc074cc4b05d25df0a97b4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_296.asset.meta b/Assets/04_Tiles/Floor/TileSet_296.asset.meta new file mode 100644 index 0000000..792137a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_296.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b7920c09ad23b247998729ae5304b50 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_297.asset b/Assets/04_Tiles/Floor/TileSet_297.asset new file mode 100644 index 0000000..58d9dd5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_297.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0e14fc26619bb9a5b6969f9fb6fa5234fa8d3a9137d7ae47ef7073ce82f00d7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_297.asset.meta b/Assets/04_Tiles/Floor/TileSet_297.asset.meta new file mode 100644 index 0000000..f47fdc0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_297.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12346b7b898d84c4093a2a0e3c8e83df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_298.asset b/Assets/04_Tiles/Floor/TileSet_298.asset new file mode 100644 index 0000000..b15a370 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_298.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9be953f57c4bb3e86e05395b425e7cc45715fb4a125b8e340d176e9f92b14808 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_298.asset.meta b/Assets/04_Tiles/Floor/TileSet_298.asset.meta new file mode 100644 index 0000000..1e6d651 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_298.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 441bdd41acecac04f8da3a6b898c4a4f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_299.asset b/Assets/04_Tiles/Floor/TileSet_299.asset new file mode 100644 index 0000000..784b570 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_299.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80e74fc3a14f668b7a3366bd1e1f5abd0ad14e8ce1bac459ebdd4a2efa96ec7b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_299.asset.meta b/Assets/04_Tiles/Floor/TileSet_299.asset.meta new file mode 100644 index 0000000..1536368 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_299.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bdfdc341dc520749ae3becdad1e7c4f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_3.asset b/Assets/04_Tiles/Floor/TileSet_3.asset new file mode 100644 index 0000000..db83e2a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_3.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ced9e41735aef77465f537a9c402d9bd9e9786a816add1fb9373b7903d3bffd +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_3.asset.meta b/Assets/04_Tiles/Floor/TileSet_3.asset.meta new file mode 100644 index 0000000..b64c1c3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_3.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b63b6277aca77f34ab67a5d427cacca2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_30.asset b/Assets/04_Tiles/Floor/TileSet_30.asset new file mode 100644 index 0000000..b7fd7f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_30.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:263acdae48612b52f7732dd10c736a5ab4633a637aa4cd6b664f5444690aa7ed +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_30.asset.meta b/Assets/04_Tiles/Floor/TileSet_30.asset.meta new file mode 100644 index 0000000..ea0ef9c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_30.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 041502e6abdd1f3459918c6b9f365266 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_300.asset b/Assets/04_Tiles/Floor/TileSet_300.asset new file mode 100644 index 0000000..a227513 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_300.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf2affdc9ec166758244094f130132f09ceb3512ad9a8f3aba8e4a5381c650a0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_300.asset.meta b/Assets/04_Tiles/Floor/TileSet_300.asset.meta new file mode 100644 index 0000000..01beebd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_300.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b693a77ebcfa3d5429e53ee7c1e6c3c1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_301.asset b/Assets/04_Tiles/Floor/TileSet_301.asset new file mode 100644 index 0000000..6a3621c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_301.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cd1f879df2319abac65555776449f8d0ff0ba22992b4a0537c511b3adf98b22 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_301.asset.meta b/Assets/04_Tiles/Floor/TileSet_301.asset.meta new file mode 100644 index 0000000..8c4c061 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_301.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a4f064defd68a040a0b7d4aaeffc4f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_302.asset b/Assets/04_Tiles/Floor/TileSet_302.asset new file mode 100644 index 0000000..0b0b999 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_302.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15371b9b5b5b266e078ce5475dff262c3985194c063c14ee4c06eda90dad3233 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_302.asset.meta b/Assets/04_Tiles/Floor/TileSet_302.asset.meta new file mode 100644 index 0000000..1182020 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_302.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 459e8f8e5318a4b4696780908ccfd8c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_303.asset b/Assets/04_Tiles/Floor/TileSet_303.asset new file mode 100644 index 0000000..0d92bee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_303.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:042b6c163d51906797170076db49e8bc00283703319509deb30ed95be6e474f3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_303.asset.meta b/Assets/04_Tiles/Floor/TileSet_303.asset.meta new file mode 100644 index 0000000..9da6807 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_303.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1df8d1a589ecce4894c6a1f43dd67bc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_304.asset b/Assets/04_Tiles/Floor/TileSet_304.asset new file mode 100644 index 0000000..6951f90 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_304.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cfabcf46d5a94bdab29a932891f02d2ad4795109931ab917891705f41a22b6b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_304.asset.meta b/Assets/04_Tiles/Floor/TileSet_304.asset.meta new file mode 100644 index 0000000..27b183f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_304.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d9308eb85bfee54a89004511645d9fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_305.asset b/Assets/04_Tiles/Floor/TileSet_305.asset new file mode 100644 index 0000000..3c41e06 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_305.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae6d9c2624c95c122b457f2ddee4812fe40622c639f7590514c6fcec4ec602c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_305.asset.meta b/Assets/04_Tiles/Floor/TileSet_305.asset.meta new file mode 100644 index 0000000..0440b83 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_305.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f7190ffae9dad8448cf524c39c8e104 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_306.asset b/Assets/04_Tiles/Floor/TileSet_306.asset new file mode 100644 index 0000000..3c78d7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_306.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e09b01af920c4792dbf0f02c81f4ac53d6df644ce3e146557b6ae8098136c22e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_306.asset.meta b/Assets/04_Tiles/Floor/TileSet_306.asset.meta new file mode 100644 index 0000000..2c9bcf0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_306.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 27ffc22d9a3089542a60a9ec71aac467 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_307.asset b/Assets/04_Tiles/Floor/TileSet_307.asset new file mode 100644 index 0000000..c056e7e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_307.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c56823b6be4e85283fc2db6d14798fa53dc1a12b330214e037be9b4f4e8fb35 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_307.asset.meta b/Assets/04_Tiles/Floor/TileSet_307.asset.meta new file mode 100644 index 0000000..1b03b2f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_307.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e72eb4bd3f2f54409405112122c7bc3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_308.asset b/Assets/04_Tiles/Floor/TileSet_308.asset new file mode 100644 index 0000000..5c89762 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_308.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:906530168126d3314bf92be77d30ac80243ee76c8d15df54e2d3a7a04b754178 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_308.asset.meta b/Assets/04_Tiles/Floor/TileSet_308.asset.meta new file mode 100644 index 0000000..0ed88bd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_308.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 22f6fbefe1de58541a914524c0fd3a27 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_309.asset b/Assets/04_Tiles/Floor/TileSet_309.asset new file mode 100644 index 0000000..0b50c84 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_309.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aeb6208fc0eff0efd0f261ea0821d5a6bcbd62a1b5b42808dad90556b75d8b3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_309.asset.meta b/Assets/04_Tiles/Floor/TileSet_309.asset.meta new file mode 100644 index 0000000..3dd8d72 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_309.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3944eee6ee69cc345817a01732d10bec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_31.asset b/Assets/04_Tiles/Floor/TileSet_31.asset new file mode 100644 index 0000000..c46cd25 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_31.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c75cfd149dc0a3d6330971e74541f6bb0b26f6372f37a01334dcc9d3a766eea +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_31.asset.meta b/Assets/04_Tiles/Floor/TileSet_31.asset.meta new file mode 100644 index 0000000..23d1ea2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_31.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bd0554038a358140896412b4be896c8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_310.asset b/Assets/04_Tiles/Floor/TileSet_310.asset new file mode 100644 index 0000000..9fb0869 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_310.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9adbce936612a056ea2eb30e36290ec8b0c38d49bb1989d35858c1fba5fcef3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_310.asset.meta b/Assets/04_Tiles/Floor/TileSet_310.asset.meta new file mode 100644 index 0000000..c5461f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_310.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8a9869a7d4c8194d8ee77abb1c10f60 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_311.asset b/Assets/04_Tiles/Floor/TileSet_311.asset new file mode 100644 index 0000000..38b0fab --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_311.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ea485fa48c7d53be0ce5e1f490d496230dc15c74e0db9ef4f4632298bf75b82 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_311.asset.meta b/Assets/04_Tiles/Floor/TileSet_311.asset.meta new file mode 100644 index 0000000..7c00070 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_311.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 938441446b4222e4981af4f8209e7854 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_312.asset b/Assets/04_Tiles/Floor/TileSet_312.asset new file mode 100644 index 0000000..4805870 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_312.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483053adbc7b259421a6152a4081526112fd0fd57995bcccdda629f5391c52b3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_312.asset.meta b/Assets/04_Tiles/Floor/TileSet_312.asset.meta new file mode 100644 index 0000000..af98a70 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_312.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60f6b5514a46514499f3e69d740b7e42 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_313.asset b/Assets/04_Tiles/Floor/TileSet_313.asset new file mode 100644 index 0000000..07c28a4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_313.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64e8b7d44abb6d97702e4a37900ebc09429b076c97c2cf6ded944225434212ce +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_313.asset.meta b/Assets/04_Tiles/Floor/TileSet_313.asset.meta new file mode 100644 index 0000000..3c7a263 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_313.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80f018e57ac5a2a48942a388dc5a880d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_314.asset b/Assets/04_Tiles/Floor/TileSet_314.asset new file mode 100644 index 0000000..eb74088 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_314.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cfdcf64cf9387b544aff78e9feded1d626170bd41ca6cea7e212a9e2773459d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_314.asset.meta b/Assets/04_Tiles/Floor/TileSet_314.asset.meta new file mode 100644 index 0000000..cb8bf2f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_314.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 068ee6775b5de9d439c25b85c12bc39f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_315.asset b/Assets/04_Tiles/Floor/TileSet_315.asset new file mode 100644 index 0000000..a0a12ab --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_315.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b18da701eefcc576f790816a01426c516ae95cab9d1bb8b361d55e6f7065701a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_315.asset.meta b/Assets/04_Tiles/Floor/TileSet_315.asset.meta new file mode 100644 index 0000000..c384ccf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_315.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 48318a98f77c0bc4eb632908f6343de0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_316.asset b/Assets/04_Tiles/Floor/TileSet_316.asset new file mode 100644 index 0000000..7e01e9f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_316.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdec2cdbc4ec7ebf4d3abf4a3bb29de16716d0f3283594dcb24b4535543bb7c0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_316.asset.meta b/Assets/04_Tiles/Floor/TileSet_316.asset.meta new file mode 100644 index 0000000..2d60bff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_316.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b0475fc528d0fed4c838451e195616bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_317.asset b/Assets/04_Tiles/Floor/TileSet_317.asset new file mode 100644 index 0000000..8b11abf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_317.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ab729ab1cb948348ea1148ca065215df96a5707fc2edecd34052a40000a4d2f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_317.asset.meta b/Assets/04_Tiles/Floor/TileSet_317.asset.meta new file mode 100644 index 0000000..65e31c4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_317.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44c5087081f011345945e4e3adac2f32 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_318.asset b/Assets/04_Tiles/Floor/TileSet_318.asset new file mode 100644 index 0000000..f97e5f3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_318.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01315fed31547c69f256eda0b62abc6a9a2d9daa651668d400d242262baa73e7 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_318.asset.meta b/Assets/04_Tiles/Floor/TileSet_318.asset.meta new file mode 100644 index 0000000..3f6bed0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_318.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2fe47526565966e419b5edb6218cdb8e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_319.asset b/Assets/04_Tiles/Floor/TileSet_319.asset new file mode 100644 index 0000000..25ee109 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_319.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b26f75352f97d5af6fd4bdaa81d8579a5c9ec657b22c324211bbb6996bb620b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_319.asset.meta b/Assets/04_Tiles/Floor/TileSet_319.asset.meta new file mode 100644 index 0000000..1cbf5aa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_319.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e429f8039b5749c4ebf25f985b46b220 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_32.asset b/Assets/04_Tiles/Floor/TileSet_32.asset new file mode 100644 index 0000000..c5e17c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_32.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e1d5f4b8224dda0f19a4e61ad4534037883d2d340a54a5c2975e97c8dd56d2f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_32.asset.meta b/Assets/04_Tiles/Floor/TileSet_32.asset.meta new file mode 100644 index 0000000..c5912d4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_32.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9438a6036df0304da214d6516d6770d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_320.asset b/Assets/04_Tiles/Floor/TileSet_320.asset new file mode 100644 index 0000000..0389002 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_320.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee279ad4430c4c1c4c849cf9d86337aac7d6544ffa08775144d249c560d0d349 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_320.asset.meta b/Assets/04_Tiles/Floor/TileSet_320.asset.meta new file mode 100644 index 0000000..923a909 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_320.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b8976849490565e4481277c254602c3b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_321.asset b/Assets/04_Tiles/Floor/TileSet_321.asset new file mode 100644 index 0000000..af04168 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_321.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69e9e44f2aed6084550d155d782b471dd8a0f7e1486ec8a100a752d578a6c6d3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_321.asset.meta b/Assets/04_Tiles/Floor/TileSet_321.asset.meta new file mode 100644 index 0000000..debbbd7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_321.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21eafb545427abe409f58beb4d57b0a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_322.asset b/Assets/04_Tiles/Floor/TileSet_322.asset new file mode 100644 index 0000000..0b5a8c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_322.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0225cbd1e6c447ed1097b43a2b8c317029ed7255ce1df4afd808716121629597 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_322.asset.meta b/Assets/04_Tiles/Floor/TileSet_322.asset.meta new file mode 100644 index 0000000..b91c54e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_322.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8df274d38aeb1724686b6191f6a9f96e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_323.asset b/Assets/04_Tiles/Floor/TileSet_323.asset new file mode 100644 index 0000000..08e81f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_323.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c90d5d7702c2c0e654814038c055215f2d53032e20e383f38f8364553d31622 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_323.asset.meta b/Assets/04_Tiles/Floor/TileSet_323.asset.meta new file mode 100644 index 0000000..6d2d7d5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_323.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa218ecc6cbf93846a73ec15e3e2f280 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_324.asset b/Assets/04_Tiles/Floor/TileSet_324.asset new file mode 100644 index 0000000..2090519 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_324.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9e8889b153f663036a5b4b239e659e81705b53de889927d75771b9fe34b239e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_324.asset.meta b/Assets/04_Tiles/Floor/TileSet_324.asset.meta new file mode 100644 index 0000000..5e79cba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_324.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b1219f107ca8797478e36b29a5a055ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_325.asset b/Assets/04_Tiles/Floor/TileSet_325.asset new file mode 100644 index 0000000..16bd002 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_325.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94f3940ceefa6768049a5628a78267b5777a09d893f78b238dfa50e06a0a8e2e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_325.asset.meta b/Assets/04_Tiles/Floor/TileSet_325.asset.meta new file mode 100644 index 0000000..ffb06a2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_325.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20125b853d424d94ab3ad0a079894e20 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_326.asset b/Assets/04_Tiles/Floor/TileSet_326.asset new file mode 100644 index 0000000..8ea8dd3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_326.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:394a482ab3c635084d1d712ac66c86dbdf59a53cb55c7fc64eefe9078decf249 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_326.asset.meta b/Assets/04_Tiles/Floor/TileSet_326.asset.meta new file mode 100644 index 0000000..7fc10d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_326.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bfa37e572e1c4c14cb34be9dabd2198c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_327.asset b/Assets/04_Tiles/Floor/TileSet_327.asset new file mode 100644 index 0000000..44a0da7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_327.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f10b1bc2b0b2b67cfc5edf41735d2c0a2eaad94b4ae0f67675e8dddb7779b5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_327.asset.meta b/Assets/04_Tiles/Floor/TileSet_327.asset.meta new file mode 100644 index 0000000..9c17de5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_327.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 28144e22c53bf504fae9ab2263ce8f34 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_328.asset b/Assets/04_Tiles/Floor/TileSet_328.asset new file mode 100644 index 0000000..a974f7e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_328.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de7887a31b09c1ab7cab64031fd091bb0f8b1776bfd0a80b9a9e5e335aa4b8c7 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_328.asset.meta b/Assets/04_Tiles/Floor/TileSet_328.asset.meta new file mode 100644 index 0000000..32f7d53 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_328.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a1075f59f2881824984f31768e390ab9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_329.asset b/Assets/04_Tiles/Floor/TileSet_329.asset new file mode 100644 index 0000000..93d2609 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_329.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fdbf303fb9ce608b7b1072170b02b81e5d0f623aa7420e318cdd967489d9a21 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_329.asset.meta b/Assets/04_Tiles/Floor/TileSet_329.asset.meta new file mode 100644 index 0000000..24694f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_329.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 452feb416eae1ad42a742af5681f7064 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_33.asset b/Assets/04_Tiles/Floor/TileSet_33.asset new file mode 100644 index 0000000..603e952 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_33.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba6c0b4372f7b0306275069101231a5cef1f8b616b60ade84c93cea219018ffe +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_33.asset.meta b/Assets/04_Tiles/Floor/TileSet_33.asset.meta new file mode 100644 index 0000000..9257480 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_33.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2c60a0f11254904d9e876f7f51d4689 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_330.asset b/Assets/04_Tiles/Floor/TileSet_330.asset new file mode 100644 index 0000000..c222327 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_330.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a754def46f7dd3f91347c81f9ea502b076f5a2be667ef0447b4d48299cd2c6e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_330.asset.meta b/Assets/04_Tiles/Floor/TileSet_330.asset.meta new file mode 100644 index 0000000..54c42e6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_330.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93e157076aa2ea24f896845f5deabb99 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_331.asset b/Assets/04_Tiles/Floor/TileSet_331.asset new file mode 100644 index 0000000..26b9805 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_331.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa51eaef0c47853ff2569b3b25ee750152a7eb2695a2ec499bed48046b9cd49c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_331.asset.meta b/Assets/04_Tiles/Floor/TileSet_331.asset.meta new file mode 100644 index 0000000..3c11a53 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_331.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 00fcf2b07a392d547be9f0c575a8623a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_332.asset b/Assets/04_Tiles/Floor/TileSet_332.asset new file mode 100644 index 0000000..00b89e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_332.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c7ebb455fd974c52e7de5bc9be97033a01c93d9c879e96cb86551cf6e51c70 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_332.asset.meta b/Assets/04_Tiles/Floor/TileSet_332.asset.meta new file mode 100644 index 0000000..97f6b37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_332.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a104810fb2f5c66428e2d45368f945d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_333.asset b/Assets/04_Tiles/Floor/TileSet_333.asset new file mode 100644 index 0000000..c9cd11d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_333.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e105dd96aeab341f18b0bececc954646adbf39982e73f3495613ddff2db2617 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_333.asset.meta b/Assets/04_Tiles/Floor/TileSet_333.asset.meta new file mode 100644 index 0000000..6ff852b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_333.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cfa56d6ab46052744a265c4d78d692b8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_334.asset b/Assets/04_Tiles/Floor/TileSet_334.asset new file mode 100644 index 0000000..336cf39 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_334.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc64f7ad7acb473fdc9617d0f29cb9cb7e5b4239fee2bff0ae7e3edc20847e1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_334.asset.meta b/Assets/04_Tiles/Floor/TileSet_334.asset.meta new file mode 100644 index 0000000..4725a75 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_334.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 743958b9e76454343a852118b6fdaf9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_335.asset b/Assets/04_Tiles/Floor/TileSet_335.asset new file mode 100644 index 0000000..9a22ca3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_335.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc83f9915964eb2db0e7ee40044e4e335a17cb1eb7c15d3682011a97716083f1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_335.asset.meta b/Assets/04_Tiles/Floor/TileSet_335.asset.meta new file mode 100644 index 0000000..f565eef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_335.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3303634b179dea4780f00d84607c859 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_336.asset b/Assets/04_Tiles/Floor/TileSet_336.asset new file mode 100644 index 0000000..270f7c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_336.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f905fe897ae1bc7527e7bc157b947d61075d55ccb6c6d6017f37bca4fd3b8b2b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_336.asset.meta b/Assets/04_Tiles/Floor/TileSet_336.asset.meta new file mode 100644 index 0000000..986c4b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_336.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0f3cd17201b0964399c19374972d183 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_337.asset b/Assets/04_Tiles/Floor/TileSet_337.asset new file mode 100644 index 0000000..1183bb2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_337.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10dd2f9bd386333b13b12eabccfa85acb6ab3b0e6ed28ec880374ecfdbbfe593 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_337.asset.meta b/Assets/04_Tiles/Floor/TileSet_337.asset.meta new file mode 100644 index 0000000..90d2deb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_337.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da9054bd5e6831142906147332873d39 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_338.asset b/Assets/04_Tiles/Floor/TileSet_338.asset new file mode 100644 index 0000000..76c3c61 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_338.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30d1f0ddc24f8013837a1472dbfc782ab511de103cec175c2b7ce96e2838d5c6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_338.asset.meta b/Assets/04_Tiles/Floor/TileSet_338.asset.meta new file mode 100644 index 0000000..a171ad1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_338.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d93f0d97f6993364a86f2e7ca598238c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_339.asset b/Assets/04_Tiles/Floor/TileSet_339.asset new file mode 100644 index 0000000..2c17d12 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_339.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7162d78348e94d6970838796d2fe7f9e802d700b2221f9af0fc0e0aea8716186 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_339.asset.meta b/Assets/04_Tiles/Floor/TileSet_339.asset.meta new file mode 100644 index 0000000..21ed6d0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_339.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c888f753f196ee446bc592616bac6485 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_34.asset b/Assets/04_Tiles/Floor/TileSet_34.asset new file mode 100644 index 0000000..dacca5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_34.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fee9971002d884fffa9431c1fb5c97eebfcead8756d7acca91bc36fb9add372 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_34.asset.meta b/Assets/04_Tiles/Floor/TileSet_34.asset.meta new file mode 100644 index 0000000..644fc77 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_34.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 522971183c434c842b0234b694cfb3bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_340.asset b/Assets/04_Tiles/Floor/TileSet_340.asset new file mode 100644 index 0000000..bee20a3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_340.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b2ec9f44d1db3ef9f8957bc47b38212eafbdd401ca68847f15fac65cabf716 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_340.asset.meta b/Assets/04_Tiles/Floor/TileSet_340.asset.meta new file mode 100644 index 0000000..4ec5b81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_340.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2daac7923bcc77d4c9322f0e929a880e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_341.asset b/Assets/04_Tiles/Floor/TileSet_341.asset new file mode 100644 index 0000000..00fb302 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_341.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50d1ee1d09cb98b5477f016f148738d7b71323c34fd73c7c43493a14e034c97a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_341.asset.meta b/Assets/04_Tiles/Floor/TileSet_341.asset.meta new file mode 100644 index 0000000..5df0003 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_341.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d4a93f92d01cbe4c8af164a04409dab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_342.asset b/Assets/04_Tiles/Floor/TileSet_342.asset new file mode 100644 index 0000000..cd1bedc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_342.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffdc67dcc8761fa8fdceb8af102eda492688b5c605922c3b45ddd0d49ab519fd +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_342.asset.meta b/Assets/04_Tiles/Floor/TileSet_342.asset.meta new file mode 100644 index 0000000..5704d15 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_342.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86ce010ba56110944aa8da4e12955399 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_343.asset b/Assets/04_Tiles/Floor/TileSet_343.asset new file mode 100644 index 0000000..afb3892 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_343.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27c19211eb53f57d38091bb4bc5263976c31d3c7658674c6249e544785099876 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_343.asset.meta b/Assets/04_Tiles/Floor/TileSet_343.asset.meta new file mode 100644 index 0000000..ff18c94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_343.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dab9f05d3c9a563488b44a1c159f6a86 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_344.asset b/Assets/04_Tiles/Floor/TileSet_344.asset new file mode 100644 index 0000000..e0ecfff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_344.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7815052d1a945789c6e1bd0516b220a0d1c271bd27c1b1b081de09ea64572ff6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_344.asset.meta b/Assets/04_Tiles/Floor/TileSet_344.asset.meta new file mode 100644 index 0000000..bc21126 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_344.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed20967b7adb15e4bba9f486b2ee8f0d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_345.asset b/Assets/04_Tiles/Floor/TileSet_345.asset new file mode 100644 index 0000000..7c810eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_345.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eebcc879034430ba93ac1e899b163eaf728f537b1aa894b5e7d6e7ab1a09a051 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_345.asset.meta b/Assets/04_Tiles/Floor/TileSet_345.asset.meta new file mode 100644 index 0000000..76c594d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_345.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9d5c991947632f4eb3c271c10076af4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_346.asset b/Assets/04_Tiles/Floor/TileSet_346.asset new file mode 100644 index 0000000..f7a3b79 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_346.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d40a57e83b01a06db56a8ed634679b6000ed24be53ca6fa3953bacd880c281c2 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_346.asset.meta b/Assets/04_Tiles/Floor/TileSet_346.asset.meta new file mode 100644 index 0000000..7fcf325 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_346.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5dff350e91a30bc4896ddd0c68d72f4a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_347.asset b/Assets/04_Tiles/Floor/TileSet_347.asset new file mode 100644 index 0000000..34a9ea1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_347.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70cc61fccf2869a50c2698bb6764b616fd23b80d524a9cf66999b752a14101e2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_347.asset.meta b/Assets/04_Tiles/Floor/TileSet_347.asset.meta new file mode 100644 index 0000000..6625a0f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_347.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 43cb54d526bd3f94582bcf159a614d7f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_348.asset b/Assets/04_Tiles/Floor/TileSet_348.asset new file mode 100644 index 0000000..0637a48 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_348.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc3e53c24ace072f15b6f2cfbc799b8ad7f403cf72f1cc259e3f9b368c3dc72f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_348.asset.meta b/Assets/04_Tiles/Floor/TileSet_348.asset.meta new file mode 100644 index 0000000..f9c3b05 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_348.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5597540cd86fb9940820c69926023e72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_349.asset b/Assets/04_Tiles/Floor/TileSet_349.asset new file mode 100644 index 0000000..8f8b354 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_349.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f252a10025f6503c40418116ff7b1419dfac040f3c0289d84dc5b90b164baa0b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_349.asset.meta b/Assets/04_Tiles/Floor/TileSet_349.asset.meta new file mode 100644 index 0000000..254f3c3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_349.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57df3d34ec9678942bc8f2bb60a68506 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_35.asset b/Assets/04_Tiles/Floor/TileSet_35.asset new file mode 100644 index 0000000..3930db8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_35.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1de14c49ea3691177616b543ee38d6326abc93cab43ded0f06bb3e00499e7a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_35.asset.meta b/Assets/04_Tiles/Floor/TileSet_35.asset.meta new file mode 100644 index 0000000..4fd2ce1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_35.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c5861cb01bc0c0e479533d55341232fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_350.asset b/Assets/04_Tiles/Floor/TileSet_350.asset new file mode 100644 index 0000000..28e0178 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_350.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fba02c53294519daf8db5abee03b43ee05c84e884b9e3552c7e3130d5ccb1c0e +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_350.asset.meta b/Assets/04_Tiles/Floor/TileSet_350.asset.meta new file mode 100644 index 0000000..25657fb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_350.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cacc5808b174ad0469dca0009a388991 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_351.asset b/Assets/04_Tiles/Floor/TileSet_351.asset new file mode 100644 index 0000000..fcf2e5a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_351.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:041848f5bdf70a41687b092d2056f25f783d38a93e40a2a543c7c1ce618a53e2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_351.asset.meta b/Assets/04_Tiles/Floor/TileSet_351.asset.meta new file mode 100644 index 0000000..1976c17 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_351.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ee685c0c632af841ad4e097074af455 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_352.asset b/Assets/04_Tiles/Floor/TileSet_352.asset new file mode 100644 index 0000000..cca46fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_352.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed0046e5f80bf0589e6fac92a99086d277241b61268d651a789e42a5d284a3d +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_352.asset.meta b/Assets/04_Tiles/Floor/TileSet_352.asset.meta new file mode 100644 index 0000000..86ed128 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_352.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a854ad4b87bbb774b84a377aefbb3fb7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_353.asset b/Assets/04_Tiles/Floor/TileSet_353.asset new file mode 100644 index 0000000..ecc2887 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_353.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751f16324e6aa56f1f33fe16c9271a7b1c51373538c3fbe25b4c7b58a87f2dba +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_353.asset.meta b/Assets/04_Tiles/Floor/TileSet_353.asset.meta new file mode 100644 index 0000000..bafae9f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_353.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3929a178082455c439abbe2a4ce6d0ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_354.asset b/Assets/04_Tiles/Floor/TileSet_354.asset new file mode 100644 index 0000000..19ef530 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_354.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e34e4c198efbcddc5d7700e558ac7844620b992e304d5faef06e0d27b02618f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_354.asset.meta b/Assets/04_Tiles/Floor/TileSet_354.asset.meta new file mode 100644 index 0000000..d1a120d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_354.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b1a76189cc6bfc4eb198ffae8635d27 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_355.asset b/Assets/04_Tiles/Floor/TileSet_355.asset new file mode 100644 index 0000000..74cf2d3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_355.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8e81de6fbef931a9e0b9a1c56ee0a0b855a78089013858fecc99dcd91e193ec +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_355.asset.meta b/Assets/04_Tiles/Floor/TileSet_355.asset.meta new file mode 100644 index 0000000..c2208ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_355.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c4ce8dd935dcfe40b6eb6cf2c0ce29c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_356.asset b/Assets/04_Tiles/Floor/TileSet_356.asset new file mode 100644 index 0000000..df65bf2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_356.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e192e00063ebecf8eeea35ea7756a0327dc652c33c90d4307c542f2bbab5f136 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_356.asset.meta b/Assets/04_Tiles/Floor/TileSet_356.asset.meta new file mode 100644 index 0000000..891078d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_356.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70a72798d4daa5d47b27b77a409a71b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_357.asset b/Assets/04_Tiles/Floor/TileSet_357.asset new file mode 100644 index 0000000..ebc3b16 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_357.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea59cba4fdebf6af4da2d9d6432632ffbca493f1cb1d08ac76fcd473ead81259 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_357.asset.meta b/Assets/04_Tiles/Floor/TileSet_357.asset.meta new file mode 100644 index 0000000..10b5444 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_357.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4f225d4a7f4c8848826cce567225c44 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_358.asset b/Assets/04_Tiles/Floor/TileSet_358.asset new file mode 100644 index 0000000..cea65ca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_358.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e4a04952ea8db6f0086f0fb8d15ef046464ae51891af405e02cc0b00249a37 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_358.asset.meta b/Assets/04_Tiles/Floor/TileSet_358.asset.meta new file mode 100644 index 0000000..6ff8c2b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_358.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c49cb54db470004d939e9d98034ee30 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_359.asset b/Assets/04_Tiles/Floor/TileSet_359.asset new file mode 100644 index 0000000..5b244d9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_359.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184825a3e2a2685ef7bd0af1af75fc3d8d89fca5f001bff54488a607e3cef5a2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_359.asset.meta b/Assets/04_Tiles/Floor/TileSet_359.asset.meta new file mode 100644 index 0000000..3de10cf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_359.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f48508140bb7c7345b6636172253f9b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_36.asset b/Assets/04_Tiles/Floor/TileSet_36.asset new file mode 100644 index 0000000..300f7f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_36.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50aa9e89302dc93b88353e5a400f8529aa0adeb60b2b7eb211d369c07537d357 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_36.asset.meta b/Assets/04_Tiles/Floor/TileSet_36.asset.meta new file mode 100644 index 0000000..cdf36df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_36.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2c0b54ec14623045906db77ac0e52cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_360.asset b/Assets/04_Tiles/Floor/TileSet_360.asset new file mode 100644 index 0000000..269ecfa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_360.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0fe97dd4c8ca842bc20140dfbca603209be76d9e39164e23e7954b1a56b20d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_360.asset.meta b/Assets/04_Tiles/Floor/TileSet_360.asset.meta new file mode 100644 index 0000000..2b4210e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_360.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f67d6cbcf1cf854daad3e473d6789a3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_361.asset b/Assets/04_Tiles/Floor/TileSet_361.asset new file mode 100644 index 0000000..737c31b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_361.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4297c9c079103cae223235eb9e1d7ffe7a3012fe37e1ef7abcdb7e785dd4808c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_361.asset.meta b/Assets/04_Tiles/Floor/TileSet_361.asset.meta new file mode 100644 index 0000000..2e9e62e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_361.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f0078820adf76f499b9b275d0409022 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_362.asset b/Assets/04_Tiles/Floor/TileSet_362.asset new file mode 100644 index 0000000..6f954c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_362.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05103ee3f2dac9bb00f466b6f2034c60ea3b62d84ff7ce9b0f343748bb2b079b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_362.asset.meta b/Assets/04_Tiles/Floor/TileSet_362.asset.meta new file mode 100644 index 0000000..457b797 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_362.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb68abf2d279bd740b9735c64cc99d9e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_363.asset b/Assets/04_Tiles/Floor/TileSet_363.asset new file mode 100644 index 0000000..11d2d1d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_363.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81caaffa20f10c77a320904650b777742268800c9725163c32e177f65bb4d5a8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_363.asset.meta b/Assets/04_Tiles/Floor/TileSet_363.asset.meta new file mode 100644 index 0000000..baef229 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_363.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a8f9d57b817e9d4fa001446558e400c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_364.asset b/Assets/04_Tiles/Floor/TileSet_364.asset new file mode 100644 index 0000000..02b5b8c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_364.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07d3bc300e10a21c6bd9ba57b455defc832fd71e82f84a4531a681bfedb1f8b6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_364.asset.meta b/Assets/04_Tiles/Floor/TileSet_364.asset.meta new file mode 100644 index 0000000..dfe1bf1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_364.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50d0e9e8cdb32cf419cded58c635063f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_365.asset b/Assets/04_Tiles/Floor/TileSet_365.asset new file mode 100644 index 0000000..8edf4a2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_365.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5783a0ef54d1414c77e4c742c33fb437b66393f22570d09dc9df1ac36c5a04d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_365.asset.meta b/Assets/04_Tiles/Floor/TileSet_365.asset.meta new file mode 100644 index 0000000..75070f5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_365.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c941308f99ca214d905480cb3bcecd2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_366.asset b/Assets/04_Tiles/Floor/TileSet_366.asset new file mode 100644 index 0000000..4d02d14 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_366.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1fc460a8a1f5d4368bf3265d37368415eb96dccbebab61dd1d9ec01f06ddc78 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_366.asset.meta b/Assets/04_Tiles/Floor/TileSet_366.asset.meta new file mode 100644 index 0000000..d11ab7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_366.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e590f70e051172d43b78bacc18826a2d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_367.asset b/Assets/04_Tiles/Floor/TileSet_367.asset new file mode 100644 index 0000000..e5813b3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_367.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe906b8b85c0d50e3120ba6ff3e0e6257472aaf65f1d27325302caaa18b9a4d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_367.asset.meta b/Assets/04_Tiles/Floor/TileSet_367.asset.meta new file mode 100644 index 0000000..d01484a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_367.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e51b46b38f61b14eaba6f63a37b96f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_368.asset b/Assets/04_Tiles/Floor/TileSet_368.asset new file mode 100644 index 0000000..46d08ee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_368.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df481b649f84759c1300185d59a3824a26a74f65f28bb40692426b723cd46027 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_368.asset.meta b/Assets/04_Tiles/Floor/TileSet_368.asset.meta new file mode 100644 index 0000000..5146485 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_368.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47e5b727da35bb649abe03f935f72284 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_369.asset b/Assets/04_Tiles/Floor/TileSet_369.asset new file mode 100644 index 0000000..fd010ac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_369.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a690d4cba30f34128f35830eb47064f3ecfaefbf5b62e2513ea04d5804cd895 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_369.asset.meta b/Assets/04_Tiles/Floor/TileSet_369.asset.meta new file mode 100644 index 0000000..28bb1b8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_369.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75c5958e1edd596459b964ea49f01e06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_37.asset b/Assets/04_Tiles/Floor/TileSet_37.asset new file mode 100644 index 0000000..853894c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_37.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00c5195bdbdd277cc346c45203827f7f0d09a2ca6ce19059a62c59acc679857 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_37.asset.meta b/Assets/04_Tiles/Floor/TileSet_37.asset.meta new file mode 100644 index 0000000..a594926 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_37.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 640269e283646f14d90bcdd4ef8b6f9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_370.asset b/Assets/04_Tiles/Floor/TileSet_370.asset new file mode 100644 index 0000000..0d6af02 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_370.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c493e99125796620fc8f4b77a89269c0f4e5c3c4009571a335c435a4cfaea141 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_370.asset.meta b/Assets/04_Tiles/Floor/TileSet_370.asset.meta new file mode 100644 index 0000000..6499cd5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_370.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5f4c8a97b74acdd41bf5bcf867eeaf11 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_371.asset b/Assets/04_Tiles/Floor/TileSet_371.asset new file mode 100644 index 0000000..ebcc587 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_371.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de2ae53358f1e72f1da65af6f8364af8470f42f9fa855326a1cd308a35cf7bb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_371.asset.meta b/Assets/04_Tiles/Floor/TileSet_371.asset.meta new file mode 100644 index 0000000..e79bea6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_371.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15a99546ac1604d4d9a7ef5b49a6ae9a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_372.asset b/Assets/04_Tiles/Floor/TileSet_372.asset new file mode 100644 index 0000000..6345dac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_372.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c53693fe93ba347c052ed727909923ff51a6a6e423db1af9278dfff1cebeb9e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_372.asset.meta b/Assets/04_Tiles/Floor/TileSet_372.asset.meta new file mode 100644 index 0000000..938513e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_372.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e88ad0b8523cb4a48a915c311ce12e48 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_373.asset b/Assets/04_Tiles/Floor/TileSet_373.asset new file mode 100644 index 0000000..d4e5fb2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_373.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67501e402e48a0e1a2f3ca5addd8727b051ff9a4c36067f092169fbbcdcc7d26 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_373.asset.meta b/Assets/04_Tiles/Floor/TileSet_373.asset.meta new file mode 100644 index 0000000..14047a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_373.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c5b9ea796dccbf47b1ceb9a572693de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_374.asset b/Assets/04_Tiles/Floor/TileSet_374.asset new file mode 100644 index 0000000..bfdc54b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_374.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c409919da58c6e1d1c3bf67e61e97735da4c9acc446bcd29166eb882429e385 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_374.asset.meta b/Assets/04_Tiles/Floor/TileSet_374.asset.meta new file mode 100644 index 0000000..a4e4c05 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_374.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3636105634cb1cb448dc2469c3fe5c02 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_375.asset b/Assets/04_Tiles/Floor/TileSet_375.asset new file mode 100644 index 0000000..76eeb4f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_375.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f16f36ee3ded48fe7330d67825aea78ff544eb636d03319d48c5596dd39dda29 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_375.asset.meta b/Assets/04_Tiles/Floor/TileSet_375.asset.meta new file mode 100644 index 0000000..624f0ec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_375.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f0de792991d75e418c158f4cf824ffe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_376.asset b/Assets/04_Tiles/Floor/TileSet_376.asset new file mode 100644 index 0000000..f5d007c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_376.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb4dac3420bbf897b6f4d3415e2056155b4fadc64bcb228e8ed95c232740db88 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_376.asset.meta b/Assets/04_Tiles/Floor/TileSet_376.asset.meta new file mode 100644 index 0000000..41a356c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_376.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a840039f524d684abeacd53c29d403f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_377.asset b/Assets/04_Tiles/Floor/TileSet_377.asset new file mode 100644 index 0000000..2b1ebe1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_377.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbb1ce22a761ca0854cbf774817557fddd5b1f2080240b34a4cdbf4fcc9ac9b4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_377.asset.meta b/Assets/04_Tiles/Floor/TileSet_377.asset.meta new file mode 100644 index 0000000..8dd2479 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_377.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 59414989d42ef5c4cb8f0a90ac9eab5b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_378.asset b/Assets/04_Tiles/Floor/TileSet_378.asset new file mode 100644 index 0000000..df0eb32 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_378.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0901e7794c4c15bd027cbe1548691d01b6c780008a0ecef9a01d6d63215448b8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_378.asset.meta b/Assets/04_Tiles/Floor/TileSet_378.asset.meta new file mode 100644 index 0000000..c654d1d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_378.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 03805fb3ee543374481febfb81a933b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_379.asset b/Assets/04_Tiles/Floor/TileSet_379.asset new file mode 100644 index 0000000..88b494a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_379.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d102e446a84ab94bb5bde7621590372d9d6989929dcc5a8257f3ae5824be760 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_379.asset.meta b/Assets/04_Tiles/Floor/TileSet_379.asset.meta new file mode 100644 index 0000000..5bcb46e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_379.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 685c9ac3330feed43954e50da5fbf846 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_38.asset b/Assets/04_Tiles/Floor/TileSet_38.asset new file mode 100644 index 0000000..f96a265 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_38.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06f7eb710cdf282059d07a453d89122266c88ae2f76e9081453f8078b193e153 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_38.asset.meta b/Assets/04_Tiles/Floor/TileSet_38.asset.meta new file mode 100644 index 0000000..99bcccc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_38.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 931c02d420d5dff4280b45bf04b76702 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_380.asset b/Assets/04_Tiles/Floor/TileSet_380.asset new file mode 100644 index 0000000..2c88d51 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_380.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a64084c6eea61cafb012a192f14d72a9c1647b9cc6ca13c51daa1d13419efd0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_380.asset.meta b/Assets/04_Tiles/Floor/TileSet_380.asset.meta new file mode 100644 index 0000000..d0fad6f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_380.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14249eba263395347b5d19a4e8cab827 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_381.asset b/Assets/04_Tiles/Floor/TileSet_381.asset new file mode 100644 index 0000000..5033b8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_381.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fb3716d2d86c43222ba258f61298ebc86bdcbf895c9a60e58d0c810be430854 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_381.asset.meta b/Assets/04_Tiles/Floor/TileSet_381.asset.meta new file mode 100644 index 0000000..f9b5e03 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_381.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 54bf702f05993a941a2f0ffba0e44518 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_382.asset b/Assets/04_Tiles/Floor/TileSet_382.asset new file mode 100644 index 0000000..af80f4b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_382.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81ae9b074979893db5a3bc0f71677970a4d27c0e6f96acdd0ac2c0383e7e5a3c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_382.asset.meta b/Assets/04_Tiles/Floor/TileSet_382.asset.meta new file mode 100644 index 0000000..66f22bf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_382.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08296bc410db58b41b23ce99ad75f5e4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_383.asset b/Assets/04_Tiles/Floor/TileSet_383.asset new file mode 100644 index 0000000..e7b9f56 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_383.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9599360114fc4e1cbfa66f60a474cb6d681c3714e5f932aeac28ca6b61a36721 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_383.asset.meta b/Assets/04_Tiles/Floor/TileSet_383.asset.meta new file mode 100644 index 0000000..e677ecb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_383.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5b083e461dab3034baf36985f86d9865 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_384.asset b/Assets/04_Tiles/Floor/TileSet_384.asset new file mode 100644 index 0000000..c4fab68 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_384.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb2a21126dbffc3029ce4c1302979c2e9ec9527613b79f8cf289903935bfb8b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_384.asset.meta b/Assets/04_Tiles/Floor/TileSet_384.asset.meta new file mode 100644 index 0000000..1f8e45e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_384.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 69515d0a4fac28242b0d14e52706098e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_385.asset b/Assets/04_Tiles/Floor/TileSet_385.asset new file mode 100644 index 0000000..2f61543 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_385.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1101643e12322a4d7f55bcd15674c513eafd9177e574d75af37f2d60421ac876 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_385.asset.meta b/Assets/04_Tiles/Floor/TileSet_385.asset.meta new file mode 100644 index 0000000..875c586 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_385.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a527fa0fbbf0b54693ea7a059c1bdac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_386.asset b/Assets/04_Tiles/Floor/TileSet_386.asset new file mode 100644 index 0000000..1f3cd8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_386.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29f6bd615f623c7a470c7e805fe1667511d4ca00434fd40274555da39e13fdda +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_386.asset.meta b/Assets/04_Tiles/Floor/TileSet_386.asset.meta new file mode 100644 index 0000000..b0ac648 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_386.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d39c1509b72f8f549b14db4072b94b58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_387.asset b/Assets/04_Tiles/Floor/TileSet_387.asset new file mode 100644 index 0000000..44553f5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_387.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5269a93f2f5ce57e1ea7ec4907eaa0ed6e0ce1ab0bbde1fb217c793a24cbe90c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_387.asset.meta b/Assets/04_Tiles/Floor/TileSet_387.asset.meta new file mode 100644 index 0000000..afef9e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_387.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1e6f3f611fbdb14488dd89346f4c2d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_388.asset b/Assets/04_Tiles/Floor/TileSet_388.asset new file mode 100644 index 0000000..43d06c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_388.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:006fd8d9ea43713cc55ad7d207eeb7f9791b87ebb85ce60bd88d6b4f4de79aee +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_388.asset.meta b/Assets/04_Tiles/Floor/TileSet_388.asset.meta new file mode 100644 index 0000000..ee9daca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_388.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 314fe6c1a7ff75340a96261fa87e2d8e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_389.asset b/Assets/04_Tiles/Floor/TileSet_389.asset new file mode 100644 index 0000000..36509d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_389.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2fe27c04dbdf93cc189aa082b275d9eed4304cd77da335da1ed408427698b19 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_389.asset.meta b/Assets/04_Tiles/Floor/TileSet_389.asset.meta new file mode 100644 index 0000000..c8697c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_389.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e4731bad6d7c57b479614b8edc079eff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_39.asset b/Assets/04_Tiles/Floor/TileSet_39.asset new file mode 100644 index 0000000..3a3b5bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_39.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1325758646fccae53ee445169099168f3760cc31d7d6578dd2aedb32e28a83c6 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_39.asset.meta b/Assets/04_Tiles/Floor/TileSet_39.asset.meta new file mode 100644 index 0000000..ec5fb14 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_39.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 934a39f319b746944b02306b1f07dfbf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_390.asset b/Assets/04_Tiles/Floor/TileSet_390.asset new file mode 100644 index 0000000..e7b141f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_390.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ffdc81acef80324a14dcf1e8189977360bbbcbb993509cd2a234fa8855537b9 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_390.asset.meta b/Assets/04_Tiles/Floor/TileSet_390.asset.meta new file mode 100644 index 0000000..8698bcc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_390.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e38abcb8e8de2e74298f3d4d4fe48992 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_391.asset b/Assets/04_Tiles/Floor/TileSet_391.asset new file mode 100644 index 0000000..78adae1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_391.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3550ac6b5c5d8f2d2b93a906c7bf50830a72f2401ed4482d6f4bd0c0d006747 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_391.asset.meta b/Assets/04_Tiles/Floor/TileSet_391.asset.meta new file mode 100644 index 0000000..08e4cf9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_391.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a664e135c7ddda4e9c0dc4071053d83 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_392.asset b/Assets/04_Tiles/Floor/TileSet_392.asset new file mode 100644 index 0000000..31653a4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_392.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53a182f54583e2919f2bdfe780e831f90a8176998fb35033331ab702f9154ca5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_392.asset.meta b/Assets/04_Tiles/Floor/TileSet_392.asset.meta new file mode 100644 index 0000000..20d4fed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_392.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b83f12494b080244cb1070c6415e5675 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_393.asset b/Assets/04_Tiles/Floor/TileSet_393.asset new file mode 100644 index 0000000..1e7c737 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_393.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:688fe44ce5de0c0e8d0226f402210fb7bd50c07a4676f96f505b00f2186db2ec +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_393.asset.meta b/Assets/04_Tiles/Floor/TileSet_393.asset.meta new file mode 100644 index 0000000..ffeb947 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_393.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 782cda64a4374d84a9c5811adbeb89ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_394.asset b/Assets/04_Tiles/Floor/TileSet_394.asset new file mode 100644 index 0000000..7040505 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_394.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d986d90edb553272f36ca3d4b11afb2429cf07bbac46b287602d9af62c9206e5 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_394.asset.meta b/Assets/04_Tiles/Floor/TileSet_394.asset.meta new file mode 100644 index 0000000..e4470ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_394.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e8c3eaf723c46049b1e82b3a5dfa857 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_395.asset b/Assets/04_Tiles/Floor/TileSet_395.asset new file mode 100644 index 0000000..45956d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_395.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:751acb57da03861ee48f75455be83f567f85aa013fa8653e28de052e01d13099 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_395.asset.meta b/Assets/04_Tiles/Floor/TileSet_395.asset.meta new file mode 100644 index 0000000..1265c74 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_395.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f327b48fe4c0144499b72606ca9b8257 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_396.asset b/Assets/04_Tiles/Floor/TileSet_396.asset new file mode 100644 index 0000000..c806a70 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_396.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527f2eabf163798490f9747a2e39704757c5ceace782dcc78e30310cf7faf9b4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_396.asset.meta b/Assets/04_Tiles/Floor/TileSet_396.asset.meta new file mode 100644 index 0000000..7a85d58 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_396.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e15fcb5971bcc54db4429d794476431 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_397.asset b/Assets/04_Tiles/Floor/TileSet_397.asset new file mode 100644 index 0000000..b86c4ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_397.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea496e539fbb2276edcd202c8941003bce71cd7d97a6d5b8fabda6dc5514bf4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_397.asset.meta b/Assets/04_Tiles/Floor/TileSet_397.asset.meta new file mode 100644 index 0000000..4ed1570 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_397.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8cc32c64b5557b14e8ef79c5838ef471 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_398.asset b/Assets/04_Tiles/Floor/TileSet_398.asset new file mode 100644 index 0000000..e5154e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_398.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41f329fe28d1d30fc0dafef8579ddcd9123a4d670cb33f0426828bc09a9aeccb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_398.asset.meta b/Assets/04_Tiles/Floor/TileSet_398.asset.meta new file mode 100644 index 0000000..fa52a6c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_398.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6cf65c5a3882b604cb6cd5c2b4d13f76 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_399.asset b/Assets/04_Tiles/Floor/TileSet_399.asset new file mode 100644 index 0000000..21430e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_399.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da0ed2578242fb5276b261e07ef62de627b34976813cd105358a3ba68d0150d2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_399.asset.meta b/Assets/04_Tiles/Floor/TileSet_399.asset.meta new file mode 100644 index 0000000..23dead4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_399.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ebe4c54e86798d499da2d8698f5412d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_4.asset b/Assets/04_Tiles/Floor/TileSet_4.asset new file mode 100644 index 0000000..a746f16 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_4.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45092dad053551cb66cd62d244317f580dd49d4264dc36be40fa82a58da4fcc1 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_4.asset.meta b/Assets/04_Tiles/Floor/TileSet_4.asset.meta new file mode 100644 index 0000000..6092d10 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_4.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cdbe5afb5e536de4eb236935be55a9a5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_40.asset b/Assets/04_Tiles/Floor/TileSet_40.asset new file mode 100644 index 0000000..920da95 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_40.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9699e6b8f04e59b9b8539213d0a6cb242c5e5a60e6caa958bd8d342697435fbe +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_40.asset.meta b/Assets/04_Tiles/Floor/TileSet_40.asset.meta new file mode 100644 index 0000000..994848f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_40.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a16fc835225bd5418e2fcf28c3320ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_400.asset b/Assets/04_Tiles/Floor/TileSet_400.asset new file mode 100644 index 0000000..c545043 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_400.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7c9d2c89d124232322b31cdec960daa17ed87b6236caf17b5bfd322e3c3d66e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_400.asset.meta b/Assets/04_Tiles/Floor/TileSet_400.asset.meta new file mode 100644 index 0000000..def7144 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_400.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a2af38683c9090b409cab3844d13cb7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_401.asset b/Assets/04_Tiles/Floor/TileSet_401.asset new file mode 100644 index 0000000..800589d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_401.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c710e2c2eff158e70e1ea5696873fc006feff46b737c029481bb9aa9cd2512de +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_401.asset.meta b/Assets/04_Tiles/Floor/TileSet_401.asset.meta new file mode 100644 index 0000000..7512dfc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_401.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ae6f055039d3fe49871d6aede9df7f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_402.asset b/Assets/04_Tiles/Floor/TileSet_402.asset new file mode 100644 index 0000000..8eb5278 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_402.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff470a6d60dd37c18853ba0dd94b27c59f79758d4815441a7b8895a88ca6156f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_402.asset.meta b/Assets/04_Tiles/Floor/TileSet_402.asset.meta new file mode 100644 index 0000000..1b2b0f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_402.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c7369facf5f612e4bb52b029b47f329d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_403.asset b/Assets/04_Tiles/Floor/TileSet_403.asset new file mode 100644 index 0000000..9ea4fee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_403.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55728690d8530ee77e093195636838e3617d2f06b0dc0fa87d5c49b61425e0c5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_403.asset.meta b/Assets/04_Tiles/Floor/TileSet_403.asset.meta new file mode 100644 index 0000000..7502e8a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_403.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 943fc7b372a94404c8ddd6502cbd50bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_404.asset b/Assets/04_Tiles/Floor/TileSet_404.asset new file mode 100644 index 0000000..7e2d050 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_404.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d2ec96490c1146d45860e0f40b4bee3f1a9c2f79ad7bc347e1f6ae91b7c407 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_404.asset.meta b/Assets/04_Tiles/Floor/TileSet_404.asset.meta new file mode 100644 index 0000000..e1e9fc0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_404.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bced78710f1cac84ebfe2650c4617016 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_405.asset b/Assets/04_Tiles/Floor/TileSet_405.asset new file mode 100644 index 0000000..12ed0a7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_405.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e450e1fbc8e70f3c3dc74ee0d956a7e6017a5bc4d76b295afd14ad0c49642ae +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_405.asset.meta b/Assets/04_Tiles/Floor/TileSet_405.asset.meta new file mode 100644 index 0000000..34f0f37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_405.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8de7088080d1d394d8c53050ea764c2a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_406.asset b/Assets/04_Tiles/Floor/TileSet_406.asset new file mode 100644 index 0000000..7ae9709 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_406.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8838ca3699cbe942193adda64f21e6ba61de4316ae2a5c29edf3adaedb654be5 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_406.asset.meta b/Assets/04_Tiles/Floor/TileSet_406.asset.meta new file mode 100644 index 0000000..ea66799 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_406.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be05d8abb843710459c6a1370bc9124d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_407.asset b/Assets/04_Tiles/Floor/TileSet_407.asset new file mode 100644 index 0000000..98bdc5e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_407.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:027bc92158341cf187cf7c5cf7daa4d0e4cd59d9a459fe06e5400a780c19745a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_407.asset.meta b/Assets/04_Tiles/Floor/TileSet_407.asset.meta new file mode 100644 index 0000000..5f3ff91 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_407.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f5fb1cab4c688144b2ae8d4b0c38ede +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_408.asset b/Assets/04_Tiles/Floor/TileSet_408.asset new file mode 100644 index 0000000..435401b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_408.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130227dc3ca5006b2639703727fb88a0a86e56190dc896fd432ea5d9685254ee +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_408.asset.meta b/Assets/04_Tiles/Floor/TileSet_408.asset.meta new file mode 100644 index 0000000..146d8a3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_408.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fcdcc494b380bb0449950bfe824bbddf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_409.asset b/Assets/04_Tiles/Floor/TileSet_409.asset new file mode 100644 index 0000000..d77efbe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_409.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e70c8c69274fa3cb212537e7c0afd2a122aaa6f614483f7ab1275cc1b26f9c53 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_409.asset.meta b/Assets/04_Tiles/Floor/TileSet_409.asset.meta new file mode 100644 index 0000000..6fd2dbf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_409.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 583ff0daff176fe46a3c6ecd0fd81883 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_41.asset b/Assets/04_Tiles/Floor/TileSet_41.asset new file mode 100644 index 0000000..aef6b38 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_41.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:069091810c8bb0db226d89116475237babf641653e89b1335c2e5f0b0ad54040 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_41.asset.meta b/Assets/04_Tiles/Floor/TileSet_41.asset.meta new file mode 100644 index 0000000..5e2c415 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_41.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: be98bd7d708b7f643a52232b99a9765d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_410.asset b/Assets/04_Tiles/Floor/TileSet_410.asset new file mode 100644 index 0000000..29ab504 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_410.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24cc80d6e9dda280f1cba54a09bf7bf5a4d5262564537627d3252d825e2a94f6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_410.asset.meta b/Assets/04_Tiles/Floor/TileSet_410.asset.meta new file mode 100644 index 0000000..048ef27 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_410.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af7ff4a453b18fa42ad4df01bccf3879 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_411.asset b/Assets/04_Tiles/Floor/TileSet_411.asset new file mode 100644 index 0000000..db7133e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_411.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa1e89ee20231ff024c038198489f72bf8d7fa01db29d39a148e2ce4b3b59dab +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_411.asset.meta b/Assets/04_Tiles/Floor/TileSet_411.asset.meta new file mode 100644 index 0000000..32218e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_411.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ab2705b54ab58e4c9298e2d060a444f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_412.asset b/Assets/04_Tiles/Floor/TileSet_412.asset new file mode 100644 index 0000000..aa555eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_412.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed61460f8654bffff1f3a99b38b5e486e3848b108fe7463a74feff189c0f7194 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_412.asset.meta b/Assets/04_Tiles/Floor/TileSet_412.asset.meta new file mode 100644 index 0000000..3d3c44c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_412.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bceb9403025b1ce41ad455170e6f1b22 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_413.asset b/Assets/04_Tiles/Floor/TileSet_413.asset new file mode 100644 index 0000000..ca76dd9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_413.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2904f66b1d4fea6c4cc6729aa64014c5a7ee5abccf1d6b338138b4433063a6eb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_413.asset.meta b/Assets/04_Tiles/Floor/TileSet_413.asset.meta new file mode 100644 index 0000000..fdf7d78 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_413.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5aabbdedf93ceae479e1585a9e343cbf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_414.asset b/Assets/04_Tiles/Floor/TileSet_414.asset new file mode 100644 index 0000000..1e82b1b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_414.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6448235e9cc08ab5fe1d09429619524e557d666ec1867cd642e4227514cd95 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_414.asset.meta b/Assets/04_Tiles/Floor/TileSet_414.asset.meta new file mode 100644 index 0000000..47082a2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_414.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af000ed43b936b348a5f0c9c9e98e59b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_415.asset b/Assets/04_Tiles/Floor/TileSet_415.asset new file mode 100644 index 0000000..b5cd237 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_415.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99056e11f20800c1d8af095e96947f30f215e274a6fd881db11840e0b1c70d1c +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_415.asset.meta b/Assets/04_Tiles/Floor/TileSet_415.asset.meta new file mode 100644 index 0000000..d3bf818 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_415.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e29443fc652dff24d906047ff93705b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_416.asset b/Assets/04_Tiles/Floor/TileSet_416.asset new file mode 100644 index 0000000..a835ae1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_416.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f635fbb884ec86bca53b0ae16d7bad28e2489a41eb3a5184214a7fcf0754aa +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_416.asset.meta b/Assets/04_Tiles/Floor/TileSet_416.asset.meta new file mode 100644 index 0000000..7b92e88 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_416.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b8eb839ff7dcc14db55c24e5a3b6be8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_417.asset b/Assets/04_Tiles/Floor/TileSet_417.asset new file mode 100644 index 0000000..4e3f090 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_417.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34c0f8632e84ec4fb3515fd5d328b28399a0bf67b9d8bfa8d961015eddf4f5b5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_417.asset.meta b/Assets/04_Tiles/Floor/TileSet_417.asset.meta new file mode 100644 index 0000000..5080ccc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_417.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2708a44c6a31b24fbb3d9fd77305e7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_418.asset b/Assets/04_Tiles/Floor/TileSet_418.asset new file mode 100644 index 0000000..98c78a6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_418.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:993f59d2240ee3745297a3450cb314821a7756f1458105bc6f16ba1a23a91fb3 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_418.asset.meta b/Assets/04_Tiles/Floor/TileSet_418.asset.meta new file mode 100644 index 0000000..f423b1b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_418.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2043345fd5a53f4e9cc67156cba05ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_419.asset b/Assets/04_Tiles/Floor/TileSet_419.asset new file mode 100644 index 0000000..7d14f24 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_419.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e5eb1a0108acdb13b2c2d0d3b0696b4003cbf97f0ba26e4bd520ae5d20fac4 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_419.asset.meta b/Assets/04_Tiles/Floor/TileSet_419.asset.meta new file mode 100644 index 0000000..6a40909 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_419.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9f270d01ad88e94686753679ff0723d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_42.asset b/Assets/04_Tiles/Floor/TileSet_42.asset new file mode 100644 index 0000000..0f1e54b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_42.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa945cdf1b984882f59e1748e602b27097c50897d6d98f3660c930bfefeaa01 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_42.asset.meta b/Assets/04_Tiles/Floor/TileSet_42.asset.meta new file mode 100644 index 0000000..05b66e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_42.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c6943c80ab04ff409ad8171f421d4d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_420.asset b/Assets/04_Tiles/Floor/TileSet_420.asset new file mode 100644 index 0000000..ba18bf7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_420.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:018826fed1108d07a9f52e2f2059ec558bc36ca859c96818c1c7e829709ce406 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_420.asset.meta b/Assets/04_Tiles/Floor/TileSet_420.asset.meta new file mode 100644 index 0000000..7009c76 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_420.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a98260f803ed744f95f6764a56a1437 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_421.asset b/Assets/04_Tiles/Floor/TileSet_421.asset new file mode 100644 index 0000000..4527f60 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_421.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee85d5c4103f0d6c11672b4ff1b0f4ac3671a9f0c06c6e0657addb4c801d8f0f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_421.asset.meta b/Assets/04_Tiles/Floor/TileSet_421.asset.meta new file mode 100644 index 0000000..f2081f1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_421.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 910da339d38ce9944aab5b05a958647d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_422.asset b/Assets/04_Tiles/Floor/TileSet_422.asset new file mode 100644 index 0000000..e35c530 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_422.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636ab63b8d6207cbd61df6e095dfdf17675f2585aa34a80d57f8e15ad6297f42 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_422.asset.meta b/Assets/04_Tiles/Floor/TileSet_422.asset.meta new file mode 100644 index 0000000..9790a3b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_422.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d315ba78e7fbd54abfa237c92784cb6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_423.asset b/Assets/04_Tiles/Floor/TileSet_423.asset new file mode 100644 index 0000000..f00087d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_423.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57ffe73023bebfe137b9b3b9083cf326bf01c774cd565bb756b7041842f0ad5e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_423.asset.meta b/Assets/04_Tiles/Floor/TileSet_423.asset.meta new file mode 100644 index 0000000..11bfbd1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_423.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc306c9fccdf95d46990fb98ec4a1344 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_424.asset b/Assets/04_Tiles/Floor/TileSet_424.asset new file mode 100644 index 0000000..f15a0fc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_424.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:958b7a61a3d795b6083a36a2d2a1ccee7269e7795cb78cc668e5624c02eeb0bb +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_424.asset.meta b/Assets/04_Tiles/Floor/TileSet_424.asset.meta new file mode 100644 index 0000000..15654aa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_424.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 222fc46c91920204293c9e6d2c804374 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_425.asset b/Assets/04_Tiles/Floor/TileSet_425.asset new file mode 100644 index 0000000..72cc523 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_425.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02dab38e82ec44818636468a35f5c1a44d18a71021ce26cdc766be6b69912fc7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_425.asset.meta b/Assets/04_Tiles/Floor/TileSet_425.asset.meta new file mode 100644 index 0000000..e29fb2c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_425.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 175a882baff8b944db4ed3d156f4330b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_426.asset b/Assets/04_Tiles/Floor/TileSet_426.asset new file mode 100644 index 0000000..c24546f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_426.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b32b3e38e7443d079fcc1825acb7910d736a98ddfa7d4554f3512837269732a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_426.asset.meta b/Assets/04_Tiles/Floor/TileSet_426.asset.meta new file mode 100644 index 0000000..1cc7018 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_426.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: edce91485ebd44c4ab4c639a1bf90494 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_427.asset b/Assets/04_Tiles/Floor/TileSet_427.asset new file mode 100644 index 0000000..c10a76b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_427.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcee78472adb4667cfa8973df6b6339b6a2cbdbefcaca59bcf2c14a925f085c +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_427.asset.meta b/Assets/04_Tiles/Floor/TileSet_427.asset.meta new file mode 100644 index 0000000..f23b4a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_427.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ced003a41112de4da1d61c1702e6e6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_428.asset b/Assets/04_Tiles/Floor/TileSet_428.asset new file mode 100644 index 0000000..64c2be7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_428.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e07a9726b014b85c230801e9bdd1a7f02a440e1dc191e2f68b804c41220fee75 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_428.asset.meta b/Assets/04_Tiles/Floor/TileSet_428.asset.meta new file mode 100644 index 0000000..a84fccd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_428.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e7def525f8b7bc47bb2dc7f5e9e4030 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_429.asset b/Assets/04_Tiles/Floor/TileSet_429.asset new file mode 100644 index 0000000..48d29ba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_429.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb80311fc0754ac0a727b788900faad3b7b72a9ad9efa33fb62f0e2dff9b9bb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_429.asset.meta b/Assets/04_Tiles/Floor/TileSet_429.asset.meta new file mode 100644 index 0000000..b652f85 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_429.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c1a322f4c56447a49815ad6bfaa52cdd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_43.asset b/Assets/04_Tiles/Floor/TileSet_43.asset new file mode 100644 index 0000000..84800c3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_43.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e8a3255301dbf72a4f6507725f6448ab699d05b386fb93dc2c791ed4ac203c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_43.asset.meta b/Assets/04_Tiles/Floor/TileSet_43.asset.meta new file mode 100644 index 0000000..0e04af3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_43.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3e466c83885b60846a7b5566ece6ca25 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_430.asset b/Assets/04_Tiles/Floor/TileSet_430.asset new file mode 100644 index 0000000..ae80ab0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_430.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:699afdf26bf3d4eed7814b58850943183c25b07b430d31a4eaf1c18c3d0fce35 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_430.asset.meta b/Assets/04_Tiles/Floor/TileSet_430.asset.meta new file mode 100644 index 0000000..45e9706 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_430.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf8758b0be2a95249a7735d0332ed818 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_431.asset b/Assets/04_Tiles/Floor/TileSet_431.asset new file mode 100644 index 0000000..b978934 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_431.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d7c79c83951905547e41d91cd652cb01df4145953e26e50a490b5cb18af2e634 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_431.asset.meta b/Assets/04_Tiles/Floor/TileSet_431.asset.meta new file mode 100644 index 0000000..925954d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_431.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 764adb2cb049e1c4e972b541dc0f6048 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_432.asset b/Assets/04_Tiles/Floor/TileSet_432.asset new file mode 100644 index 0000000..17b7eb0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_432.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1bbe03259bcc08b6f8224d4df65852ebb7fcdab603ec31756eee0b7c6aa5af4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_432.asset.meta b/Assets/04_Tiles/Floor/TileSet_432.asset.meta new file mode 100644 index 0000000..052bbd9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_432.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90f899099c0e16d4abf3d0e0cb1cd374 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_433.asset b/Assets/04_Tiles/Floor/TileSet_433.asset new file mode 100644 index 0000000..bc02537 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_433.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a90d74b604d37c38786966c8cca78a0ba892234b271d99b278f6698a6cd0ee2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_433.asset.meta b/Assets/04_Tiles/Floor/TileSet_433.asset.meta new file mode 100644 index 0000000..9ec59ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_433.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 765bfe83cee99264e985d77dbdc3b0b9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_434.asset b/Assets/04_Tiles/Floor/TileSet_434.asset new file mode 100644 index 0000000..6c7f684 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_434.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64965713fa404093ec72e99502e75333bbd5583b601275616f23dbbfd3cdc01 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_434.asset.meta b/Assets/04_Tiles/Floor/TileSet_434.asset.meta new file mode 100644 index 0000000..6b9a1df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_434.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56e5214b8462e12469518d9222942df0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_435.asset b/Assets/04_Tiles/Floor/TileSet_435.asset new file mode 100644 index 0000000..a04f2c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_435.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54c035049dc15581d62641387884b51f0b8a22942c407bfa9287e714c4999267 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_435.asset.meta b/Assets/04_Tiles/Floor/TileSet_435.asset.meta new file mode 100644 index 0000000..ef66c3f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_435.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 905f15e6ca0237c4fbb256f1c6fb8071 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_436.asset b/Assets/04_Tiles/Floor/TileSet_436.asset new file mode 100644 index 0000000..49bcf75 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_436.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029e835d8f76e3a82453919c5874a9ea4c7f441eb524fefa12e6ace3d038aaf1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_436.asset.meta b/Assets/04_Tiles/Floor/TileSet_436.asset.meta new file mode 100644 index 0000000..c12ad20 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_436.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b406f534e136f2428a7e270f1f68a98 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_437.asset b/Assets/04_Tiles/Floor/TileSet_437.asset new file mode 100644 index 0000000..d4c1163 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_437.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa8efb432a2cdc847ada24430eb5629a46ccf91866a5d8c2a8505261b01a79d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_437.asset.meta b/Assets/04_Tiles/Floor/TileSet_437.asset.meta new file mode 100644 index 0000000..aa8ae08 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_437.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c59a5b8429c79347aa3085874543faa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_438.asset b/Assets/04_Tiles/Floor/TileSet_438.asset new file mode 100644 index 0000000..3164334 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_438.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:991dbf69aafc3b93e4c9b059b41513935a5cb95be7b10b3f3c4ccdc4f4b5ea4f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_438.asset.meta b/Assets/04_Tiles/Floor/TileSet_438.asset.meta new file mode 100644 index 0000000..145a97a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_438.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4a6c03ffa7e1c041a4b1f941c13148e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_439.asset b/Assets/04_Tiles/Floor/TileSet_439.asset new file mode 100644 index 0000000..9f4efa3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_439.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a312076388ac8670b219783f4bf54aadc0c2456768bbe941d3cdc45ee9de0c0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_439.asset.meta b/Assets/04_Tiles/Floor/TileSet_439.asset.meta new file mode 100644 index 0000000..64be003 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_439.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: feb70b9c906fd2543892b72fe7fb403a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_44.asset b/Assets/04_Tiles/Floor/TileSet_44.asset new file mode 100644 index 0000000..5089553 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_44.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248be04ba0ce6ee7d2cc1f3a9b093e96d5492c940b72f3cb0643780ec185106b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_44.asset.meta b/Assets/04_Tiles/Floor/TileSet_44.asset.meta new file mode 100644 index 0000000..bdd446f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_44.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c7f6e1f62bc66864b97e1cae5487847a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_440.asset b/Assets/04_Tiles/Floor/TileSet_440.asset new file mode 100644 index 0000000..a955a0f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_440.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c336748944702c68c48b50cba1043706eab695c3a3127d2cb69165706b87d257 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_440.asset.meta b/Assets/04_Tiles/Floor/TileSet_440.asset.meta new file mode 100644 index 0000000..95530fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_440.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a6dbf46cd8fac045bb7891d00881d63 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_441.asset b/Assets/04_Tiles/Floor/TileSet_441.asset new file mode 100644 index 0000000..6428f93 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_441.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7e287e7c87732f28ca683b753d7a23206b07d4d465a541dc2bef9036663497d +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_441.asset.meta b/Assets/04_Tiles/Floor/TileSet_441.asset.meta new file mode 100644 index 0000000..8eb9eec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_441.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6958bbd0c0ee01148b7db0d9abbe7fa8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_442.asset b/Assets/04_Tiles/Floor/TileSet_442.asset new file mode 100644 index 0000000..d971174 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_442.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a46a1708fbd37ee33892a1101dc1aae2fadc73b1fb45db964ea557e7f820d5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_442.asset.meta b/Assets/04_Tiles/Floor/TileSet_442.asset.meta new file mode 100644 index 0000000..6e7ac5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_442.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0488a8fe411abc349b4c99f85ef96791 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_443.asset b/Assets/04_Tiles/Floor/TileSet_443.asset new file mode 100644 index 0000000..f6bae3b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_443.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ad97f634dec34337bcb6e4247a19a99349140a8098056830dd9689f66b8798a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_443.asset.meta b/Assets/04_Tiles/Floor/TileSet_443.asset.meta new file mode 100644 index 0000000..5130c92 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_443.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 145c7799fada63e47b22c3ba7d77d0eb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_444.asset b/Assets/04_Tiles/Floor/TileSet_444.asset new file mode 100644 index 0000000..162adea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_444.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79d0e7122d1aa583e3c36574ab4d8f08027f0519ef54b8b643df5715bca5e8e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_444.asset.meta b/Assets/04_Tiles/Floor/TileSet_444.asset.meta new file mode 100644 index 0000000..3bee317 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_444.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8fad7e3b3ffe594d9131dbe8d0ec188 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_445.asset b/Assets/04_Tiles/Floor/TileSet_445.asset new file mode 100644 index 0000000..de3fae0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_445.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f27dc521cf4aab764b12a2a5c7420b9fb87bc72d8735826b5be9dfe2803bd6c3 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_445.asset.meta b/Assets/04_Tiles/Floor/TileSet_445.asset.meta new file mode 100644 index 0000000..01cf6e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_445.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 944a1b844eafa2847bca70e63df3c3f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_446.asset b/Assets/04_Tiles/Floor/TileSet_446.asset new file mode 100644 index 0000000..8649ad4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_446.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40636f04ddeaf68b65fefb4a4d7905a7793f4b000c0744b4ec477e104cd4b334 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_446.asset.meta b/Assets/04_Tiles/Floor/TileSet_446.asset.meta new file mode 100644 index 0000000..1013180 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_446.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f4664ca50c0fc84e8e55745ea645547 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_447.asset b/Assets/04_Tiles/Floor/TileSet_447.asset new file mode 100644 index 0000000..e0c2364 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_447.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3a13dbee5dd5c033ac1cb2758c927da64a4b3ba34f6c9c83ff404d170bf446e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_447.asset.meta b/Assets/04_Tiles/Floor/TileSet_447.asset.meta new file mode 100644 index 0000000..5008b14 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_447.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 824e699eb5fda034f8d1922094f078d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_448.asset b/Assets/04_Tiles/Floor/TileSet_448.asset new file mode 100644 index 0000000..fa28d21 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_448.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5bc7a8ffc5b4c96440160a983d6cacf57bde63c78ef6396103f6cce92332a79 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_448.asset.meta b/Assets/04_Tiles/Floor/TileSet_448.asset.meta new file mode 100644 index 0000000..122ac0a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_448.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d03d0b0c3b0bf0e4ebeeef02ef550bd7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_449.asset b/Assets/04_Tiles/Floor/TileSet_449.asset new file mode 100644 index 0000000..15fe7da --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_449.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9552369117c1126e0e30facc3a018c3fbacfd29a0efece9f33ff4859652c7ba1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_449.asset.meta b/Assets/04_Tiles/Floor/TileSet_449.asset.meta new file mode 100644 index 0000000..d16f853 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_449.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25d891d13e9966c4fb4906d4eb6a8f3b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_45.asset b/Assets/04_Tiles/Floor/TileSet_45.asset new file mode 100644 index 0000000..e215f8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_45.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f982e7182fd80b1e52b267ec3561cf5b1b7993a224836eed5f8fbdceec25fa77 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_45.asset.meta b/Assets/04_Tiles/Floor/TileSet_45.asset.meta new file mode 100644 index 0000000..32379f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_45.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ab22a308a480384289e8b6650107d76 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_450.asset b/Assets/04_Tiles/Floor/TileSet_450.asset new file mode 100644 index 0000000..20f4322 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_450.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1fcec1b3016a606d0e764c283049d3f8df068317b1b4a06599326ffc63113bd +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_450.asset.meta b/Assets/04_Tiles/Floor/TileSet_450.asset.meta new file mode 100644 index 0000000..4a149c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_450.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86615104033ad1b4781f12c9bcf5385e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_451.asset b/Assets/04_Tiles/Floor/TileSet_451.asset new file mode 100644 index 0000000..beaab4f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_451.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3119360388af1b00e3dd48ed9b1182e206be1b9c6466a73b8e9d3306dc0e7d81 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_451.asset.meta b/Assets/04_Tiles/Floor/TileSet_451.asset.meta new file mode 100644 index 0000000..c7ec762 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_451.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7fd556fafefd92f4c81fca9a7fddbf3c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_452.asset b/Assets/04_Tiles/Floor/TileSet_452.asset new file mode 100644 index 0000000..67496b2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_452.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da30145a18d666ea6874bbfece9399d0efa9c301565985e252eb56d477752e2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_452.asset.meta b/Assets/04_Tiles/Floor/TileSet_452.asset.meta new file mode 100644 index 0000000..c97dc4b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_452.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b06abc301d14cb44b99ab4c088c47e8e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_453.asset b/Assets/04_Tiles/Floor/TileSet_453.asset new file mode 100644 index 0000000..43f0c5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_453.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7482f1c17e770c1a16babc899e90f4c7749deab8a627eab8ba90f857af1de4d6 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_453.asset.meta b/Assets/04_Tiles/Floor/TileSet_453.asset.meta new file mode 100644 index 0000000..ba7bd53 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_453.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b30270fe7f815344bef435fbb56ecd8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_454.asset b/Assets/04_Tiles/Floor/TileSet_454.asset new file mode 100644 index 0000000..78a460c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_454.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b512917748f0c530edab61afc1ed7b35c84ce4e97a1269a5232fcb6e7c6b020f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_454.asset.meta b/Assets/04_Tiles/Floor/TileSet_454.asset.meta new file mode 100644 index 0000000..6213740 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_454.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 01504f390e19f9246853def5d6d37683 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_455.asset b/Assets/04_Tiles/Floor/TileSet_455.asset new file mode 100644 index 0000000..a69e9cf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_455.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:294a37aad71c33914e6c0842a305b79287653232621f5c96c8b33215ea7bdaec +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_455.asset.meta b/Assets/04_Tiles/Floor/TileSet_455.asset.meta new file mode 100644 index 0000000..b579251 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_455.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a52a78bb76bc37845b91107f9ae4fed8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_456.asset b/Assets/04_Tiles/Floor/TileSet_456.asset new file mode 100644 index 0000000..1f2fd68 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_456.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f8ca48380a15146c42a78d97b6157aa1845d865216b1779009f2ebd3366e713 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_456.asset.meta b/Assets/04_Tiles/Floor/TileSet_456.asset.meta new file mode 100644 index 0000000..2dc9717 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_456.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5fe89409f9c0b0d42a4c49ed10e2a694 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_457.asset b/Assets/04_Tiles/Floor/TileSet_457.asset new file mode 100644 index 0000000..313bdef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_457.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c97b687c2212f5a7d2e6ed2d2a281331e0273be319bbdd0219fbf5ec3a5427 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_457.asset.meta b/Assets/04_Tiles/Floor/TileSet_457.asset.meta new file mode 100644 index 0000000..8dea2e8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_457.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a409d4b30dac0c144b16447a4033b566 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_458.asset b/Assets/04_Tiles/Floor/TileSet_458.asset new file mode 100644 index 0000000..39f279b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_458.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bcba72dcf3f8e6d5dfeb831f6401c3856ed268216fd2dbae784d7cfa4b6ce70 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_458.asset.meta b/Assets/04_Tiles/Floor/TileSet_458.asset.meta new file mode 100644 index 0000000..ad9900a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_458.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 013e5faaf7629a443a146123c54c9d4f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_459.asset b/Assets/04_Tiles/Floor/TileSet_459.asset new file mode 100644 index 0000000..e8895cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_459.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3671deea463704df5aebedc92cf35d9de42f31384285e40398c0442842aac17 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_459.asset.meta b/Assets/04_Tiles/Floor/TileSet_459.asset.meta new file mode 100644 index 0000000..288dc20 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_459.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 352cc9e8454ca214a9c4549fd7f4d624 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_46.asset b/Assets/04_Tiles/Floor/TileSet_46.asset new file mode 100644 index 0000000..37bc063 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_46.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a03cc8369bfabd971f749f06cb28863661f5c88fbb7570db314a2c29e3002644 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_46.asset.meta b/Assets/04_Tiles/Floor/TileSet_46.asset.meta new file mode 100644 index 0000000..3236d9b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_46.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2f36edc75add9874ab5b4e92c5c8776e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_460.asset b/Assets/04_Tiles/Floor/TileSet_460.asset new file mode 100644 index 0000000..abbf546 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_460.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:052389c92b7ab078121db6b81518d537d01d1427894e32e21d2832233c99ccd5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_460.asset.meta b/Assets/04_Tiles/Floor/TileSet_460.asset.meta new file mode 100644 index 0000000..757e8e0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_460.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f79cf9555ea4e7b4c9379bf79dd5a46a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_461.asset b/Assets/04_Tiles/Floor/TileSet_461.asset new file mode 100644 index 0000000..6bdca1c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_461.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08964a5d0dc163d35471a36dc8661fc79174a66cfe9ce16c3cd5f8522011ed4b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_461.asset.meta b/Assets/04_Tiles/Floor/TileSet_461.asset.meta new file mode 100644 index 0000000..5cc9213 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_461.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 307667d94a9efeb4f86c37afdb3ae572 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_462.asset b/Assets/04_Tiles/Floor/TileSet_462.asset new file mode 100644 index 0000000..8ab943c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_462.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce0faf3c521d7e5413ab174e23c4d13b004fe27618decf4150f182c303eae59 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_462.asset.meta b/Assets/04_Tiles/Floor/TileSet_462.asset.meta new file mode 100644 index 0000000..f425362 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_462.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c668bea341df02543b69a2a9cce5a59e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_463.asset b/Assets/04_Tiles/Floor/TileSet_463.asset new file mode 100644 index 0000000..0c39e27 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_463.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a655f627fa075c937d61bbfc4a691d2bc6a2a4f9717d70b2e168d4ea80bc7f0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_463.asset.meta b/Assets/04_Tiles/Floor/TileSet_463.asset.meta new file mode 100644 index 0000000..44265da --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_463.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b594e635b3d043f4695f2759dcf62b6a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_464.asset b/Assets/04_Tiles/Floor/TileSet_464.asset new file mode 100644 index 0000000..fc48e37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_464.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e9c4b710f002303f69f9176795806a6e17ef2322f091d1a00e7d1689448c70e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_464.asset.meta b/Assets/04_Tiles/Floor/TileSet_464.asset.meta new file mode 100644 index 0000000..c2bdd9c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_464.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ae8af490f75f884fa024d4b05d3a7af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_465.asset b/Assets/04_Tiles/Floor/TileSet_465.asset new file mode 100644 index 0000000..1a7d656 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_465.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a92767049d316849760ba6c7e035663101ad9eb8ffae5c8637c05cddb0f434 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_465.asset.meta b/Assets/04_Tiles/Floor/TileSet_465.asset.meta new file mode 100644 index 0000000..6112717 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_465.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb39c1e0edba51f4a8116cb29f6cb625 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_466.asset b/Assets/04_Tiles/Floor/TileSet_466.asset new file mode 100644 index 0000000..3c20560 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_466.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16a50ccfe888357985470f4179ca415206556122e227f04404587bcea3aeea8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_466.asset.meta b/Assets/04_Tiles/Floor/TileSet_466.asset.meta new file mode 100644 index 0000000..53d55c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_466.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80a79160df5be684d8bcc15d5268edf2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_467.asset b/Assets/04_Tiles/Floor/TileSet_467.asset new file mode 100644 index 0000000..ca4cfd1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_467.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa5d6a40574f5ccc4656357da225b198baed934fd66333db38af85c92b27fd5c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_467.asset.meta b/Assets/04_Tiles/Floor/TileSet_467.asset.meta new file mode 100644 index 0000000..d85ed21 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_467.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8e35fd23cfa2e742a08b8167385bf5d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_468.asset b/Assets/04_Tiles/Floor/TileSet_468.asset new file mode 100644 index 0000000..012ec83 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_468.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de03c94a213474cbf78da20d025aac4e92a1c51efd346173d6ff34e5e15fea95 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_468.asset.meta b/Assets/04_Tiles/Floor/TileSet_468.asset.meta new file mode 100644 index 0000000..f1299a1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_468.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3201574f511cbaf459bb019e6e264edf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_469.asset b/Assets/04_Tiles/Floor/TileSet_469.asset new file mode 100644 index 0000000..e85ddfb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_469.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:617da23d8b732cea80cc186ed246c7af485c9782e8b9f1e3afb4aee1f93124bf +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_469.asset.meta b/Assets/04_Tiles/Floor/TileSet_469.asset.meta new file mode 100644 index 0000000..07543c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_469.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cea42a3398257644b8349ae88ee63b83 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_47.asset b/Assets/04_Tiles/Floor/TileSet_47.asset new file mode 100644 index 0000000..7a719a2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_47.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6534bda00d5daa01db4e081916d2e6b8e32cfd4e6fb6da8876c763fa3eb48625 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_47.asset.meta b/Assets/04_Tiles/Floor/TileSet_47.asset.meta new file mode 100644 index 0000000..e7f3697 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_47.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eed7538928116444cb13bfb6fec10aa6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_470.asset b/Assets/04_Tiles/Floor/TileSet_470.asset new file mode 100644 index 0000000..39a2dc3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_470.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cab60ec4224ac785e50c7fd95df405b0ed452132ce527eab14635968581fb1e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_470.asset.meta b/Assets/04_Tiles/Floor/TileSet_470.asset.meta new file mode 100644 index 0000000..52c7f10 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_470.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: add48c6affed2c14ea82720767d58f44 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_471.asset b/Assets/04_Tiles/Floor/TileSet_471.asset new file mode 100644 index 0000000..8edbb8d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_471.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aaea007845685e4bca270b79154900cd878829007370efb8b8e8860d6ed14ead +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_471.asset.meta b/Assets/04_Tiles/Floor/TileSet_471.asset.meta new file mode 100644 index 0000000..b6eb1aa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_471.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9409d3b6d535f8468c9063edfc4d4c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_472.asset b/Assets/04_Tiles/Floor/TileSet_472.asset new file mode 100644 index 0000000..07a8ca6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_472.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7fd070b17216598c5606a071ab7fbb8ab43e6995d42454dbcafdd1c4e5477c2 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_472.asset.meta b/Assets/04_Tiles/Floor/TileSet_472.asset.meta new file mode 100644 index 0000000..d0f12b8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_472.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9840bf747bcfea64284bafe8f6e7ccd3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_473.asset b/Assets/04_Tiles/Floor/TileSet_473.asset new file mode 100644 index 0000000..fcd9e42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_473.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36038ee72b7dc21e2a33f67a054c69d3ea8e906f389d6d24354c9a2c495d6ea9 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_473.asset.meta b/Assets/04_Tiles/Floor/TileSet_473.asset.meta new file mode 100644 index 0000000..36ddfc0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_473.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7711f505f6aa7c44ab924fe39c6899d9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_474.asset b/Assets/04_Tiles/Floor/TileSet_474.asset new file mode 100644 index 0000000..fdd21be --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_474.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7258f1145d5c5694f8bda86e57342c7eea0755510c895343e865ba4062fd6c4 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_474.asset.meta b/Assets/04_Tiles/Floor/TileSet_474.asset.meta new file mode 100644 index 0000000..f9c1534 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_474.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b8f419e7812e830488ba4bd92749f60c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_475.asset b/Assets/04_Tiles/Floor/TileSet_475.asset new file mode 100644 index 0000000..aecb43d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_475.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29566d0310dc96f28a3bcc36f004e8d229006c5cb518c9ed82da9d216913d8a1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_475.asset.meta b/Assets/04_Tiles/Floor/TileSet_475.asset.meta new file mode 100644 index 0000000..ca8b8d4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_475.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f32736b50acc1b943860680bca7111ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_476.asset b/Assets/04_Tiles/Floor/TileSet_476.asset new file mode 100644 index 0000000..57199af --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_476.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8694bb2395a01898bc4983c5ef9a1dda976b50538d9ca945010a34ca0c7be5ed +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_476.asset.meta b/Assets/04_Tiles/Floor/TileSet_476.asset.meta new file mode 100644 index 0000000..4472dbf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_476.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eada327e0ab94f848a0e2d66b2ebdc06 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_477.asset b/Assets/04_Tiles/Floor/TileSet_477.asset new file mode 100644 index 0000000..e203007 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_477.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e08fc502ffe9794b728fb872f5e9581d97047bc6fe832f304816df42a951b403 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_477.asset.meta b/Assets/04_Tiles/Floor/TileSet_477.asset.meta new file mode 100644 index 0000000..a854d08 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_477.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 11ac91232798455489c2366cf70711b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_478.asset b/Assets/04_Tiles/Floor/TileSet_478.asset new file mode 100644 index 0000000..7296d7b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_478.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c9982d596d26e179278b549cce00598011d7e3f1f8ffb4557f1d9071f93c9a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_478.asset.meta b/Assets/04_Tiles/Floor/TileSet_478.asset.meta new file mode 100644 index 0000000..66612df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_478.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ebdb560fe008e0e449137b518f898ad9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_479.asset b/Assets/04_Tiles/Floor/TileSet_479.asset new file mode 100644 index 0000000..dc1ee27 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_479.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c386d1b74c32174f478cd80fdde3b8297be172ca3f75c5335a30fcb9ff009166 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_479.asset.meta b/Assets/04_Tiles/Floor/TileSet_479.asset.meta new file mode 100644 index 0000000..c56d472 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_479.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c136abc7a8dcb8a42b834a1e87ff54b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_48.asset b/Assets/04_Tiles/Floor/TileSet_48.asset new file mode 100644 index 0000000..5c013b4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_48.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac2330025deda85f8bbd9a21abc49d73f33ccc1ed6dbad0ab0de9225328ed1a1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_48.asset.meta b/Assets/04_Tiles/Floor/TileSet_48.asset.meta new file mode 100644 index 0000000..a643f22 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_48.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc7fe019a088df84d8f1f4d3415d9fb8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_480.asset b/Assets/04_Tiles/Floor/TileSet_480.asset new file mode 100644 index 0000000..4522d63 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_480.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cb87b192d7e75ca38fb4a1e55fce29e6793297e1ffe795c1e9c3a6538d0940 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_480.asset.meta b/Assets/04_Tiles/Floor/TileSet_480.asset.meta new file mode 100644 index 0000000..4732275 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_480.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a31fc625ef90cb4c8ef1d5522557646 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_481.asset b/Assets/04_Tiles/Floor/TileSet_481.asset new file mode 100644 index 0000000..de248e4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_481.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caae59660bdcfd9ca680afdd667b98ad15c065e3f90f9121ed0e1f64f97e6580 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_481.asset.meta b/Assets/04_Tiles/Floor/TileSet_481.asset.meta new file mode 100644 index 0000000..e9ba611 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_481.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95eab7280ab0d894eb25e981652f4b48 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_482.asset b/Assets/04_Tiles/Floor/TileSet_482.asset new file mode 100644 index 0000000..dd81a14 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_482.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b3ad2d28dbaa19f89c6253b769bc7d2a869cb7ab3f31ed5f9ed73bdd1dc7d27 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_482.asset.meta b/Assets/04_Tiles/Floor/TileSet_482.asset.meta new file mode 100644 index 0000000..5cc148e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_482.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ccddf762832d3b8438e2da7c16dda38f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_483.asset b/Assets/04_Tiles/Floor/TileSet_483.asset new file mode 100644 index 0000000..6345355 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_483.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2a31ff0987bd33bc868b154f50cd2e2f9b10dce3936a655ff4e68929f58a7a6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_483.asset.meta b/Assets/04_Tiles/Floor/TileSet_483.asset.meta new file mode 100644 index 0000000..7f10cf6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_483.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2296e9ea25006cc49a59095318d68367 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_484.asset b/Assets/04_Tiles/Floor/TileSet_484.asset new file mode 100644 index 0000000..5aa8f3d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_484.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6806bd51380981645b9a74d2a1571608682f0d0a63ab1424d7aba6d33096e12 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_484.asset.meta b/Assets/04_Tiles/Floor/TileSet_484.asset.meta new file mode 100644 index 0000000..35a4fdd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_484.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e8fbab468c588c4d9cad8c0259f0564 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_485.asset b/Assets/04_Tiles/Floor/TileSet_485.asset new file mode 100644 index 0000000..dd13582 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_485.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462192a40ef8e857af523ac089cd2ce0e4a0701c5c05de42b0a7f3a79016c7ad +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_485.asset.meta b/Assets/04_Tiles/Floor/TileSet_485.asset.meta new file mode 100644 index 0000000..b9f1411 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_485.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6a600e0e24e92f44a701f9d2f371346 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_486.asset b/Assets/04_Tiles/Floor/TileSet_486.asset new file mode 100644 index 0000000..fdb638f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_486.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d036e86bf3733632ba01304f494148b0b5f497ca3ec4f377c3917d1038ece3ee +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_486.asset.meta b/Assets/04_Tiles/Floor/TileSet_486.asset.meta new file mode 100644 index 0000000..515eaf2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_486.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05adb028a6ec1e8429e83c704f843670 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_487.asset b/Assets/04_Tiles/Floor/TileSet_487.asset new file mode 100644 index 0000000..1388fdf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_487.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ca8f10bf49d5303ee3d22d2d587a04c26dcf6fe25c677eb11a3747a0e4a50a4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_487.asset.meta b/Assets/04_Tiles/Floor/TileSet_487.asset.meta new file mode 100644 index 0000000..8fb5dac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_487.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 32bc78a69cbfd034bac7a6d6dd41c0d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_488.asset b/Assets/04_Tiles/Floor/TileSet_488.asset new file mode 100644 index 0000000..ee2195a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_488.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e429657a9c095ebabcbc64e534d8fab2eb4067ae83a33060cafdbbdb236ae522 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_488.asset.meta b/Assets/04_Tiles/Floor/TileSet_488.asset.meta new file mode 100644 index 0000000..be29878 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_488.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4305bbaa0617e1d41be60d4a2efb0c74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_489.asset b/Assets/04_Tiles/Floor/TileSet_489.asset new file mode 100644 index 0000000..b7804a1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_489.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e85f92c3375e039859d35352dd4777c3447f8dfcd40e0dab429f614415aa1959 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_489.asset.meta b/Assets/04_Tiles/Floor/TileSet_489.asset.meta new file mode 100644 index 0000000..178c5e7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_489.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 008813b88ce808a4999e94e8c2586d02 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_49.asset b/Assets/04_Tiles/Floor/TileSet_49.asset new file mode 100644 index 0000000..bbc9dba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_49.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ba60529a8b4b02d749772d574f6ddb7ba3efef2f493ae1fa6213cf218ca27c9 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_49.asset.meta b/Assets/04_Tiles/Floor/TileSet_49.asset.meta new file mode 100644 index 0000000..4f59a1e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_49.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc77204b0386eec4c818208a7af058b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_490.asset b/Assets/04_Tiles/Floor/TileSet_490.asset new file mode 100644 index 0000000..259ef78 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_490.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b892e476362dc9b6548d701f71d5eeccaade819d8643c5bd2b02c4aee45d2aa +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_490.asset.meta b/Assets/04_Tiles/Floor/TileSet_490.asset.meta new file mode 100644 index 0000000..4e00c4d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_490.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1cca44846098b44ba1d513aa90aa0be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_491.asset b/Assets/04_Tiles/Floor/TileSet_491.asset new file mode 100644 index 0000000..7ccce10 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_491.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccba64d5e950ab384d6bbeef876f9a5adcf7791918648b2b1c76335e206ff2b5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_491.asset.meta b/Assets/04_Tiles/Floor/TileSet_491.asset.meta new file mode 100644 index 0000000..2d6518b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_491.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85b4859f33354ce449ba149d5d968dab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_492.asset b/Assets/04_Tiles/Floor/TileSet_492.asset new file mode 100644 index 0000000..2d28ce2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_492.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca55b3282a2b8fd71c41f204a3805247e92352adf523e024e92d4c500ee20bc5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_492.asset.meta b/Assets/04_Tiles/Floor/TileSet_492.asset.meta new file mode 100644 index 0000000..f0ab5f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_492.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73207fcc60fe367429584c88f2227026 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_493.asset b/Assets/04_Tiles/Floor/TileSet_493.asset new file mode 100644 index 0000000..2d6d70b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_493.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5a3b4f4763d0daf248c93f6acc26b4cf76c493bab212d83d3763728fef7f843 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_493.asset.meta b/Assets/04_Tiles/Floor/TileSet_493.asset.meta new file mode 100644 index 0000000..f4e9faa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_493.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2fe002a2d8fbcb40afd3711f0bbd178 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_494.asset b/Assets/04_Tiles/Floor/TileSet_494.asset new file mode 100644 index 0000000..211ec36 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_494.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19cd8a596d6f872a4acc5f3d66f7d584ed462e532a441d3f643e220131c70ebc +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_494.asset.meta b/Assets/04_Tiles/Floor/TileSet_494.asset.meta new file mode 100644 index 0000000..026fc2d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_494.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b3c5382e26ab8642b49d94bb6cf40ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_495.asset b/Assets/04_Tiles/Floor/TileSet_495.asset new file mode 100644 index 0000000..8514a74 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_495.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:449cdc87c4d1d1273e86d69cbdec605402947f8bbcab14cc234900f4015c960f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_495.asset.meta b/Assets/04_Tiles/Floor/TileSet_495.asset.meta new file mode 100644 index 0000000..b3e82e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_495.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b4e7b208773fc849807224c342412b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_496.asset b/Assets/04_Tiles/Floor/TileSet_496.asset new file mode 100644 index 0000000..03b574a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_496.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ce37c935167cda9f56a1c913ee1105ed22a881d1e98651f4f342083503b0def +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_496.asset.meta b/Assets/04_Tiles/Floor/TileSet_496.asset.meta new file mode 100644 index 0000000..077f1de --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_496.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9db8908d07e8d9146b0b351d7b0d969b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_497.asset b/Assets/04_Tiles/Floor/TileSet_497.asset new file mode 100644 index 0000000..2d61ab9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_497.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4469fbfe5af61bad02bb1ceec0fee6d511a25237ca187f2f659b8b855c3f2896 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_497.asset.meta b/Assets/04_Tiles/Floor/TileSet_497.asset.meta new file mode 100644 index 0000000..bbd36f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_497.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e03741c615807f4cbc8171dfd957c78 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_498.asset b/Assets/04_Tiles/Floor/TileSet_498.asset new file mode 100644 index 0000000..0573d91 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_498.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45490a32530b9f1081a86e5f3afb7a058765a904ac7dc1601d3ecbe8752526f1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_498.asset.meta b/Assets/04_Tiles/Floor/TileSet_498.asset.meta new file mode 100644 index 0000000..96080d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_498.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83c9b833f8e73964eb9bd99bd887c332 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_499.asset b/Assets/04_Tiles/Floor/TileSet_499.asset new file mode 100644 index 0000000..e7d395a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_499.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74a7b2740b033189107d1c2022d06c829da29b87f7ec043d687c0bce13cbb7a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_499.asset.meta b/Assets/04_Tiles/Floor/TileSet_499.asset.meta new file mode 100644 index 0000000..4ec652a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_499.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 332c107aa79d6da4ea71be9cb46d174e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_5.asset b/Assets/04_Tiles/Floor/TileSet_5.asset new file mode 100644 index 0000000..a5fda4d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_5.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f326a2c04886e7ce227c616b8180904aa01c1a13671fcfa02c2542faeee4fb92 +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_5.asset.meta b/Assets/04_Tiles/Floor/TileSet_5.asset.meta new file mode 100644 index 0000000..b80a671 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_5.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: feb9f8b41b4daed40a44282258a42c30 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_50.asset b/Assets/04_Tiles/Floor/TileSet_50.asset new file mode 100644 index 0000000..4057f3e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_50.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1090e8df534cf3d4190e9bff8424cec08eb0697748f92d7073dd98ecc4895e0d +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_50.asset.meta b/Assets/04_Tiles/Floor/TileSet_50.asset.meta new file mode 100644 index 0000000..93ef269 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_50.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a00f4a757daab84e8f08754eb29bed0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_500.asset b/Assets/04_Tiles/Floor/TileSet_500.asset new file mode 100644 index 0000000..eac9625 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_500.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fce3c229ea7fe7a61e16c5f86dca4ae2e7e5d0b382b1d5624d0d0d23c986314 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_500.asset.meta b/Assets/04_Tiles/Floor/TileSet_500.asset.meta new file mode 100644 index 0000000..dc1e17f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_500.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e72f566afa67a0d43b3ba39636ee34c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_501.asset b/Assets/04_Tiles/Floor/TileSet_501.asset new file mode 100644 index 0000000..2def355 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_501.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8974c6f5828d7808c527eaa1929a1cd831fe94317aa1e0cc98b3adc06aeef620 +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_501.asset.meta b/Assets/04_Tiles/Floor/TileSet_501.asset.meta new file mode 100644 index 0000000..52fe82e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_501.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39cdef0ca195ec24f8fe7feb89d4c342 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_502.asset b/Assets/04_Tiles/Floor/TileSet_502.asset new file mode 100644 index 0000000..f34b15e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_502.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629cc3ec553cf7b9641a245800f964460f9145e2d60a3a8e348aa7cd8d59e2e1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_502.asset.meta b/Assets/04_Tiles/Floor/TileSet_502.asset.meta new file mode 100644 index 0000000..a3ac3c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_502.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 685a2c29287eca44fb70c3dd21c7b3af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_503.asset b/Assets/04_Tiles/Floor/TileSet_503.asset new file mode 100644 index 0000000..d9409cf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_503.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7695bb264a899e678fb932c0f5f8ad0712d8b64971e844e12929c5586df0865a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_503.asset.meta b/Assets/04_Tiles/Floor/TileSet_503.asset.meta new file mode 100644 index 0000000..500c706 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_503.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0b4aa1658b45af74d9b78a3a5bcedca8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_504.asset b/Assets/04_Tiles/Floor/TileSet_504.asset new file mode 100644 index 0000000..d3abfe5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_504.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66b07ad7072c1dde2233f920a469ab23ca1d765b38e918190b71b74f6d6461c4 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_504.asset.meta b/Assets/04_Tiles/Floor/TileSet_504.asset.meta new file mode 100644 index 0000000..63a9a52 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_504.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 934c243798125a54188c7c153a475f1f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_505.asset b/Assets/04_Tiles/Floor/TileSet_505.asset new file mode 100644 index 0000000..1730bde --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_505.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b75783b1cbb7e922f2724425f317af6535bdb362c08036c2eebf130153350be2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_505.asset.meta b/Assets/04_Tiles/Floor/TileSet_505.asset.meta new file mode 100644 index 0000000..d725216 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_505.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d4089b60902271447b6cdfcb19940dab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_506.asset b/Assets/04_Tiles/Floor/TileSet_506.asset new file mode 100644 index 0000000..2772771 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_506.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0f42f26515b89e46ef116366bda5849760a8109976812fc3fc1db86c68f1770 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_506.asset.meta b/Assets/04_Tiles/Floor/TileSet_506.asset.meta new file mode 100644 index 0000000..7964a35 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_506.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5431635db73c4d545853d97f2ae06acd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_507.asset b/Assets/04_Tiles/Floor/TileSet_507.asset new file mode 100644 index 0000000..0dd427c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_507.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fefc7283c5406443f113b522b91ccabf2dce584ec5772f1fb951353e6a9d8088 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_507.asset.meta b/Assets/04_Tiles/Floor/TileSet_507.asset.meta new file mode 100644 index 0000000..e95d730 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_507.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8bf693e362677a4da37a8ae78fdc303 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_508.asset b/Assets/04_Tiles/Floor/TileSet_508.asset new file mode 100644 index 0000000..532fbfc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_508.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104548a77ae30af82f51965f045f0618b2279f0960d42be28276ed73e16be270 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_508.asset.meta b/Assets/04_Tiles/Floor/TileSet_508.asset.meta new file mode 100644 index 0000000..9fea160 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_508.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79f9d9832c6b27f429ac147a8028a99a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_509.asset b/Assets/04_Tiles/Floor/TileSet_509.asset new file mode 100644 index 0000000..f6ddf1e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_509.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9a604bc5d17f3d7b141ee34c362a9e35ce6fc099ed05883f624dccba61aed74 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_509.asset.meta b/Assets/04_Tiles/Floor/TileSet_509.asset.meta new file mode 100644 index 0000000..9652e5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_509.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc3042c2d4ee079489bcef922e659814 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_51.asset b/Assets/04_Tiles/Floor/TileSet_51.asset new file mode 100644 index 0000000..1c3397d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_51.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f7ba0a564c74df402c81f7e3aeea6eb6bc1354bd611ef46459381183c0f4b11 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_51.asset.meta b/Assets/04_Tiles/Floor/TileSet_51.asset.meta new file mode 100644 index 0000000..06256d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_51.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f5e212d5cd0e9b343a340c2776803ffe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_510.asset b/Assets/04_Tiles/Floor/TileSet_510.asset new file mode 100644 index 0000000..5fb60e8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_510.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be99675e475b841bd6fc5d4f51e1d67e10156c0ba10a8081ab5a73fd48c1a580 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_510.asset.meta b/Assets/04_Tiles/Floor/TileSet_510.asset.meta new file mode 100644 index 0000000..026366a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_510.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f1710f67df01c94baadc9ed151672a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_511.asset b/Assets/04_Tiles/Floor/TileSet_511.asset new file mode 100644 index 0000000..1918077 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_511.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043b9d8889abcdfa33778eebe8e97cd56434b59eaaa9e096a3962ee969c77ea6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_511.asset.meta b/Assets/04_Tiles/Floor/TileSet_511.asset.meta new file mode 100644 index 0000000..ab1cef1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_511.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 972126aa64b0cfe41bc1cc23421e1d05 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_512.asset b/Assets/04_Tiles/Floor/TileSet_512.asset new file mode 100644 index 0000000..26b044b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_512.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cf35c52f788b3bd2723651ce4c22d627700aefbe71e330b002fb375a8f1b19 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_512.asset.meta b/Assets/04_Tiles/Floor/TileSet_512.asset.meta new file mode 100644 index 0000000..375b060 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_512.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 80af3085f29a5e34b9a2a18451308027 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_513.asset b/Assets/04_Tiles/Floor/TileSet_513.asset new file mode 100644 index 0000000..f50f7a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_513.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08de1398982e64dae00286a4969ab49fcb687da597b1472320582388fa73c2c3 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_513.asset.meta b/Assets/04_Tiles/Floor/TileSet_513.asset.meta new file mode 100644 index 0000000..3a612cb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_513.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e812383ec718aa4eb0bdf5439fd5dbc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_514.asset b/Assets/04_Tiles/Floor/TileSet_514.asset new file mode 100644 index 0000000..cb11f6b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_514.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81445b3348ef3ed31e38025772c831a342dada7912b8f80797cf70099a39e506 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_514.asset.meta b/Assets/04_Tiles/Floor/TileSet_514.asset.meta new file mode 100644 index 0000000..2793e5e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_514.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68c5335823ce37f4488a5a505eeff0e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_515.asset b/Assets/04_Tiles/Floor/TileSet_515.asset new file mode 100644 index 0000000..8be70e8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_515.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdbb1ce51e2b0538c09a12cadf88fd1d96ec3078fa4d408dd6fed0d84fea91de +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_515.asset.meta b/Assets/04_Tiles/Floor/TileSet_515.asset.meta new file mode 100644 index 0000000..c1f1c06 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_515.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9496d116bc4f1e5409ace66add409cc1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_516.asset b/Assets/04_Tiles/Floor/TileSet_516.asset new file mode 100644 index 0000000..9251725 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_516.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20fab6a963d66eede75ddd4a3190c7d3b397b7bf2c3377ee319f9462b15ee587 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_516.asset.meta b/Assets/04_Tiles/Floor/TileSet_516.asset.meta new file mode 100644 index 0000000..0297c5d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_516.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d633d96575f4a634d96af0bf485084ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_517.asset b/Assets/04_Tiles/Floor/TileSet_517.asset new file mode 100644 index 0000000..d4f066b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_517.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eda2c7d3f327bb94dea360671caa9463b9663a6b6e4396429445c16094c9ec8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_517.asset.meta b/Assets/04_Tiles/Floor/TileSet_517.asset.meta new file mode 100644 index 0000000..dd79db4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_517.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b34227ecca2abb4a8d4a8e8916f72d3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_518.asset b/Assets/04_Tiles/Floor/TileSet_518.asset new file mode 100644 index 0000000..a4941f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_518.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf25aa50b3d5b73587dd99176566677ade7190c2a9d372cb9b32aff5b88235b9 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_518.asset.meta b/Assets/04_Tiles/Floor/TileSet_518.asset.meta new file mode 100644 index 0000000..8e3db41 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_518.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9eeabe4734d6e1489a6780a0d8e8b4e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_519.asset b/Assets/04_Tiles/Floor/TileSet_519.asset new file mode 100644 index 0000000..f6c4058 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_519.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e9f00e6ef1b16b0f245ba4300dec76b0536934de6b77112c794af84c056b37 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_519.asset.meta b/Assets/04_Tiles/Floor/TileSet_519.asset.meta new file mode 100644 index 0000000..6760834 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_519.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6e56b6e3ba41314194f840356da19f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_52.asset b/Assets/04_Tiles/Floor/TileSet_52.asset new file mode 100644 index 0000000..bf288b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_52.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6507325c409399a357b234199805640849a2f075a895fd004905bfff651e8ebb +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_52.asset.meta b/Assets/04_Tiles/Floor/TileSet_52.asset.meta new file mode 100644 index 0000000..2c46bbd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_52.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15e26ff3187dd2e4290c76a45d078ed4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_520.asset b/Assets/04_Tiles/Floor/TileSet_520.asset new file mode 100644 index 0000000..6586891 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_520.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f79b1e7f8bea0e6102693e4bb8022f51d56fe8c55adb5bd7bc917bcd94f9a2d1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_520.asset.meta b/Assets/04_Tiles/Floor/TileSet_520.asset.meta new file mode 100644 index 0000000..81fc29f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_520.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3490f2a3b5962814995cee4f722a3060 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_521.asset b/Assets/04_Tiles/Floor/TileSet_521.asset new file mode 100644 index 0000000..341f779 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_521.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:726dba545201db0c3d7b2db4e0b20b32b683b57e72e6a14ae8cd07da948e2f24 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_521.asset.meta b/Assets/04_Tiles/Floor/TileSet_521.asset.meta new file mode 100644 index 0000000..b3f8b6b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_521.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea158d71ceebe264a97e3934a6c3205a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_522.asset b/Assets/04_Tiles/Floor/TileSet_522.asset new file mode 100644 index 0000000..788fea5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_522.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57188177169d70343e95f8def70e0c2506efa88dcf73ab12a3bf5570004e6555 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_522.asset.meta b/Assets/04_Tiles/Floor/TileSet_522.asset.meta new file mode 100644 index 0000000..fa2042e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_522.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64b6361153f7a53449e7a66d68a2e4ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_523.asset b/Assets/04_Tiles/Floor/TileSet_523.asset new file mode 100644 index 0000000..207c732 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_523.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f71191b18d7ad380ccab33ed93cea3738af80c5ba1219b0f5b3e4b7f4254a255 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_523.asset.meta b/Assets/04_Tiles/Floor/TileSet_523.asset.meta new file mode 100644 index 0000000..af62f8e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_523.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8528abc5c1ae1d04e99ba842824c14de +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_524.asset b/Assets/04_Tiles/Floor/TileSet_524.asset new file mode 100644 index 0000000..e358c51 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_524.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:482c69d0d4dafe0126404299cbf50e142ad120747b626c3e448ad1af7bb827ec +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_524.asset.meta b/Assets/04_Tiles/Floor/TileSet_524.asset.meta new file mode 100644 index 0000000..b8a0d57 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_524.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c03b9d3b4ffdf1c42be428caafec428f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_525.asset b/Assets/04_Tiles/Floor/TileSet_525.asset new file mode 100644 index 0000000..b428437 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_525.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eb8f449d4e9b44cf40c0c1fda378ed2bfd58769eacddbf6d11ec1d6e63284aa +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_525.asset.meta b/Assets/04_Tiles/Floor/TileSet_525.asset.meta new file mode 100644 index 0000000..8852f20 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_525.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd96caef3eefeef4fa1775133b84376f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_526.asset b/Assets/04_Tiles/Floor/TileSet_526.asset new file mode 100644 index 0000000..d685a66 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_526.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a4b7643470333eb31e2dc66fb70e584a7c740b370a1d8fee09e652c3454259b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_526.asset.meta b/Assets/04_Tiles/Floor/TileSet_526.asset.meta new file mode 100644 index 0000000..1cb9771 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_526.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f22fbf206a04234b85f1f1dee39ec89 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_527.asset b/Assets/04_Tiles/Floor/TileSet_527.asset new file mode 100644 index 0000000..808058a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_527.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f575479fcde716768338546c59638816d75c198fe4b0cf61f042419571446c03 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_527.asset.meta b/Assets/04_Tiles/Floor/TileSet_527.asset.meta new file mode 100644 index 0000000..e1f8f5c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_527.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b9c47220b6bdb3488f959e92ff7ac8f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_528.asset b/Assets/04_Tiles/Floor/TileSet_528.asset new file mode 100644 index 0000000..f788f7d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_528.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da8a3c3a263b9a99a4c42608c251f9a4ca80fe5599e7e7b2a6f44027558872ea +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_528.asset.meta b/Assets/04_Tiles/Floor/TileSet_528.asset.meta new file mode 100644 index 0000000..a90dab8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_528.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b460f4539a0e2ee47a71c0d13c8a615f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_529.asset b/Assets/04_Tiles/Floor/TileSet_529.asset new file mode 100644 index 0000000..ece1b89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_529.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28b6ff81b5cf6b064fdb0336294d955835499e297529ce28121c9c34f3bff206 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_529.asset.meta b/Assets/04_Tiles/Floor/TileSet_529.asset.meta new file mode 100644 index 0000000..c9f7d7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_529.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75aa0d3004e2a1046b745ae4fba2a43c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_53.asset b/Assets/04_Tiles/Floor/TileSet_53.asset new file mode 100644 index 0000000..af490b6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_53.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83a5c3a3e81b7b6484095e602ac8849f0ce1970818efb0654c2f43819a578018 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_53.asset.meta b/Assets/04_Tiles/Floor/TileSet_53.asset.meta new file mode 100644 index 0000000..85b0bb9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_53.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ae6409ac2577474da377c8e66b57816 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_530.asset b/Assets/04_Tiles/Floor/TileSet_530.asset new file mode 100644 index 0000000..e3ccf23 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_530.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279432ff5708ca0ccb0f4c8127d208e151ce4e51497283c1c4aab71c751964f4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_530.asset.meta b/Assets/04_Tiles/Floor/TileSet_530.asset.meta new file mode 100644 index 0000000..ccc3dda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_530.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e5aa0cb515036404c863f7a51d16aa59 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_531.asset b/Assets/04_Tiles/Floor/TileSet_531.asset new file mode 100644 index 0000000..19554eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_531.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1734117c0b5888b24aca83d54937926fa7d5eaa7f66099ed382b85bfeb655490 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_531.asset.meta b/Assets/04_Tiles/Floor/TileSet_531.asset.meta new file mode 100644 index 0000000..2cfa324 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_531.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 684c0494a62a9c645bdfbc751abf01a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_532.asset b/Assets/04_Tiles/Floor/TileSet_532.asset new file mode 100644 index 0000000..be3e289 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_532.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f445b338a0d25610216103f2ab5c06a1920d0634c4cf6f18b50800ad0a1d819a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_532.asset.meta b/Assets/04_Tiles/Floor/TileSet_532.asset.meta new file mode 100644 index 0000000..2b3ca4f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_532.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 76e5e6dc0c9692e4eab1aad2db795964 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_533.asset b/Assets/04_Tiles/Floor/TileSet_533.asset new file mode 100644 index 0000000..3dbe574 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_533.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97158a930050b443a9d1f1a649930716f315028c9f52f314a6c08a68dedd1bf5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_533.asset.meta b/Assets/04_Tiles/Floor/TileSet_533.asset.meta new file mode 100644 index 0000000..25416a3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_533.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14e583b0b079a18478dbce9a3ad7bb90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_534.asset b/Assets/04_Tiles/Floor/TileSet_534.asset new file mode 100644 index 0000000..4b0d98a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_534.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b072414c8a8d5808b716d13c5ffe4bd1721e858e9a93066ccedb1ce34bf139b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_534.asset.meta b/Assets/04_Tiles/Floor/TileSet_534.asset.meta new file mode 100644 index 0000000..a5f2beb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_534.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e42b6cf4e4a6ce649896d773c64ca27d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_535.asset b/Assets/04_Tiles/Floor/TileSet_535.asset new file mode 100644 index 0000000..1ca22b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_535.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc35e02f7bb3c2ba3a74e83a5b26932726f7fcd21499652b574c0c0df33ee3e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_535.asset.meta b/Assets/04_Tiles/Floor/TileSet_535.asset.meta new file mode 100644 index 0000000..9be5e5b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_535.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5f10aab3b45d454f92b600fa42e038f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_536.asset b/Assets/04_Tiles/Floor/TileSet_536.asset new file mode 100644 index 0000000..67c37ec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_536.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fc0035c8aef4b77e9ee8dd776a8b1f4f3db90eabf1ce2b9aa5b160fe2807d4d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_536.asset.meta b/Assets/04_Tiles/Floor/TileSet_536.asset.meta new file mode 100644 index 0000000..4f065c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_536.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c9bedad5c9df2654ea995f9315c87b84 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_537.asset b/Assets/04_Tiles/Floor/TileSet_537.asset new file mode 100644 index 0000000..cc4ff1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_537.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45545a7288d7a286b41039a97310b75dc4d10111fbe12f1c3d7e5fd7c955fe5f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_537.asset.meta b/Assets/04_Tiles/Floor/TileSet_537.asset.meta new file mode 100644 index 0000000..1b321d0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_537.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d2822c808c3c9d42b9760a44366f2d9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_538.asset b/Assets/04_Tiles/Floor/TileSet_538.asset new file mode 100644 index 0000000..4e36abd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_538.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a9884bdfbe3870156feb29d242cc73b751caeb549c83b79fadeaed285fb910 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_538.asset.meta b/Assets/04_Tiles/Floor/TileSet_538.asset.meta new file mode 100644 index 0000000..e28b4c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_538.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b5a6394296a23a4ca4a757167c17799 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_539.asset b/Assets/04_Tiles/Floor/TileSet_539.asset new file mode 100644 index 0000000..0a42cc9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_539.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b767b2404a23628eb543dbd84d895be02d0936ae4de5b88f0f4aa6c9c4aa00b4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_539.asset.meta b/Assets/04_Tiles/Floor/TileSet_539.asset.meta new file mode 100644 index 0000000..db7bf4c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_539.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dff8ab45487f80b4aa32ce2a832cdfe8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_54.asset b/Assets/04_Tiles/Floor/TileSet_54.asset new file mode 100644 index 0000000..0d23b6a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_54.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e16e90107d544fb80ab5ae27c3c2c347caa210a58fb37fc0a6f5eeb974c31d5c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_54.asset.meta b/Assets/04_Tiles/Floor/TileSet_54.asset.meta new file mode 100644 index 0000000..9f5e37d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_54.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 535bc6ee0370ac744a93fce77568f1d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_540.asset b/Assets/04_Tiles/Floor/TileSet_540.asset new file mode 100644 index 0000000..36163d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_540.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7c7c70c8a84ff3bbc3d5971eac3e62c7af7ae23c8189a40de832d48303b7ebc +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_540.asset.meta b/Assets/04_Tiles/Floor/TileSet_540.asset.meta new file mode 100644 index 0000000..38b091d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_540.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fabff844b7053b448af3ab0c0646ed22 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_541.asset b/Assets/04_Tiles/Floor/TileSet_541.asset new file mode 100644 index 0000000..0cde0b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_541.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c6af2577cb93748a958c65e40415e21333a7e4b705c9ce216aed002b4422584 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_541.asset.meta b/Assets/04_Tiles/Floor/TileSet_541.asset.meta new file mode 100644 index 0000000..d7a06ac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_541.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 939b43c7893db4e4c8f6467504a4b6ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_542.asset b/Assets/04_Tiles/Floor/TileSet_542.asset new file mode 100644 index 0000000..d0fdaf9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_542.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f819416c6840363a6d8cd0efafe04fb6e2000b66944fd4f7bc682a999207f3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_542.asset.meta b/Assets/04_Tiles/Floor/TileSet_542.asset.meta new file mode 100644 index 0000000..dff0e5b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_542.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2fde34c855e9e4409defbc602aadbdc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_543.asset b/Assets/04_Tiles/Floor/TileSet_543.asset new file mode 100644 index 0000000..3e4c807 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_543.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29b56d00df6d4e6e46644e369af0fc86a7a88469ce18d00086187ed94f7ebc3a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_543.asset.meta b/Assets/04_Tiles/Floor/TileSet_543.asset.meta new file mode 100644 index 0000000..d49b0ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_543.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: feefa1c6338f78349902c4e26120e08f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_544.asset b/Assets/04_Tiles/Floor/TileSet_544.asset new file mode 100644 index 0000000..c1e9696 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_544.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:508484ff3332af02bf8f3a9c5aabcc2a9cd8b5db65bdc2269934aac2d4617f2b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_544.asset.meta b/Assets/04_Tiles/Floor/TileSet_544.asset.meta new file mode 100644 index 0000000..4941c55 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_544.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72b6b6e9178bf834fbf7d10bd2bb161e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_545.asset b/Assets/04_Tiles/Floor/TileSet_545.asset new file mode 100644 index 0000000..bc52f01 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_545.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44562895e443fca78eaec7578ebba0a84926227e5eede8e8e46f276966159481 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_545.asset.meta b/Assets/04_Tiles/Floor/TileSet_545.asset.meta new file mode 100644 index 0000000..985e38d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_545.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81c609b27e7276743956511ab6d188d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_546.asset b/Assets/04_Tiles/Floor/TileSet_546.asset new file mode 100644 index 0000000..f823ae8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_546.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa4c9b5ecd143949b7ed2f36d3bdbb6ce1af650a9c008541dd724eb0a0b37c9 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_546.asset.meta b/Assets/04_Tiles/Floor/TileSet_546.asset.meta new file mode 100644 index 0000000..710ec62 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_546.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8496d2f079f11114a88e5cf870bcec01 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_547.asset b/Assets/04_Tiles/Floor/TileSet_547.asset new file mode 100644 index 0000000..3f23837 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_547.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae313d06a195b9910eb0b6b191442da9103a60ab5b1b3511c300d6c1e2b67b51 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_547.asset.meta b/Assets/04_Tiles/Floor/TileSet_547.asset.meta new file mode 100644 index 0000000..a794c7c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_547.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb8f4b75b5624f84aa2b7339676711e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_548.asset b/Assets/04_Tiles/Floor/TileSet_548.asset new file mode 100644 index 0000000..0c04b7b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_548.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:757641285aad6b97e9a65e6dab9314274dd49c87368137d63c739d3f308527d7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_548.asset.meta b/Assets/04_Tiles/Floor/TileSet_548.asset.meta new file mode 100644 index 0000000..fe21f2d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_548.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 223c708dff3479f4b93d34660ca0120d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_549.asset b/Assets/04_Tiles/Floor/TileSet_549.asset new file mode 100644 index 0000000..cde9059 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_549.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7139850f1014cf84230f1d59a0929702078204d97ebc4464b478cd303cee159 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_549.asset.meta b/Assets/04_Tiles/Floor/TileSet_549.asset.meta new file mode 100644 index 0000000..9f00040 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_549.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 027fbef13cc400e4bb654c3917ab0853 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_55.asset b/Assets/04_Tiles/Floor/TileSet_55.asset new file mode 100644 index 0000000..652cfb8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_55.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:528a5680a9d6810c52087c8bdf32c6ffd49bb505defdda04333a6ee105320524 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_55.asset.meta b/Assets/04_Tiles/Floor/TileSet_55.asset.meta new file mode 100644 index 0000000..948575a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_55.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 969323d6c6b06e14185b4d9c1d04831e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_550.asset b/Assets/04_Tiles/Floor/TileSet_550.asset new file mode 100644 index 0000000..a86c6d9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_550.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26cfee70787555c097aa7bcfba45723dc10921f717f0ed4fcf21f463f329eed7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_550.asset.meta b/Assets/04_Tiles/Floor/TileSet_550.asset.meta new file mode 100644 index 0000000..3d842a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_550.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 58f179041645c4649b4d5208a081a46f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_551.asset b/Assets/04_Tiles/Floor/TileSet_551.asset new file mode 100644 index 0000000..0877114 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_551.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e00ddcc20f8469b591a4c94cedf90315d70200dcf537dea0df0054d7c8f2f4b7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_551.asset.meta b/Assets/04_Tiles/Floor/TileSet_551.asset.meta new file mode 100644 index 0000000..9b260f1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_551.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79b2c0abdf36b684ca2355ce1da97640 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_552.asset b/Assets/04_Tiles/Floor/TileSet_552.asset new file mode 100644 index 0000000..6d21343 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_552.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0056b04b7707aaff57303b07bf314cc683a455057f622f3cf5379263fc4c2b4f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_552.asset.meta b/Assets/04_Tiles/Floor/TileSet_552.asset.meta new file mode 100644 index 0000000..e682329 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_552.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7712edbdda2c6c04e9ee27585c0ed2c5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_553.asset b/Assets/04_Tiles/Floor/TileSet_553.asset new file mode 100644 index 0000000..1f7e496 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_553.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44cd4fe39b37cdebc3b910af56f390da31e27e1a979811dd75fae53c65ab4327 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_553.asset.meta b/Assets/04_Tiles/Floor/TileSet_553.asset.meta new file mode 100644 index 0000000..3b0bdb2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_553.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 955ea978879b40f4cb10e6f80da104f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_554.asset b/Assets/04_Tiles/Floor/TileSet_554.asset new file mode 100644 index 0000000..b8aefba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_554.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882f1b6ac8eecba7c5f6a71eb7ef5e7b22b10cdd31275e5b610cbca74df514af +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_554.asset.meta b/Assets/04_Tiles/Floor/TileSet_554.asset.meta new file mode 100644 index 0000000..6866cf3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_554.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8c327d55919e3e498c3f6d25c95d8a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_555.asset b/Assets/04_Tiles/Floor/TileSet_555.asset new file mode 100644 index 0000000..e424321 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_555.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e889b2363070ef1ba8f72d1ddd46131191aebce4f6626c794d0744ca14070eb +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_555.asset.meta b/Assets/04_Tiles/Floor/TileSet_555.asset.meta new file mode 100644 index 0000000..b27fccb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_555.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84427ee4294f2c747b33d69552774cac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_556.asset b/Assets/04_Tiles/Floor/TileSet_556.asset new file mode 100644 index 0000000..3913970 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_556.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc912de5adfdaa9b5ba1d91c64c140da096ab89ec2c84543b9fc29f214417657 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_556.asset.meta b/Assets/04_Tiles/Floor/TileSet_556.asset.meta new file mode 100644 index 0000000..218a37d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_556.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bec1423e1f9794b438e08748fd243827 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_557.asset b/Assets/04_Tiles/Floor/TileSet_557.asset new file mode 100644 index 0000000..aa110fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_557.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:086259bb47ea0bce7ca7a2589a38488116f70305b8e8833aeef03e5559005f51 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_557.asset.meta b/Assets/04_Tiles/Floor/TileSet_557.asset.meta new file mode 100644 index 0000000..f862434 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_557.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: de5970fd1c3f74f499f34b1719008d41 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_558.asset b/Assets/04_Tiles/Floor/TileSet_558.asset new file mode 100644 index 0000000..9854d3b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_558.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab418a1249124c2242c86b1445a78b4f89ea74e06df2c9790e5bd9cfef571dc7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_558.asset.meta b/Assets/04_Tiles/Floor/TileSet_558.asset.meta new file mode 100644 index 0000000..a155721 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_558.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 97a2bc051a5e8d24192c64c5c250b705 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_559.asset b/Assets/04_Tiles/Floor/TileSet_559.asset new file mode 100644 index 0000000..1957c30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_559.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc703a09c7229483e756960f2d59515f35e7665e0fd7efda61e430eab9f5b7a6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_559.asset.meta b/Assets/04_Tiles/Floor/TileSet_559.asset.meta new file mode 100644 index 0000000..a63cca3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_559.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: feb1d6181a93ec14492f7356bf270619 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_56.asset b/Assets/04_Tiles/Floor/TileSet_56.asset new file mode 100644 index 0000000..7f3bc21 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_56.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b78eaa85e1cbbda0493c2ebfc3095f756387baa0d9c988a58ab0bdb811d7663b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_56.asset.meta b/Assets/04_Tiles/Floor/TileSet_56.asset.meta new file mode 100644 index 0000000..9bfb97a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_56.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bc16a449e455a8458be2ca74de88b6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_560.asset b/Assets/04_Tiles/Floor/TileSet_560.asset new file mode 100644 index 0000000..4285e04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_560.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f272dd17fcfde9ce801efd4c7e30820578ad2c59a659a2f1ce4d94a311eb935 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_560.asset.meta b/Assets/04_Tiles/Floor/TileSet_560.asset.meta new file mode 100644 index 0000000..4663e3e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_560.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0eb8437a37e047f4f9fbed7fac7e79f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_561.asset b/Assets/04_Tiles/Floor/TileSet_561.asset new file mode 100644 index 0000000..dac7ce6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_561.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee30ea3d29c2fd10cd0a7f3ccec07a435f8b3ce135c5f54c849b9a2cf00a566a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_561.asset.meta b/Assets/04_Tiles/Floor/TileSet_561.asset.meta new file mode 100644 index 0000000..f48cea6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_561.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a5b78d7d404c528468e926747143e564 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_562.asset b/Assets/04_Tiles/Floor/TileSet_562.asset new file mode 100644 index 0000000..9dee1ad --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_562.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73e7f2bbf3362885c70c30e1948c156cf2d628c0bb2e524bc33ae6c6e08c78c1 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_562.asset.meta b/Assets/04_Tiles/Floor/TileSet_562.asset.meta new file mode 100644 index 0000000..c39588a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_562.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5783abcac53fd246a71f04b228cfc3e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_563.asset b/Assets/04_Tiles/Floor/TileSet_563.asset new file mode 100644 index 0000000..1345885 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_563.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b565ed893bed144d47d7592db7c83ab7b8c6d93c23b3aba71dc088f19126658c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_563.asset.meta b/Assets/04_Tiles/Floor/TileSet_563.asset.meta new file mode 100644 index 0000000..f7115c3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_563.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86a054e68add0bc45b01eba9f6bf4916 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_564.asset b/Assets/04_Tiles/Floor/TileSet_564.asset new file mode 100644 index 0000000..29ffa37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_564.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:501bfb96d1cec10d3215172d31cb340d9d8ff63413df0230ef8e08b9f71d6f89 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_564.asset.meta b/Assets/04_Tiles/Floor/TileSet_564.asset.meta new file mode 100644 index 0000000..1d0d9ba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_564.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e85a031d4307234ab7231daaecafe20 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_565.asset b/Assets/04_Tiles/Floor/TileSet_565.asset new file mode 100644 index 0000000..ae1b1c0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_565.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5af6430dc31d9e332e22ee919d8328d1a926b7cbd11f40a82a195f272c07fb2c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_565.asset.meta b/Assets/04_Tiles/Floor/TileSet_565.asset.meta new file mode 100644 index 0000000..b54526e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_565.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1dfaa90f7c5973e42a2ad94a08ff19c7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_566.asset b/Assets/04_Tiles/Floor/TileSet_566.asset new file mode 100644 index 0000000..7475352 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_566.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4ea874fc69c70d4a065f1e12ca457b26f9271f7fb305ab630fc295712b9f28 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_566.asset.meta b/Assets/04_Tiles/Floor/TileSet_566.asset.meta new file mode 100644 index 0000000..000b9e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_566.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e9d339b2b75de044bdb1396ca8e85ce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_567.asset b/Assets/04_Tiles/Floor/TileSet_567.asset new file mode 100644 index 0000000..c8b2902 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_567.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3870ddf10c029b2bfdf59b1b8051306b74fcf0d5d09a1c768b9225610410c81 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_567.asset.meta b/Assets/04_Tiles/Floor/TileSet_567.asset.meta new file mode 100644 index 0000000..9fed6e8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_567.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92dffa51ae5372c45b0e0b92a1a9bec4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_568.asset b/Assets/04_Tiles/Floor/TileSet_568.asset new file mode 100644 index 0000000..391543f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_568.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:506d8b7926af2e176b95b089fcf18578e9031351e453560d548cb1af8cca318e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_568.asset.meta b/Assets/04_Tiles/Floor/TileSet_568.asset.meta new file mode 100644 index 0000000..222222b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_568.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec68b278954ed7047b2dcc60ba63a0c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_569.asset b/Assets/04_Tiles/Floor/TileSet_569.asset new file mode 100644 index 0000000..bfac8ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_569.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fae6b80583deebaaacd4ee60033a2bcd58fd563ce9c3d04638d1cc1fd9bccae +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_569.asset.meta b/Assets/04_Tiles/Floor/TileSet_569.asset.meta new file mode 100644 index 0000000..5564fa0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_569.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da1c4db9ff2696c4984a7e86035d414c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_57.asset b/Assets/04_Tiles/Floor/TileSet_57.asset new file mode 100644 index 0000000..ee7945a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_57.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81fcd7432cf1ba574b385ea91632fdf0395ef00ffe68936e91ad185306ecd3a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_57.asset.meta b/Assets/04_Tiles/Floor/TileSet_57.asset.meta new file mode 100644 index 0000000..f53ad85 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_57.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25f650f9b7ea88d48b7f9dce5e427af4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_570.asset b/Assets/04_Tiles/Floor/TileSet_570.asset new file mode 100644 index 0000000..f85405a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_570.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a37940c39f897ae0fe0e0f8fb9cccfdceb3e3a85f9c28e6f78ec9fdca4c3aa0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_570.asset.meta b/Assets/04_Tiles/Floor/TileSet_570.asset.meta new file mode 100644 index 0000000..4e55001 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_570.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95e3cb4c376a8c444b8d3348fd701ade +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_571.asset b/Assets/04_Tiles/Floor/TileSet_571.asset new file mode 100644 index 0000000..228696e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_571.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9549350377dbfae7b79246c016c67cb46f61e976ec27dccce5a8e0f133595ed9 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_571.asset.meta b/Assets/04_Tiles/Floor/TileSet_571.asset.meta new file mode 100644 index 0000000..f4a9a89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_571.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 722433ca61c579e4aaa225712d42641e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_572.asset b/Assets/04_Tiles/Floor/TileSet_572.asset new file mode 100644 index 0000000..24b470b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_572.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:545d4ef87753cdac81650e17a41ca5d8693c23dbff588eef5357fc1514b19987 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_572.asset.meta b/Assets/04_Tiles/Floor/TileSet_572.asset.meta new file mode 100644 index 0000000..8400b73 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_572.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8951ec191c953254a952ab44fe3234a0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_573.asset b/Assets/04_Tiles/Floor/TileSet_573.asset new file mode 100644 index 0000000..c065ca6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_573.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4e1f7b636fa242d705aa937bfe3d80956d46cd43367db83d3c6e2356f23baa +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_573.asset.meta b/Assets/04_Tiles/Floor/TileSet_573.asset.meta new file mode 100644 index 0000000..be4826e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_573.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fad8ebbe6acaa24296638d67397488b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_574.asset b/Assets/04_Tiles/Floor/TileSet_574.asset new file mode 100644 index 0000000..61fb646 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_574.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e90280dee835da22446e4e4ccd68c04d209f3140f50399469653e8a1dfd3792c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_574.asset.meta b/Assets/04_Tiles/Floor/TileSet_574.asset.meta new file mode 100644 index 0000000..b88ece1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_574.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c25aa41d83ff37941ab006f27f1e2a22 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_575.asset b/Assets/04_Tiles/Floor/TileSet_575.asset new file mode 100644 index 0000000..5a7c2e4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_575.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cddfe0b8395d11118e9f6a1769eef24c07dbb83c39228d7a2d197afa6c93c96 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_575.asset.meta b/Assets/04_Tiles/Floor/TileSet_575.asset.meta new file mode 100644 index 0000000..9e7fc6d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_575.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a4824b57a468a1b4aae6f53e22b5f48d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_576.asset b/Assets/04_Tiles/Floor/TileSet_576.asset new file mode 100644 index 0000000..3c36103 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_576.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5176845592b8550075f82dd27d9e44d18aca8ef3da6c97dafcf8adc31a4920a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_576.asset.meta b/Assets/04_Tiles/Floor/TileSet_576.asset.meta new file mode 100644 index 0000000..bdada5e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_576.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cfe0848e423173748a2098274cac559a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_577.asset b/Assets/04_Tiles/Floor/TileSet_577.asset new file mode 100644 index 0000000..ef78427 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_577.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acceb602aca042baa78508aa1caae1ebc0fdeaea5d3a4901b1aa8ebd3f39e418 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_577.asset.meta b/Assets/04_Tiles/Floor/TileSet_577.asset.meta new file mode 100644 index 0000000..c6a144e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_577.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa7b50aadd2bdaa4dae285d1f5eb2b85 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_578.asset b/Assets/04_Tiles/Floor/TileSet_578.asset new file mode 100644 index 0000000..c45c5a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_578.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c225777502d2d9f9168ba5f0a0ec10572274df6966758187852e43803ad194c5 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_578.asset.meta b/Assets/04_Tiles/Floor/TileSet_578.asset.meta new file mode 100644 index 0000000..e2a2eaa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_578.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 587022e63ed50344cbfbcdfeb6e6b118 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_579.asset b/Assets/04_Tiles/Floor/TileSet_579.asset new file mode 100644 index 0000000..d8b0ede --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_579.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d060effe76b8dbb2445d8899ebdce2e13b3ec67dd5b72bde2ff7eb68174fc4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_579.asset.meta b/Assets/04_Tiles/Floor/TileSet_579.asset.meta new file mode 100644 index 0000000..f0a8aa8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_579.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f587a9f5bc891044cacf4410b517c9f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_58.asset b/Assets/04_Tiles/Floor/TileSet_58.asset new file mode 100644 index 0000000..a0fe562 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_58.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c534638c17c06a00e0803c56723c8ce5f31ec4e8c0f34d10d690378354cfd00 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_58.asset.meta b/Assets/04_Tiles/Floor/TileSet_58.asset.meta new file mode 100644 index 0000000..7c3f2da --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_58.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 223f4d6732919dd498f45ea5d25ba918 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_580.asset b/Assets/04_Tiles/Floor/TileSet_580.asset new file mode 100644 index 0000000..9c451eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_580.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39af3067448efa18e4567f521d94f11800421aeb78b78131a4802856695f7b20 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_580.asset.meta b/Assets/04_Tiles/Floor/TileSet_580.asset.meta new file mode 100644 index 0000000..dcc50e7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_580.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92f42fe0065818e4da3d762b4e49c02b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_581.asset b/Assets/04_Tiles/Floor/TileSet_581.asset new file mode 100644 index 0000000..a0f7b1b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_581.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7728dc326c9c887dee05545e52e05ea817709caae7ccce18a62a492cd75b3ec +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_581.asset.meta b/Assets/04_Tiles/Floor/TileSet_581.asset.meta new file mode 100644 index 0000000..242581e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_581.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bf6ac3df16003b64f87eef87bb307ea4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_582.asset b/Assets/04_Tiles/Floor/TileSet_582.asset new file mode 100644 index 0000000..38c203e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_582.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e79aa0d60d249982552ebedc160e9f7abcd888b1130179c1060f13c7aad9d7ba +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_582.asset.meta b/Assets/04_Tiles/Floor/TileSet_582.asset.meta new file mode 100644 index 0000000..c8a9214 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_582.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b81811052248bfc49b1161e7dc95733b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_583.asset b/Assets/04_Tiles/Floor/TileSet_583.asset new file mode 100644 index 0000000..73234c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_583.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484ed01a3ba01308ad2e8daa5b84ca5d92b9a039eb21984c50b3de1556008d91 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_583.asset.meta b/Assets/04_Tiles/Floor/TileSet_583.asset.meta new file mode 100644 index 0000000..7d72732 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_583.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2cd8984efa46324e9293e336e7a8487 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_584.asset b/Assets/04_Tiles/Floor/TileSet_584.asset new file mode 100644 index 0000000..7388e65 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_584.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87627485d14045f8218ac2b6f869708c4b0970b80cf21d5897fdd8dbb4c62f91 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_584.asset.meta b/Assets/04_Tiles/Floor/TileSet_584.asset.meta new file mode 100644 index 0000000..d891ca4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_584.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab1461f226317d54e8586bfc0765baa0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_585.asset b/Assets/04_Tiles/Floor/TileSet_585.asset new file mode 100644 index 0000000..aa0a7a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_585.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4df1d3b3db3ea9ad9c0c5981f0598ddf62c1db7f642f7c0bdabe3eebcf18bc3 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_585.asset.meta b/Assets/04_Tiles/Floor/TileSet_585.asset.meta new file mode 100644 index 0000000..ba334fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_585.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b48cf1d696b0ca499fe63ad443caa85 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_586.asset b/Assets/04_Tiles/Floor/TileSet_586.asset new file mode 100644 index 0000000..b8b8413 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_586.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9890fa5cea933ebd959e4edc786943ad3704bf00dd9eb09aabcb0888205da7bb +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_586.asset.meta b/Assets/04_Tiles/Floor/TileSet_586.asset.meta new file mode 100644 index 0000000..bef0047 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_586.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 718768562f9e53a4f92fb771d345dd50 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_587.asset b/Assets/04_Tiles/Floor/TileSet_587.asset new file mode 100644 index 0000000..b2b97a9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_587.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c2fdf5bb79cfde24ba3db98eb71cbbf3992466f81597f4f163ef34c89e5a3cf +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_587.asset.meta b/Assets/04_Tiles/Floor/TileSet_587.asset.meta new file mode 100644 index 0000000..10cdb45 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_587.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0171e2d641eb2d844bca72ef0d913e5c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_588.asset b/Assets/04_Tiles/Floor/TileSet_588.asset new file mode 100644 index 0000000..ac83dea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_588.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:380f8cc78f5532c5368a13e8ff108a4dd8f9d6e2293b6b926c72118d612cb6bf +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_588.asset.meta b/Assets/04_Tiles/Floor/TileSet_588.asset.meta new file mode 100644 index 0000000..6ff7744 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_588.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c0cd34de43241047ac428da4d0d5c32 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_589.asset b/Assets/04_Tiles/Floor/TileSet_589.asset new file mode 100644 index 0000000..df7eb42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_589.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:077e888d15cc3c3bcb443b9ec46ab348e14724e499a0493fe3dcf9b6fd73ecbe +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_589.asset.meta b/Assets/04_Tiles/Floor/TileSet_589.asset.meta new file mode 100644 index 0000000..1bc0eff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_589.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9cc361d7188b91a4b9e0a6334878b475 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_59.asset b/Assets/04_Tiles/Floor/TileSet_59.asset new file mode 100644 index 0000000..e19ddc1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_59.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c67fba4a2677a025f131e846078e8317f3f55055648f3bf767f146b3a84f85c5 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_59.asset.meta b/Assets/04_Tiles/Floor/TileSet_59.asset.meta new file mode 100644 index 0000000..4d820d8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_59.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90fddd0e435b9004d81b2c56b8079fde +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_590.asset b/Assets/04_Tiles/Floor/TileSet_590.asset new file mode 100644 index 0000000..a83d97e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_590.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:698ebaf697cb9fdf0a3eae699011e74326adbd204b1622335a649ca8c91e1c52 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_590.asset.meta b/Assets/04_Tiles/Floor/TileSet_590.asset.meta new file mode 100644 index 0000000..a77b51f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_590.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 146ef440da7df7f4cabab3c7e6f4ec86 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_591.asset b/Assets/04_Tiles/Floor/TileSet_591.asset new file mode 100644 index 0000000..94f32ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_591.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad34c1524a5f2802487deff0f4f6fab6e165af231fcf248867a6e10c09987fce +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_591.asset.meta b/Assets/04_Tiles/Floor/TileSet_591.asset.meta new file mode 100644 index 0000000..cd7bc6f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_591.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b8e4fc3f5593944418cc749c1fe7ac24 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_592.asset b/Assets/04_Tiles/Floor/TileSet_592.asset new file mode 100644 index 0000000..7e0c053 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_592.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6182236f6292f99dc40ea6905b5b63e5de358a310a49db3396d9bca9ffe74518 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_592.asset.meta b/Assets/04_Tiles/Floor/TileSet_592.asset.meta new file mode 100644 index 0000000..bc1b9f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_592.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 742a74ef3b1940a43901f640fdbf6704 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_593.asset b/Assets/04_Tiles/Floor/TileSet_593.asset new file mode 100644 index 0000000..0a9d334 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_593.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609f417b0734c38ff99fec5886ff76a009d45f76f16e64109d82045abc00e8ed +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_593.asset.meta b/Assets/04_Tiles/Floor/TileSet_593.asset.meta new file mode 100644 index 0000000..d2c1f46 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_593.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c42b958575833f43b58d1338983c8ba +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_594.asset b/Assets/04_Tiles/Floor/TileSet_594.asset new file mode 100644 index 0000000..98bd9c0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_594.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55789e346576b4211ba4670d9d21e6ba738cae57e52b4eb09faae86c86012f10 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_594.asset.meta b/Assets/04_Tiles/Floor/TileSet_594.asset.meta new file mode 100644 index 0000000..0bba376 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_594.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4cce947f5cd55d9439dcbb09bd1b74c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_595.asset b/Assets/04_Tiles/Floor/TileSet_595.asset new file mode 100644 index 0000000..28b4721 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_595.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f47c85694eced36f6b8458603071f97ae8a5d884dc3907eb6509d92dd30506 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_595.asset.meta b/Assets/04_Tiles/Floor/TileSet_595.asset.meta new file mode 100644 index 0000000..ac046ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_595.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 29ac9cdd32ddeb841a35bc9714e18c93 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_596.asset b/Assets/04_Tiles/Floor/TileSet_596.asset new file mode 100644 index 0000000..8b90c60 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_596.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c40976b0a62c5a6e55eb295dbe4ec3a148f1c6b608f963644933215313d9958 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_596.asset.meta b/Assets/04_Tiles/Floor/TileSet_596.asset.meta new file mode 100644 index 0000000..678ec5c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_596.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14681b3db0555034194be9f7ecf4e3c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_597.asset b/Assets/04_Tiles/Floor/TileSet_597.asset new file mode 100644 index 0000000..79aff6e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_597.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91c1d55d2a3d1753e28cac96bd21c7699ebb186363458b8f214c2c9d652a34c4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_597.asset.meta b/Assets/04_Tiles/Floor/TileSet_597.asset.meta new file mode 100644 index 0000000..0087984 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_597.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3550462c9318f384ba85d70757c3feb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_598.asset b/Assets/04_Tiles/Floor/TileSet_598.asset new file mode 100644 index 0000000..8b5b137 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_598.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fccd1c9d1f793bec6415134b489057f30d2e8851b13e333525c82d4f1390c239 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_598.asset.meta b/Assets/04_Tiles/Floor/TileSet_598.asset.meta new file mode 100644 index 0000000..2eb51c1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_598.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aec629628d7be294f8b227137822c0bc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_599.asset b/Assets/04_Tiles/Floor/TileSet_599.asset new file mode 100644 index 0000000..df48b04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_599.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46b1b563f31299493d8436f14bca9193d8e0c99198a0f0a097e478b557edf8c5 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_599.asset.meta b/Assets/04_Tiles/Floor/TileSet_599.asset.meta new file mode 100644 index 0000000..a88d334 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_599.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 67acd3c39e2032944a3958888ef91019 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_6.asset b/Assets/04_Tiles/Floor/TileSet_6.asset new file mode 100644 index 0000000..9e6604c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_6.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df68a1ae81481d29a34c57e1160b00b57e12d4b900f5a8986a207daf4ec94ed +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_6.asset.meta b/Assets/04_Tiles/Floor/TileSet_6.asset.meta new file mode 100644 index 0000000..80e80b6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_6.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 020e9092d763e114099f54e964a51647 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_60.asset b/Assets/04_Tiles/Floor/TileSet_60.asset new file mode 100644 index 0000000..613623e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_60.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8434f676edc2aef96eca9e0d0527b1e33b033037f46960222194bb363834b58 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_60.asset.meta b/Assets/04_Tiles/Floor/TileSet_60.asset.meta new file mode 100644 index 0000000..4fbfe20 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_60.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 98105f25988afeb4aaa32201c48e2fcc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_600.asset b/Assets/04_Tiles/Floor/TileSet_600.asset new file mode 100644 index 0000000..ac7896a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_600.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41201cdc77401416b40061610baf13ae4caf63765fd4457d2519a711cb16871b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_600.asset.meta b/Assets/04_Tiles/Floor/TileSet_600.asset.meta new file mode 100644 index 0000000..d1ada35 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_600.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d5b5b3469c5d80446a75020f4000a92a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_601.asset b/Assets/04_Tiles/Floor/TileSet_601.asset new file mode 100644 index 0000000..2c8ce26 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_601.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1a3a345a0a7639abb6a57c200bbbd7a2de513ca6eba8bf4805ad3aa87cf7ca1 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_601.asset.meta b/Assets/04_Tiles/Floor/TileSet_601.asset.meta new file mode 100644 index 0000000..eb64f62 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_601.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e07a573d8c3abba4c94d44488230dacd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_602.asset b/Assets/04_Tiles/Floor/TileSet_602.asset new file mode 100644 index 0000000..1d0cfea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_602.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fbf8e9bfa181d1d3a2a9de9e740c6d07ff03c6a4d5f8fe1c62497e3695a61f4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_602.asset.meta b/Assets/04_Tiles/Floor/TileSet_602.asset.meta new file mode 100644 index 0000000..45bd800 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_602.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e6207e1ef6c00147bb9fd151fc38ea9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_603.asset b/Assets/04_Tiles/Floor/TileSet_603.asset new file mode 100644 index 0000000..02e861d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_603.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8551a2a71a33c79118c1654cbf09380fe5f131d6e02bd3b0f71ff27e53515aa0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_603.asset.meta b/Assets/04_Tiles/Floor/TileSet_603.asset.meta new file mode 100644 index 0000000..da0875c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_603.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 223c4f4d91402b844a031962cf93b447 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_604.asset b/Assets/04_Tiles/Floor/TileSet_604.asset new file mode 100644 index 0000000..22d75fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_604.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd5c41a2fdac0b3219cad2f208e8e20d9884cf16f88090dea2b410c9f5bf807 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_604.asset.meta b/Assets/04_Tiles/Floor/TileSet_604.asset.meta new file mode 100644 index 0000000..061f4f3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_604.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e32d93f62a78fc4a84f36c1354cd1d4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_605.asset b/Assets/04_Tiles/Floor/TileSet_605.asset new file mode 100644 index 0000000..a647f83 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_605.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e1add462296e293b60ac14f979fd20d9372865c6a76a0a23e7cbc0f3022273 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_605.asset.meta b/Assets/04_Tiles/Floor/TileSet_605.asset.meta new file mode 100644 index 0000000..c882ceb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_605.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 550247b5dc3791d4784e7abb6fa87e26 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_606.asset b/Assets/04_Tiles/Floor/TileSet_606.asset new file mode 100644 index 0000000..dca1355 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_606.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b866e9dfd160b79ad724bad39228a1e8eee8137b3e3b7c2eab809695cffd4f49 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_606.asset.meta b/Assets/04_Tiles/Floor/TileSet_606.asset.meta new file mode 100644 index 0000000..830cfc5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_606.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a517efc0011a77746a05a6e3b0759233 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_607.asset b/Assets/04_Tiles/Floor/TileSet_607.asset new file mode 100644 index 0000000..ca064a7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_607.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:584ca5baae82ebbe4fd8e465b7ebdd0f9c7fc8105babc3b1a2a65371d1497753 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_607.asset.meta b/Assets/04_Tiles/Floor/TileSet_607.asset.meta new file mode 100644 index 0000000..3a5fdff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_607.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06380aeb66d2ed44c88e7300e4f8afe4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_608.asset b/Assets/04_Tiles/Floor/TileSet_608.asset new file mode 100644 index 0000000..1edd31a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_608.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98f0ec3097b8b12b2af9df6dca2f8187258223537d38548ac19d0f617d2d3908 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_608.asset.meta b/Assets/04_Tiles/Floor/TileSet_608.asset.meta new file mode 100644 index 0000000..dd8b5e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_608.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a6a4b4aad4ebb6c45957661910d6a1d9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_609.asset b/Assets/04_Tiles/Floor/TileSet_609.asset new file mode 100644 index 0000000..3b100ca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_609.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03fa04d7596e19cac4748d87b1f80303d8956c7dbd9e4e8840a68b950b27a5e9 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_609.asset.meta b/Assets/04_Tiles/Floor/TileSet_609.asset.meta new file mode 100644 index 0000000..0162c28 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_609.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aece0579fe2f98840b2d8e4f4515d389 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_61.asset b/Assets/04_Tiles/Floor/TileSet_61.asset new file mode 100644 index 0000000..4a77112 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_61.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5517cbc5b256531504851fa0521f2317e34c37418374dc639e1d00483ad2179 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_61.asset.meta b/Assets/04_Tiles/Floor/TileSet_61.asset.meta new file mode 100644 index 0000000..f8765ed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_61.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 45836111826143043aed5f12d2339a78 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_610.asset b/Assets/04_Tiles/Floor/TileSet_610.asset new file mode 100644 index 0000000..262c248 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_610.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da119023c068820e93cfff18e6c93dbe4a9663711403be409bf254d4b03e8340 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_610.asset.meta b/Assets/04_Tiles/Floor/TileSet_610.asset.meta new file mode 100644 index 0000000..fa5a881 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_610.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dfc504f7527fa1b4aa975db5d2c10d92 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_611.asset b/Assets/04_Tiles/Floor/TileSet_611.asset new file mode 100644 index 0000000..c2a21ee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_611.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb10e64d031ab5e04538636b88352531d437f4c740351aa52649651044b9b20 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_611.asset.meta b/Assets/04_Tiles/Floor/TileSet_611.asset.meta new file mode 100644 index 0000000..c6d7963 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_611.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7eea85eb443f79641819cafd6e72d0a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_612.asset b/Assets/04_Tiles/Floor/TileSet_612.asset new file mode 100644 index 0000000..ae7ee69 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_612.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bebad0b84ca546895d7b86afcc640e805e944a235ab5cc5e0f31b3eb5181c046 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_612.asset.meta b/Assets/04_Tiles/Floor/TileSet_612.asset.meta new file mode 100644 index 0000000..393092a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_612.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0c86014d65525a40aee3c4228744d3b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_613.asset b/Assets/04_Tiles/Floor/TileSet_613.asset new file mode 100644 index 0000000..dc4532b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_613.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1a20492948979a37d8d333a018a5daf75ebbf2c6dd85388f5a5ec51248321b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_613.asset.meta b/Assets/04_Tiles/Floor/TileSet_613.asset.meta new file mode 100644 index 0000000..4d9a0ec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_613.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1f1ee7aff0ce91b47bfa92122442f0a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_614.asset b/Assets/04_Tiles/Floor/TileSet_614.asset new file mode 100644 index 0000000..7e203b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_614.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd68069d20e0796315a052e0a6ca94c6f0743c6051d87969bfb5224e3f006025 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_614.asset.meta b/Assets/04_Tiles/Floor/TileSet_614.asset.meta new file mode 100644 index 0000000..1de65dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_614.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3015688ea7abd54fa5824adfb5129b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_615.asset b/Assets/04_Tiles/Floor/TileSet_615.asset new file mode 100644 index 0000000..8c1c59c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_615.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4000a4636da6430441f8c1fea3e2a123513b8759c898dbd59a3b68ea7aaea7bd +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_615.asset.meta b/Assets/04_Tiles/Floor/TileSet_615.asset.meta new file mode 100644 index 0000000..9ee2144 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_615.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f28251af62eb32e4f873da319957427e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_616.asset b/Assets/04_Tiles/Floor/TileSet_616.asset new file mode 100644 index 0000000..53532b6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_616.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34fd9ba92dd088d9a44ee7eb0203fc3606bb5f9438172422aa2a0b253db8691e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_616.asset.meta b/Assets/04_Tiles/Floor/TileSet_616.asset.meta new file mode 100644 index 0000000..9948d4c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_616.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6cd33201defca424b85b016e9f32e927 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_617.asset b/Assets/04_Tiles/Floor/TileSet_617.asset new file mode 100644 index 0000000..d90cd42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_617.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ab88dfc587e0ee365b54493c420d6804eccf6203341a539edac4dca0cfdd1a6 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_617.asset.meta b/Assets/04_Tiles/Floor/TileSet_617.asset.meta new file mode 100644 index 0000000..1e7801f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_617.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e22a3954f378f5144bc9b6ff9c664cb6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_618.asset b/Assets/04_Tiles/Floor/TileSet_618.asset new file mode 100644 index 0000000..f3a6e0e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_618.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:972167a087ddfdfba773100513cf5b6f94356750dbad80cafee36b25d4c01a1f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_618.asset.meta b/Assets/04_Tiles/Floor/TileSet_618.asset.meta new file mode 100644 index 0000000..db06d98 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_618.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3a9b1e7be5da4f54886432f95c3ec0a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_619.asset b/Assets/04_Tiles/Floor/TileSet_619.asset new file mode 100644 index 0000000..3e77160 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_619.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecfe2587235cf0538312e7a4ef24632c8b663306c595c58575bab927da63b45a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_619.asset.meta b/Assets/04_Tiles/Floor/TileSet_619.asset.meta new file mode 100644 index 0000000..ac7ec1c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_619.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb98716924409c44d958ed65252ac638 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_62.asset b/Assets/04_Tiles/Floor/TileSet_62.asset new file mode 100644 index 0000000..404c066 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_62.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7222af450bb8c19161ed6e25e4eabe2a0415f49a561332fab661f811ceab09c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_62.asset.meta b/Assets/04_Tiles/Floor/TileSet_62.asset.meta new file mode 100644 index 0000000..3a44a8a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_62.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 483af4afa24757649b8ec60e9bec44b3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_620.asset b/Assets/04_Tiles/Floor/TileSet_620.asset new file mode 100644 index 0000000..50bf7d5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_620.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:925175a890b2f2ffc96fc5d3c7946da030c99425a40f39dd4f6db66c6cf17d64 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_620.asset.meta b/Assets/04_Tiles/Floor/TileSet_620.asset.meta new file mode 100644 index 0000000..0d95150 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_620.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a1f50cc5d37ec764b95435616dfa49ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_621.asset b/Assets/04_Tiles/Floor/TileSet_621.asset new file mode 100644 index 0000000..c45c85c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_621.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a5be0465321fdd2a2ddfd4d70d5b04b37ab2c884058ab2989bf2c4e6739879f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_621.asset.meta b/Assets/04_Tiles/Floor/TileSet_621.asset.meta new file mode 100644 index 0000000..424976d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_621.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb52bef6e9e75264bba9477187c3549c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_622.asset b/Assets/04_Tiles/Floor/TileSet_622.asset new file mode 100644 index 0000000..5b05feb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_622.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61c764907747699957300aad685c9467481a7fbea1ea041a05a21accd8cbbba +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_622.asset.meta b/Assets/04_Tiles/Floor/TileSet_622.asset.meta new file mode 100644 index 0000000..35126b6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_622.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b99b6eb8d74263342850c2afe7608a1b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_623.asset b/Assets/04_Tiles/Floor/TileSet_623.asset new file mode 100644 index 0000000..804110c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_623.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3d42be61ab43c56106600ba0d7bfeeb75d74190bfadcc1fbd654ee9ef820fb9 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_623.asset.meta b/Assets/04_Tiles/Floor/TileSet_623.asset.meta new file mode 100644 index 0000000..88aad89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_623.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96a1ed42e494cb646acb76254c5ad1a8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_624.asset b/Assets/04_Tiles/Floor/TileSet_624.asset new file mode 100644 index 0000000..6ff084b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_624.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6e12275ec7e8220c9c665fe58a97864cffdca7db76a5e3e898202af767ccb14 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_624.asset.meta b/Assets/04_Tiles/Floor/TileSet_624.asset.meta new file mode 100644 index 0000000..e949c44 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_624.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9d6648b5a0d720488b0633baf04c7d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_625.asset b/Assets/04_Tiles/Floor/TileSet_625.asset new file mode 100644 index 0000000..2576224 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_625.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ef3b0c0fa56f7b7b7ff75dd39bc6f7fb8cb73b7ee96cd55f74ba4522f60548 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_625.asset.meta b/Assets/04_Tiles/Floor/TileSet_625.asset.meta new file mode 100644 index 0000000..1bb00af --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_625.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e3f966c8a0227d43ae0d21885eee774 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_626.asset b/Assets/04_Tiles/Floor/TileSet_626.asset new file mode 100644 index 0000000..9f4dfcb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_626.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b499edc25dc22cf2818006b0058b437e35e95f1a3c27867e901d059e7dc3b7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_626.asset.meta b/Assets/04_Tiles/Floor/TileSet_626.asset.meta new file mode 100644 index 0000000..af59191 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_626.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9dcf2edb39e1e81409fb2ff7bb786595 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_627.asset b/Assets/04_Tiles/Floor/TileSet_627.asset new file mode 100644 index 0000000..ae714ad --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_627.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc8bdf35f27400a20d12d6d6051f2c8674d647a9813c2c3b6ca2f5826f44527 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_627.asset.meta b/Assets/04_Tiles/Floor/TileSet_627.asset.meta new file mode 100644 index 0000000..e1cfb56 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_627.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 052c9781e3f607a4ea6cb0176f8ee723 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_628.asset b/Assets/04_Tiles/Floor/TileSet_628.asset new file mode 100644 index 0000000..c7b86b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_628.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51b09640142d8e40f4f6a54eb77bb9e5a4a81e6d6688339e6073827fd720fe7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_628.asset.meta b/Assets/04_Tiles/Floor/TileSet_628.asset.meta new file mode 100644 index 0000000..7805d9e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_628.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7af543551f5aa4640812fb328134c267 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_629.asset b/Assets/04_Tiles/Floor/TileSet_629.asset new file mode 100644 index 0000000..28a6282 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_629.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:689648ba277421323a5f4da80e4413915d71bb765fb5c0246e1f173356c1bbd8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_629.asset.meta b/Assets/04_Tiles/Floor/TileSet_629.asset.meta new file mode 100644 index 0000000..be38454 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_629.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3cc0661112208da4baef1f8b4dd03403 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_63.asset b/Assets/04_Tiles/Floor/TileSet_63.asset new file mode 100644 index 0000000..dfa8219 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_63.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e9617fd85e798818e0bc44edb315b948b6ace766727777f088d25a746fd2499 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_63.asset.meta b/Assets/04_Tiles/Floor/TileSet_63.asset.meta new file mode 100644 index 0000000..3a09d00 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_63.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b1b18f702d53e84eae96cf234df1c89 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_630.asset b/Assets/04_Tiles/Floor/TileSet_630.asset new file mode 100644 index 0000000..803ebc8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_630.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:750e2cfc0a6748960e6e39d84c3e351ff8019a03b77bfcfb8b0c103989251b00 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_630.asset.meta b/Assets/04_Tiles/Floor/TileSet_630.asset.meta new file mode 100644 index 0000000..11e7aaa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_630.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 336aeeab2e55302449f3cea1da0be36a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_631.asset b/Assets/04_Tiles/Floor/TileSet_631.asset new file mode 100644 index 0000000..ec60892 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_631.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fb042795cf519ab0400b4a1bfd8f13ccce96746d127dcbc4c1ae35c1fe73925 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_631.asset.meta b/Assets/04_Tiles/Floor/TileSet_631.asset.meta new file mode 100644 index 0000000..7cca7a9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_631.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bb12e9f3eeaccd4bab773361ce42555 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_632.asset b/Assets/04_Tiles/Floor/TileSet_632.asset new file mode 100644 index 0000000..5ae0fbe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_632.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fceeb43e1fb398e985058c9ab1ff433d92f46f87ba125a748c77a34a6d23154 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_632.asset.meta b/Assets/04_Tiles/Floor/TileSet_632.asset.meta new file mode 100644 index 0000000..a27f423 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_632.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05c096a22a5065345a02007785c62e0c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_633.asset b/Assets/04_Tiles/Floor/TileSet_633.asset new file mode 100644 index 0000000..d45c057 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_633.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ebad6871bf512cecd7a0f7193fe9143a1ec5936c71c6ddd60ebac7ed9060d54 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_633.asset.meta b/Assets/04_Tiles/Floor/TileSet_633.asset.meta new file mode 100644 index 0000000..626da0c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_633.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f723d05d5dd4926448b151c3fe597a6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_634.asset b/Assets/04_Tiles/Floor/TileSet_634.asset new file mode 100644 index 0000000..287554b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_634.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:330aefa300a4d9f1b32e7d7bf3893058f8780b49e9aa646c0096282edbfb6633 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_634.asset.meta b/Assets/04_Tiles/Floor/TileSet_634.asset.meta new file mode 100644 index 0000000..4cb0f70 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_634.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1aaa98b3d5837dd4c882fd541cf1e97e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_635.asset b/Assets/04_Tiles/Floor/TileSet_635.asset new file mode 100644 index 0000000..82c3c02 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_635.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7487cde5ea32c1a97452102b65d8b0b4631c7dc63e9e9cf431eed2e8d5cfe01 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_635.asset.meta b/Assets/04_Tiles/Floor/TileSet_635.asset.meta new file mode 100644 index 0000000..1f17c3c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_635.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23227eb220c391a4daf7a33075dedf65 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_636.asset b/Assets/04_Tiles/Floor/TileSet_636.asset new file mode 100644 index 0000000..38c5c19 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_636.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6d5c70cd0c7cfbc4034f2bb9722df9a7770429c9416f5c6cc3a402ca5b44705 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_636.asset.meta b/Assets/04_Tiles/Floor/TileSet_636.asset.meta new file mode 100644 index 0000000..e6ff9a4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_636.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c327e42f0847ab046aa3196baf8d18bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_637.asset b/Assets/04_Tiles/Floor/TileSet_637.asset new file mode 100644 index 0000000..e81e4d3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_637.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47f983938ed2fcf08f26dd2bb3437feda383692db9b43fa8256a296226d96a31 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_637.asset.meta b/Assets/04_Tiles/Floor/TileSet_637.asset.meta new file mode 100644 index 0000000..80c6c83 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_637.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 19537f17b9587944e9fef24a33bb43cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_638.asset b/Assets/04_Tiles/Floor/TileSet_638.asset new file mode 100644 index 0000000..3249f41 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_638.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfe93cc5a2ef7dd1b37e82cd4919d7048078251ddd7c4ff6a9af4379dfb63542 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_638.asset.meta b/Assets/04_Tiles/Floor/TileSet_638.asset.meta new file mode 100644 index 0000000..fc5f5f4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_638.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71617c4c67c75db4ab7974597e3bdc43 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_639.asset b/Assets/04_Tiles/Floor/TileSet_639.asset new file mode 100644 index 0000000..4a40c76 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_639.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:522cde54b6efcbe5a250019e5bfb265353581367d0a703d3efe7cf35a41000c0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_639.asset.meta b/Assets/04_Tiles/Floor/TileSet_639.asset.meta new file mode 100644 index 0000000..6f0b540 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_639.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e830b28bb828f1147a068237a0eb1a78 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_64.asset b/Assets/04_Tiles/Floor/TileSet_64.asset new file mode 100644 index 0000000..f25b711 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_64.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8083085a448fc21db70115a6ecd08316929fc433cc05444cd87c3408545f60bd +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_64.asset.meta b/Assets/04_Tiles/Floor/TileSet_64.asset.meta new file mode 100644 index 0000000..8d2e798 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_64.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c42cf5f1311d7d479fc6d3d449a1ba9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_640.asset b/Assets/04_Tiles/Floor/TileSet_640.asset new file mode 100644 index 0000000..0e04359 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_640.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fada551ac9c7e6143e423d88a0c5f13c9000f392307391772c59adc3674b650a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_640.asset.meta b/Assets/04_Tiles/Floor/TileSet_640.asset.meta new file mode 100644 index 0000000..d3c0103 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_640.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e1d92f6b21556b14f84901f50dd5718b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_641.asset b/Assets/04_Tiles/Floor/TileSet_641.asset new file mode 100644 index 0000000..80c3b66 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_641.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aabc5f5ef767cce155fda05bd0062048e0af87d9a60585b7823eeff0572c6d7c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_641.asset.meta b/Assets/04_Tiles/Floor/TileSet_641.asset.meta new file mode 100644 index 0000000..14f7902 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_641.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c55384e0b1b8f446953baec3690353d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_642.asset b/Assets/04_Tiles/Floor/TileSet_642.asset new file mode 100644 index 0000000..55fa0ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_642.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee784b9dc474a2dfb47419beef772e3156c4e4fb2877df1b64962e6914abd2c0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_642.asset.meta b/Assets/04_Tiles/Floor/TileSet_642.asset.meta new file mode 100644 index 0000000..a7f9148 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_642.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8c1f1e99f374534f8ede544c16947d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_643.asset b/Assets/04_Tiles/Floor/TileSet_643.asset new file mode 100644 index 0000000..e85f861 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_643.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f34506fb0c8ce0e8713e91a14ee136c089756893132c06c20380d9e4355b676 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_643.asset.meta b/Assets/04_Tiles/Floor/TileSet_643.asset.meta new file mode 100644 index 0000000..0b2e7fa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_643.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c16ed5b0c4d7105408f379dc2d88e673 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_644.asset b/Assets/04_Tiles/Floor/TileSet_644.asset new file mode 100644 index 0000000..30cfbc1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_644.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2e44f2bb2afc45f864698569f046dfdeeb11ae4f87104d3b76f9d76cdaa1147 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_644.asset.meta b/Assets/04_Tiles/Floor/TileSet_644.asset.meta new file mode 100644 index 0000000..be93049 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_644.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f1a13c12b938e64fb67b490ef3a7bc2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_645.asset b/Assets/04_Tiles/Floor/TileSet_645.asset new file mode 100644 index 0000000..df4904a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_645.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bc3652df52ce13bdf5ae223dbb089d9ae8c5f0d22dee2e95accb4c77f97e896 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_645.asset.meta b/Assets/04_Tiles/Floor/TileSet_645.asset.meta new file mode 100644 index 0000000..4d24b6e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_645.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8fbe2d70b02173e47bc6f4c04cc0e92d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_646.asset b/Assets/04_Tiles/Floor/TileSet_646.asset new file mode 100644 index 0000000..9ad952e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_646.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab13a03cf50bed84341c6e1116821fdd75af7640744af8b656fe4c434b685bb5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_646.asset.meta b/Assets/04_Tiles/Floor/TileSet_646.asset.meta new file mode 100644 index 0000000..19b9a1c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_646.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a6b64c611d16f2c44b5bee88f2ac5244 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_647.asset b/Assets/04_Tiles/Floor/TileSet_647.asset new file mode 100644 index 0000000..0febc1e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_647.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:712e92f6527904a16c84b2b693ab5bb66589f7aad18839875bdb57915d487c18 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_647.asset.meta b/Assets/04_Tiles/Floor/TileSet_647.asset.meta new file mode 100644 index 0000000..52cd4a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_647.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8f2dbc74ac879947947ba954d34382a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_648.asset b/Assets/04_Tiles/Floor/TileSet_648.asset new file mode 100644 index 0000000..6f3e767 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_648.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05dfc409a05ac0cb9b7d1510dcb1d77f75d3a59664545b5315740a5a417b06f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_648.asset.meta b/Assets/04_Tiles/Floor/TileSet_648.asset.meta new file mode 100644 index 0000000..9425a39 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_648.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd1b8ed945ad5f14198c8a63c5653982 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_649.asset b/Assets/04_Tiles/Floor/TileSet_649.asset new file mode 100644 index 0000000..45de70e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_649.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc6a0f0c2fb82f7e414a95953329d8c8231907976998c9896489c38c5c2299dc +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_649.asset.meta b/Assets/04_Tiles/Floor/TileSet_649.asset.meta new file mode 100644 index 0000000..89e565b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_649.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b840875dd5c4a474091df8940a103453 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_65.asset b/Assets/04_Tiles/Floor/TileSet_65.asset new file mode 100644 index 0000000..dad241b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_65.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e59638935b7dd01af6a95c8b4c054e117c552219ab1ecabf9265eb349bffee6c +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_65.asset.meta b/Assets/04_Tiles/Floor/TileSet_65.asset.meta new file mode 100644 index 0000000..65574c4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_65.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0cdf56d81d8cb9a469a7bdeb3942fa72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_650.asset b/Assets/04_Tiles/Floor/TileSet_650.asset new file mode 100644 index 0000000..af6dae8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_650.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:470f2c8aab0b84a2c3af02c70cf5f3f20c26e7fc34bb11a7f06d11214861d2e8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_650.asset.meta b/Assets/04_Tiles/Floor/TileSet_650.asset.meta new file mode 100644 index 0000000..f48e52f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_650.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cb173e6d587e28d4caae23560c44018f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_651.asset b/Assets/04_Tiles/Floor/TileSet_651.asset new file mode 100644 index 0000000..134c8c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_651.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a9b98fe7a2f3db3722e50d2168794892d02b46b421aacf7b0f5707fe2346e0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_651.asset.meta b/Assets/04_Tiles/Floor/TileSet_651.asset.meta new file mode 100644 index 0000000..93fed5d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_651.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95c3fd9aa22818c4d9ea98bd82f87c36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_652.asset b/Assets/04_Tiles/Floor/TileSet_652.asset new file mode 100644 index 0000000..9f10f4f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_652.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:968c78d432de68d26f92dd3f072f699fac729b2afd84237370a63245279bca09 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_652.asset.meta b/Assets/04_Tiles/Floor/TileSet_652.asset.meta new file mode 100644 index 0000000..97ffe9e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_652.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 205ee80a6a23a0b4eb18e8e420baa08e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_653.asset b/Assets/04_Tiles/Floor/TileSet_653.asset new file mode 100644 index 0000000..6e25fd0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_653.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea4f708f991f33fa754beac51e5ce057ea98627816a929d669c43b07d7c86a22 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_653.asset.meta b/Assets/04_Tiles/Floor/TileSet_653.asset.meta new file mode 100644 index 0000000..1455835 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_653.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 520f57361e9456549918b939fabce7fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_654.asset b/Assets/04_Tiles/Floor/TileSet_654.asset new file mode 100644 index 0000000..f4638a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_654.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a016ece21c7c57aabed4c16b2ef13efc7462a351e33d7af015cd15905e291b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_654.asset.meta b/Assets/04_Tiles/Floor/TileSet_654.asset.meta new file mode 100644 index 0000000..9221609 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_654.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5c57c4823184c640b75739b36db484b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_655.asset b/Assets/04_Tiles/Floor/TileSet_655.asset new file mode 100644 index 0000000..8eb109f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_655.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e786e166f43854773cbbd23649c8636606de988677482d2503531bd403201594 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_655.asset.meta b/Assets/04_Tiles/Floor/TileSet_655.asset.meta new file mode 100644 index 0000000..52bc4d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_655.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bb9c698a39c606040b9d942b80e4fa4c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_656.asset b/Assets/04_Tiles/Floor/TileSet_656.asset new file mode 100644 index 0000000..064310d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_656.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47b01ac8dfd07d0f659a42bc79321c31a4026a7238c8d4ef992623bf4f981f4 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_656.asset.meta b/Assets/04_Tiles/Floor/TileSet_656.asset.meta new file mode 100644 index 0000000..150003e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_656.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd1e70d0d3954424e88904878fc465df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_657.asset b/Assets/04_Tiles/Floor/TileSet_657.asset new file mode 100644 index 0000000..85d14aa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_657.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86d856d81390ca374bd673035dfa19d718dabed6cbabf96a5c7f24676bc8cb3 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_657.asset.meta b/Assets/04_Tiles/Floor/TileSet_657.asset.meta new file mode 100644 index 0000000..f9abd69 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_657.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5382a3c42a1a3ff41aa0accd995bf545 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_658.asset b/Assets/04_Tiles/Floor/TileSet_658.asset new file mode 100644 index 0000000..9602e0c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_658.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:945966987b0a0ffb9751424f55f8e06a93e0b01add8c4a5a62a07c51ab2d2364 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_658.asset.meta b/Assets/04_Tiles/Floor/TileSet_658.asset.meta new file mode 100644 index 0000000..9a5477d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_658.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1f17fc09cea47b43845d7394561e937 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_659.asset b/Assets/04_Tiles/Floor/TileSet_659.asset new file mode 100644 index 0000000..43cb1e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_659.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc7955f7bf0d04239389af1aab5cd4b9670c448e1681bce83831c3e6c75df474 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_659.asset.meta b/Assets/04_Tiles/Floor/TileSet_659.asset.meta new file mode 100644 index 0000000..c76c535 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_659.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 011ff4bfe5c1c4b4aa78a4936a6ef3f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_66.asset b/Assets/04_Tiles/Floor/TileSet_66.asset new file mode 100644 index 0000000..932e5a4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_66.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0741f4dd5de3e5af721bb888daf5ac48ae89e7248d43a685ccaa166d5604569 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_66.asset.meta b/Assets/04_Tiles/Floor/TileSet_66.asset.meta new file mode 100644 index 0000000..9520baf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_66.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c04dcf44cb0caee45be1f33e80011c53 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_660.asset b/Assets/04_Tiles/Floor/TileSet_660.asset new file mode 100644 index 0000000..968f86f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_660.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf74a84afee4cec81e836eff2d2d76e299e980afb3a89e6748d8834416a099ee +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_660.asset.meta b/Assets/04_Tiles/Floor/TileSet_660.asset.meta new file mode 100644 index 0000000..2fa4d08 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_660.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab08d9f110a6d4a4f9a8625b374e17e2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_661.asset b/Assets/04_Tiles/Floor/TileSet_661.asset new file mode 100644 index 0000000..54d2930 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_661.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9c931d8c1ef1c5f1c6e3d69dbb6b0f5436221efd7c61f890362fdb79a9d5986 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_661.asset.meta b/Assets/04_Tiles/Floor/TileSet_661.asset.meta new file mode 100644 index 0000000..e4ac102 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_661.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90dccaa71e265c145b7e557536797b2c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_662.asset b/Assets/04_Tiles/Floor/TileSet_662.asset new file mode 100644 index 0000000..b2f0503 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_662.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3be96613620eb21a0b242261f04c8bd5cd1b75126c36b6034e4fa8c4d7c88e6d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_662.asset.meta b/Assets/04_Tiles/Floor/TileSet_662.asset.meta new file mode 100644 index 0000000..dda6130 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_662.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a1f7312c83134814cb19ad73c304c823 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_663.asset b/Assets/04_Tiles/Floor/TileSet_663.asset new file mode 100644 index 0000000..b1b9096 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_663.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ddaa45aa8a8149c10a7fc12de0e0bc43b22de2c4c8a1b7339c007083c530035 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_663.asset.meta b/Assets/04_Tiles/Floor/TileSet_663.asset.meta new file mode 100644 index 0000000..7b3df5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_663.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ee77b74ddcb1c241b13c0008134b1ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_664.asset b/Assets/04_Tiles/Floor/TileSet_664.asset new file mode 100644 index 0000000..c34b496 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_664.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b079f4054bde2e5f7ffba77e52036c943e5fc9d5c2fd710d89677995ebdc0861 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_664.asset.meta b/Assets/04_Tiles/Floor/TileSet_664.asset.meta new file mode 100644 index 0000000..4d193ee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_664.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 105424c81c10530459edb1f70a9f2829 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_665.asset b/Assets/04_Tiles/Floor/TileSet_665.asset new file mode 100644 index 0000000..f091789 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_665.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e5a55b7be0d139ad197793e978d8994e29086f4e4e4b101b0a0e6948e870e70 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_665.asset.meta b/Assets/04_Tiles/Floor/TileSet_665.asset.meta new file mode 100644 index 0000000..76d30cb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_665.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 864d87b329af4374c99d5141dffffedf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_666.asset b/Assets/04_Tiles/Floor/TileSet_666.asset new file mode 100644 index 0000000..32327a4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_666.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5dfd5e85e0ea930bd3d33fd4cd91b24b664ceb81e1b677bd9ee8dbebd32676c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_666.asset.meta b/Assets/04_Tiles/Floor/TileSet_666.asset.meta new file mode 100644 index 0000000..e804952 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_666.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8faed90166c38834ca67b444cd2c4f47 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_667.asset b/Assets/04_Tiles/Floor/TileSet_667.asset new file mode 100644 index 0000000..d9118c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_667.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647d7b26c1f1de5b53f72a8cd037d1e8e9245d4cb832dd949300e52281fba228 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_667.asset.meta b/Assets/04_Tiles/Floor/TileSet_667.asset.meta new file mode 100644 index 0000000..3274aa9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_667.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4c7033f751374c94ca27946e685f183f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_668.asset b/Assets/04_Tiles/Floor/TileSet_668.asset new file mode 100644 index 0000000..1c79a7f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_668.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87859585ad543bd9cac435cc6147ef2b1a5cff73d546ff245c2318433b555e5f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_668.asset.meta b/Assets/04_Tiles/Floor/TileSet_668.asset.meta new file mode 100644 index 0000000..e6ec6b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_668.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63e4a7da430400448a5572b4fa8802d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_669.asset b/Assets/04_Tiles/Floor/TileSet_669.asset new file mode 100644 index 0000000..467dbd4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_669.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c28bea671e15b6ae927178bf485d3fafadcc85ce18da411a1ba2ab6dad5b59e4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_669.asset.meta b/Assets/04_Tiles/Floor/TileSet_669.asset.meta new file mode 100644 index 0000000..fbaa9e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_669.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1b9a32348802e3d4c9ec4a8653d3b5eb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_67.asset b/Assets/04_Tiles/Floor/TileSet_67.asset new file mode 100644 index 0000000..03e63be --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_67.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c7bce766f32dba2bc4d3d13d71f53619ba894c901b173d4e21534c1f3ad19c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_67.asset.meta b/Assets/04_Tiles/Floor/TileSet_67.asset.meta new file mode 100644 index 0000000..9a39c4b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_67.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: da08e21c647b10646b539fc995f7cd77 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_670.asset b/Assets/04_Tiles/Floor/TileSet_670.asset new file mode 100644 index 0000000..9e5a08d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_670.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a62cf772d95b1a611939b4408c18e7f717ed31354f86dc884058fe6ba4b637d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_670.asset.meta b/Assets/04_Tiles/Floor/TileSet_670.asset.meta new file mode 100644 index 0000000..a325b6b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_670.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: effca097fb7e2db4a8ec598274070894 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_671.asset b/Assets/04_Tiles/Floor/TileSet_671.asset new file mode 100644 index 0000000..9af1462 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_671.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03393575e3b0ed86d43b890eebad609e7aeb11cc6e0b8c5082e63ba53fc7023 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_671.asset.meta b/Assets/04_Tiles/Floor/TileSet_671.asset.meta new file mode 100644 index 0000000..dab524c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_671.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae0dc09e968f5524db62dc7c7e641f55 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_672.asset b/Assets/04_Tiles/Floor/TileSet_672.asset new file mode 100644 index 0000000..d24877d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_672.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb0e1a21607939e192b553976741c5e9462ac25a26bc28f47e94aac7fd59c8e5 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_672.asset.meta b/Assets/04_Tiles/Floor/TileSet_672.asset.meta new file mode 100644 index 0000000..7379eb2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_672.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39df5ee3ecb28be4199acdf2553d0765 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_673.asset b/Assets/04_Tiles/Floor/TileSet_673.asset new file mode 100644 index 0000000..7d82db8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_673.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e92a3ae6f05b44e7abc082fab3fb1799dbbbe9a5494fb28b081691cf30d3ec9 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_673.asset.meta b/Assets/04_Tiles/Floor/TileSet_673.asset.meta new file mode 100644 index 0000000..e32c55e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_673.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8f3bda7052b4f145b8aef8cd2ef3874 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_674.asset b/Assets/04_Tiles/Floor/TileSet_674.asset new file mode 100644 index 0000000..d507a89 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_674.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dd414b787fbc5359d628d1a24ef0d2bb971604de3cf5bdbcc1b732c060ba454 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_674.asset.meta b/Assets/04_Tiles/Floor/TileSet_674.asset.meta new file mode 100644 index 0000000..595cb51 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_674.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 059653f56824d1746bb70f11d9c108fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_675.asset b/Assets/04_Tiles/Floor/TileSet_675.asset new file mode 100644 index 0000000..cb71ef6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_675.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee54968777e3a772a5f32bea541a56f3e694312f36bd026240723e6e489f4eda +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_675.asset.meta b/Assets/04_Tiles/Floor/TileSet_675.asset.meta new file mode 100644 index 0000000..12a98e6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_675.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63826b11b028a7a40af654a735bf5c6e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_676.asset b/Assets/04_Tiles/Floor/TileSet_676.asset new file mode 100644 index 0000000..e5c030b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_676.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e64662f531d31641b7854627169bd9b41604e809bce0f07d24ab3217bd2142ba +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_676.asset.meta b/Assets/04_Tiles/Floor/TileSet_676.asset.meta new file mode 100644 index 0000000..540aa80 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_676.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c91e7b0ec87587d438e38e6d351ceb72 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_677.asset b/Assets/04_Tiles/Floor/TileSet_677.asset new file mode 100644 index 0000000..e9180c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_677.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e29b4e7f044ec5a39f0c08a0fd6d523382489ddbcdb09968f1275fadb9c2306b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_677.asset.meta b/Assets/04_Tiles/Floor/TileSet_677.asset.meta new file mode 100644 index 0000000..97c449e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_677.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d178d9c94dd7ddf4d953e9ca853172bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_678.asset b/Assets/04_Tiles/Floor/TileSet_678.asset new file mode 100644 index 0000000..ccdd44f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_678.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b7183cce4613b69d93993a3a67018595ecc683cf8d22bbabd7067c572d80f89 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_678.asset.meta b/Assets/04_Tiles/Floor/TileSet_678.asset.meta new file mode 100644 index 0000000..e90bcd5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_678.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f39f85cecc53cad488662c12cf2abe84 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_679.asset b/Assets/04_Tiles/Floor/TileSet_679.asset new file mode 100644 index 0000000..9b462a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_679.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5552eda4294a603379af7fcc86da669d571429d5947e7bc9019d2fa70421f862 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_679.asset.meta b/Assets/04_Tiles/Floor/TileSet_679.asset.meta new file mode 100644 index 0000000..7528be9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_679.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 653576e995cebed49bf5cf35c7339906 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_68.asset b/Assets/04_Tiles/Floor/TileSet_68.asset new file mode 100644 index 0000000..5cfd8fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_68.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d62266a715599a4cee443d53a2016a1729044fc66a3b4e6c4c269e69ecebbdf +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_68.asset.meta b/Assets/04_Tiles/Floor/TileSet_68.asset.meta new file mode 100644 index 0000000..8aaf7a7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_68.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cff4b1d5504f7a94bbad5d4c63ca4287 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_680.asset b/Assets/04_Tiles/Floor/TileSet_680.asset new file mode 100644 index 0000000..300159e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_680.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e10fbdb5036bc7d8809994feb0eb1879e55cafecbd78b5ee5f19eee7beb6af4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_680.asset.meta b/Assets/04_Tiles/Floor/TileSet_680.asset.meta new file mode 100644 index 0000000..3cda812 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_680.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 02cfd61cbb90d8b4c974de72805d49f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_681.asset b/Assets/04_Tiles/Floor/TileSet_681.asset new file mode 100644 index 0000000..fdd19e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_681.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61e7aeb49b3fdb5462703dfaf58ea1cd29237aef722beb1dea56c721f0c1b216 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_681.asset.meta b/Assets/04_Tiles/Floor/TileSet_681.asset.meta new file mode 100644 index 0000000..b5ccd94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_681.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 22712d918ce5ac749b9525ea20f88c33 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_682.asset b/Assets/04_Tiles/Floor/TileSet_682.asset new file mode 100644 index 0000000..18b20c0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_682.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174fe6ed07c2ab258d198dd615c50fc64592fdca83da2ab0100084954bea2d54 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_682.asset.meta b/Assets/04_Tiles/Floor/TileSet_682.asset.meta new file mode 100644 index 0000000..277688a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_682.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ecdb32857b61a449827815762910279 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_683.asset b/Assets/04_Tiles/Floor/TileSet_683.asset new file mode 100644 index 0000000..1ee0e17 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_683.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc0dfea4b7c87a373432b302d892ae1a52d44fec44eefe8bd927d093f8e17a12 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_683.asset.meta b/Assets/04_Tiles/Floor/TileSet_683.asset.meta new file mode 100644 index 0000000..f3449c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_683.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c23e31b1e6dcb3c4fbbd4b199ab840f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_684.asset b/Assets/04_Tiles/Floor/TileSet_684.asset new file mode 100644 index 0000000..c0e4c90 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_684.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c54609b39ed96b4c31dfbc19e854c223a93ee100064e413fc73e2fa80709560b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_684.asset.meta b/Assets/04_Tiles/Floor/TileSet_684.asset.meta new file mode 100644 index 0000000..648c4d0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_684.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 559b3d664047f3f4a88d960feccf1f19 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_685.asset b/Assets/04_Tiles/Floor/TileSet_685.asset new file mode 100644 index 0000000..865ded5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_685.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33384745a801d341ccf1e7036cfc1b81ec57a99f46326d25677919ff56c053f1 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_685.asset.meta b/Assets/04_Tiles/Floor/TileSet_685.asset.meta new file mode 100644 index 0000000..ec33d57 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_685.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7dfe2e2682356f340b18a3dcf7115e3e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_686.asset b/Assets/04_Tiles/Floor/TileSet_686.asset new file mode 100644 index 0000000..8c9722f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_686.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37449519e157e301036bbf806e7cb279c8e61070bbb58c523468a3ace8fa6ef8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_686.asset.meta b/Assets/04_Tiles/Floor/TileSet_686.asset.meta new file mode 100644 index 0000000..f8675de --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_686.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9fd39d90768d8144d8594a91e29e0c9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_687.asset b/Assets/04_Tiles/Floor/TileSet_687.asset new file mode 100644 index 0000000..528b2ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_687.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0197ce0dbc34b4c9638e98b5edc2e8c3342bdf4a1b2156133377893e7c36e532 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_687.asset.meta b/Assets/04_Tiles/Floor/TileSet_687.asset.meta new file mode 100644 index 0000000..3f8bfe3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_687.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9291580f1dc5e3c46bd92e633afc829d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_688.asset b/Assets/04_Tiles/Floor/TileSet_688.asset new file mode 100644 index 0000000..d5da0c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_688.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d8656f911ded292dfa2702235d32145c5a2beb003886233010b297ad9c23302 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_688.asset.meta b/Assets/04_Tiles/Floor/TileSet_688.asset.meta new file mode 100644 index 0000000..2ce0f46 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_688.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12705debfc7a2c54dbf09a799ffc20be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_689.asset b/Assets/04_Tiles/Floor/TileSet_689.asset new file mode 100644 index 0000000..6a02505 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_689.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea9a095b83d686e8b70035da1ccf786c0480f16681f8d98b63c232054240e74d +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_689.asset.meta b/Assets/04_Tiles/Floor/TileSet_689.asset.meta new file mode 100644 index 0000000..b7a50e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_689.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a55bcdda1a93a40449f2b8ce46b13c95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_69.asset b/Assets/04_Tiles/Floor/TileSet_69.asset new file mode 100644 index 0000000..3f6fd92 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_69.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e802f12e6dfce0ac18c24b522a1e527d51cdab5a570ff3938b5f19f31a062524 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_69.asset.meta b/Assets/04_Tiles/Floor/TileSet_69.asset.meta new file mode 100644 index 0000000..967ce47 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_69.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c39303da571487b48b7db40b372bcfff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_690.asset b/Assets/04_Tiles/Floor/TileSet_690.asset new file mode 100644 index 0000000..336e399 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_690.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9bd4f817647d92ecb8c71920e8e13007ed27a4516a9c871986aa2774af74f50 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_690.asset.meta b/Assets/04_Tiles/Floor/TileSet_690.asset.meta new file mode 100644 index 0000000..b525343 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_690.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f9084ac79241e44080f58a70f3a179e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_691.asset b/Assets/04_Tiles/Floor/TileSet_691.asset new file mode 100644 index 0000000..574db72 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_691.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f778e5df65f9f84d9f787c72f27800799e3c0fd4b751dcdd5255413460c8d9e +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_691.asset.meta b/Assets/04_Tiles/Floor/TileSet_691.asset.meta new file mode 100644 index 0000000..4695b8a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_691.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5eb1c185d8362bb4f9a2bcd5b0b27204 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_692.asset b/Assets/04_Tiles/Floor/TileSet_692.asset new file mode 100644 index 0000000..7db70da --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_692.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef06979384be8c82a8d3dbed5f97dc816fea7a2c0897627b5ae61bbc8b667865 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_692.asset.meta b/Assets/04_Tiles/Floor/TileSet_692.asset.meta new file mode 100644 index 0000000..78c9dc5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_692.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa05ec6d891fc4a43ae3af02e0ee6610 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_693.asset b/Assets/04_Tiles/Floor/TileSet_693.asset new file mode 100644 index 0000000..bfe8a7c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_693.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfb7154d6991d70d4c2878b6fbc2d74700cd5f3e7115ac9538f4ff1c5088a6df +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_693.asset.meta b/Assets/04_Tiles/Floor/TileSet_693.asset.meta new file mode 100644 index 0000000..f66a630 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_693.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee954052ffb0f4542abc1edcccecb63a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_694.asset b/Assets/04_Tiles/Floor/TileSet_694.asset new file mode 100644 index 0000000..60e2cec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_694.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0699a17064eb901e89149c5a7d6f29b668e6ee9d1bd5f4e34fdb550563efda1a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_694.asset.meta b/Assets/04_Tiles/Floor/TileSet_694.asset.meta new file mode 100644 index 0000000..89f48e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_694.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3fd9424cecc20d48b1e6cf0a3dbb76f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_695.asset b/Assets/04_Tiles/Floor/TileSet_695.asset new file mode 100644 index 0000000..a178325 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_695.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d81d2d1724c4126a86b35548af3607e5b7fe331777b92c3f15d85c2954fdc01f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_695.asset.meta b/Assets/04_Tiles/Floor/TileSet_695.asset.meta new file mode 100644 index 0000000..5f438e6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_695.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8f2a8af4e0ec0f428d63b748e77ff35 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_696.asset b/Assets/04_Tiles/Floor/TileSet_696.asset new file mode 100644 index 0000000..6af7193 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_696.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a029a1589ea03d841c4e5c7aa632e5eca02640fb1027497c275d227a780f66 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_696.asset.meta b/Assets/04_Tiles/Floor/TileSet_696.asset.meta new file mode 100644 index 0000000..ee6f56d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_696.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 677e1b2bb171f08439302deb24a8af9c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_697.asset b/Assets/04_Tiles/Floor/TileSet_697.asset new file mode 100644 index 0000000..d891935 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_697.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36dca83c128bd949acba6c5872659061b069ec3eefb981db2dc17799b4462ea6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_697.asset.meta b/Assets/04_Tiles/Floor/TileSet_697.asset.meta new file mode 100644 index 0000000..2fae3dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_697.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b81b7688308c18648ba2e80d2afc9a96 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_698.asset b/Assets/04_Tiles/Floor/TileSet_698.asset new file mode 100644 index 0000000..8537ebb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_698.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af7a0193dff9acd47c0e197520db1293493b439104f47aa3fb8f5e861795dbcd +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_698.asset.meta b/Assets/04_Tiles/Floor/TileSet_698.asset.meta new file mode 100644 index 0000000..dc6a46d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_698.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7b40f2ea17ba8df4e920d37e1a30e076 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_699.asset b/Assets/04_Tiles/Floor/TileSet_699.asset new file mode 100644 index 0000000..4969a63 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_699.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbf797414f0255c4528faf82aa939c063d70e948ae4ddf9275a999d0d40c8a27 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_699.asset.meta b/Assets/04_Tiles/Floor/TileSet_699.asset.meta new file mode 100644 index 0000000..1b67aae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_699.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 089801d1f2b232047bc11caa80714bdc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_7.asset b/Assets/04_Tiles/Floor/TileSet_7.asset new file mode 100644 index 0000000..7319a58 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_7.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e53b48825ed70f9f4d4e604540f1bed2db7a3dc2fd9b347056bf3ab16d446f7f +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_7.asset.meta b/Assets/04_Tiles/Floor/TileSet_7.asset.meta new file mode 100644 index 0000000..bc01f08 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_7.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8621020d8f00dd645b746a3f6de6e665 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_70.asset b/Assets/04_Tiles/Floor/TileSet_70.asset new file mode 100644 index 0000000..fe2df1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_70.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1596175c562a34fd5a4fe66c5af92d5dace6a4fbd3cf959a16b7656d2a42c601 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_70.asset.meta b/Assets/04_Tiles/Floor/TileSet_70.asset.meta new file mode 100644 index 0000000..66805ac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_70.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed3cbbcdaf1ba3c44a8971f27fb8d143 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_700.asset b/Assets/04_Tiles/Floor/TileSet_700.asset new file mode 100644 index 0000000..a191cc8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_700.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f3209c51f1ab9b366de53695e1e629e65e621a5d4bb153f4575b896a9a3455 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_700.asset.meta b/Assets/04_Tiles/Floor/TileSet_700.asset.meta new file mode 100644 index 0000000..383b37f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_700.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e8dd88848c26be44db02e9f20bb65175 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_701.asset b/Assets/04_Tiles/Floor/TileSet_701.asset new file mode 100644 index 0000000..f997cde --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_701.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41717bff2b646d729188e275b8b2613643283b692334aa89c6b6c48283fe4448 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_701.asset.meta b/Assets/04_Tiles/Floor/TileSet_701.asset.meta new file mode 100644 index 0000000..e0ac01c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_701.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e6aeb2e8df89e44f84da67b88aa08b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_702.asset b/Assets/04_Tiles/Floor/TileSet_702.asset new file mode 100644 index 0000000..be120f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_702.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13c4e4b08b565a63af3909dd073763ef5e9ecf36f7497237a87b90d63e97cfd0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_702.asset.meta b/Assets/04_Tiles/Floor/TileSet_702.asset.meta new file mode 100644 index 0000000..4e01fdf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_702.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8bc16d2edb963d4b83da32b9a4a3fcf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_703.asset b/Assets/04_Tiles/Floor/TileSet_703.asset new file mode 100644 index 0000000..8ec3738 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_703.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf1c1df9cd794b1817cd31553aec88205137a753dd6e793dee142eeeee666a2 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_703.asset.meta b/Assets/04_Tiles/Floor/TileSet_703.asset.meta new file mode 100644 index 0000000..e081904 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_703.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aaa410f604998b14a856cfaaee04b00a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_704.asset b/Assets/04_Tiles/Floor/TileSet_704.asset new file mode 100644 index 0000000..9f9fe2c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_704.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60bee4552b96a8a37ee0d04737849a1b81123485403e896780e8088423343ea1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_704.asset.meta b/Assets/04_Tiles/Floor/TileSet_704.asset.meta new file mode 100644 index 0000000..935ecb7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_704.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8ad482286899a545b5bcae02bc0e8f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_705.asset b/Assets/04_Tiles/Floor/TileSet_705.asset new file mode 100644 index 0000000..65a0449 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_705.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b6a589da42a144a745f2d235a8f06ceaff85d04ca5feeb016cc8a4db356d2d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_705.asset.meta b/Assets/04_Tiles/Floor/TileSet_705.asset.meta new file mode 100644 index 0000000..5b24166 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_705.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b28ffa80c00e09f41b42914124d0f2a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_706.asset b/Assets/04_Tiles/Floor/TileSet_706.asset new file mode 100644 index 0000000..cbfc5c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_706.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9052f707acb444434130b52b41322e53b350fabcd473f1736edf4c6818855f1a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_706.asset.meta b/Assets/04_Tiles/Floor/TileSet_706.asset.meta new file mode 100644 index 0000000..fc8c70c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_706.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9e349d73927ed543b17a52f774cf3fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_707.asset b/Assets/04_Tiles/Floor/TileSet_707.asset new file mode 100644 index 0000000..c3eb51c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_707.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8ce0c4f328a0b8549af85a54e31f253d03a984b81430c7a4d06d293a665d069 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_707.asset.meta b/Assets/04_Tiles/Floor/TileSet_707.asset.meta new file mode 100644 index 0000000..279dfa4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_707.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e37a048d45fb77488c279621604432c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_708.asset b/Assets/04_Tiles/Floor/TileSet_708.asset new file mode 100644 index 0000000..e49252d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_708.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:728d78bda99dff96cd273cb5949c2106b6873d55d3ed88bee4961886253c74af +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_708.asset.meta b/Assets/04_Tiles/Floor/TileSet_708.asset.meta new file mode 100644 index 0000000..849e852 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_708.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee5ebbcad87030c4fab9eae52eef8ab2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_709.asset b/Assets/04_Tiles/Floor/TileSet_709.asset new file mode 100644 index 0000000..f829bcd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_709.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634825303c75f5668babfdccb349203cad5d3e089582cff6ae695e35f417153f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_709.asset.meta b/Assets/04_Tiles/Floor/TileSet_709.asset.meta new file mode 100644 index 0000000..8288fff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_709.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93b5630029851d84898fb3925c9c94a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_71.asset b/Assets/04_Tiles/Floor/TileSet_71.asset new file mode 100644 index 0000000..94198a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_71.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fba4fa5c970e9ec880ea9dfc5ca534d9c1071b216ad509b4f1ccb009abf54a3 +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_71.asset.meta b/Assets/04_Tiles/Floor/TileSet_71.asset.meta new file mode 100644 index 0000000..3adc4eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_71.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 028fb979c1be54447ae74577125af2bb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_710.asset b/Assets/04_Tiles/Floor/TileSet_710.asset new file mode 100644 index 0000000..4dd4002 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_710.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45b8c19e67752a4fc8e8830542deb50beadaf7678e97de3b3f56e87cfae48bf0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_710.asset.meta b/Assets/04_Tiles/Floor/TileSet_710.asset.meta new file mode 100644 index 0000000..20f5c86 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_710.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af934aa4a269372459e494a2107b38d5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_711.asset b/Assets/04_Tiles/Floor/TileSet_711.asset new file mode 100644 index 0000000..c9ae38c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_711.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1c51f0c6e81c7a18d539b8038d72f3b55c275dc0539afc388f35396aac56020 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_711.asset.meta b/Assets/04_Tiles/Floor/TileSet_711.asset.meta new file mode 100644 index 0000000..de936f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_711.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84d17840c781d594c9088fd3d2a8f0b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_712.asset b/Assets/04_Tiles/Floor/TileSet_712.asset new file mode 100644 index 0000000..5cccc88 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_712.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46449d6afcd286a0a4e50d52801a5369a03db9c247c364d5fe33074afed70d65 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_712.asset.meta b/Assets/04_Tiles/Floor/TileSet_712.asset.meta new file mode 100644 index 0000000..5cdd7bf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_712.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ebb8b9af7ddae1143adfa317f7a331db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_713.asset b/Assets/04_Tiles/Floor/TileSet_713.asset new file mode 100644 index 0000000..7e7c868 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_713.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cfa72b1e46af2b08d816000a228582f71f3576200ae06c444c66a78eb46afba +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_713.asset.meta b/Assets/04_Tiles/Floor/TileSet_713.asset.meta new file mode 100644 index 0000000..2ad4f2e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_713.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e87a6b2d4db63e40b46ecb9bef0a4a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_714.asset b/Assets/04_Tiles/Floor/TileSet_714.asset new file mode 100644 index 0000000..90c01c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_714.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:393cdf0e6350bb99b506f0c79da33bc8b3e09514220031a5a1ec5e03a8a36582 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_714.asset.meta b/Assets/04_Tiles/Floor/TileSet_714.asset.meta new file mode 100644 index 0000000..7acb767 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_714.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ae8383fbb79a88478b9caf583025b69 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_715.asset b/Assets/04_Tiles/Floor/TileSet_715.asset new file mode 100644 index 0000000..ed4e6db --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_715.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d565922b9d2499e6214b68576215b4e30ff69cc421b246ced325b1bf8f62d84 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_715.asset.meta b/Assets/04_Tiles/Floor/TileSet_715.asset.meta new file mode 100644 index 0000000..71b9acf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_715.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60eb142eddaa5d041b9fd8b3e16a2340 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_716.asset b/Assets/04_Tiles/Floor/TileSet_716.asset new file mode 100644 index 0000000..7ef48c0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_716.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c28b3b297b113203c1208b9e5e0af73f84c2323b675719900ff8216a9b4a48 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_716.asset.meta b/Assets/04_Tiles/Floor/TileSet_716.asset.meta new file mode 100644 index 0000000..adf5724 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_716.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5da526174c48e6d469eeba7f9a619eeb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_717.asset b/Assets/04_Tiles/Floor/TileSet_717.asset new file mode 100644 index 0000000..5a416c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_717.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfc5d4bc8b78175981706cad9b183b27a3f5a6431a5e8d7cb6ae6d734ee28699 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_717.asset.meta b/Assets/04_Tiles/Floor/TileSet_717.asset.meta new file mode 100644 index 0000000..7c464d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_717.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2615d6325b20c0c44bb7eebe9618f660 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_718.asset b/Assets/04_Tiles/Floor/TileSet_718.asset new file mode 100644 index 0000000..93bc5c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_718.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d0fc79ed0ff29a2f1b6013270e0c7ef77ce846bfffb3b9482550e5f8e0c6a7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_718.asset.meta b/Assets/04_Tiles/Floor/TileSet_718.asset.meta new file mode 100644 index 0000000..cb06e30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_718.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f8bb82a03007ff4cb73876b6bdfcf6a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_719.asset b/Assets/04_Tiles/Floor/TileSet_719.asset new file mode 100644 index 0000000..0885522 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_719.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144322a7cfe7e385546da6b6b689fd3c631c60ae88ba9131421ec21b7f483efc +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_719.asset.meta b/Assets/04_Tiles/Floor/TileSet_719.asset.meta new file mode 100644 index 0000000..71e30d4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_719.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9ef4a3fe7229ebf4a847fa624ab4577e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_72.asset b/Assets/04_Tiles/Floor/TileSet_72.asset new file mode 100644 index 0000000..4657582 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_72.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988d5d913b9e2eed4546df639fd5b4788a80feff6f260bcb47c5ee0f394534d2 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_72.asset.meta b/Assets/04_Tiles/Floor/TileSet_72.asset.meta new file mode 100644 index 0000000..ce76293 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_72.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e81c9dca28a5ad4f8205be65807c40a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_720.asset b/Assets/04_Tiles/Floor/TileSet_720.asset new file mode 100644 index 0000000..f93147f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_720.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f549e7048906de03aeed7b006129ee26b197fbf88df6e72ff82b52af43a422a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_720.asset.meta b/Assets/04_Tiles/Floor/TileSet_720.asset.meta new file mode 100644 index 0000000..8dd093a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_720.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 825ab77caa9dc344cadd3d3007a98c49 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_721.asset b/Assets/04_Tiles/Floor/TileSet_721.asset new file mode 100644 index 0000000..08fb79f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_721.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:346ec14eca56d06573edc4fc045f5c9e4fb83e810fb048224a3f1d590ff92f22 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_721.asset.meta b/Assets/04_Tiles/Floor/TileSet_721.asset.meta new file mode 100644 index 0000000..66cea42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_721.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2db95e23644fc604a89ccbb24e43dc34 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_722.asset b/Assets/04_Tiles/Floor/TileSet_722.asset new file mode 100644 index 0000000..f9a460d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_722.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e10b5a9e32f44a3d741e2fd95cf307dab24fcf7c5cd711ed674f6d05b06d4e9e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_722.asset.meta b/Assets/04_Tiles/Floor/TileSet_722.asset.meta new file mode 100644 index 0000000..9e6db6f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_722.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17636a0f63c7b3d418ab933685a75999 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_723.asset b/Assets/04_Tiles/Floor/TileSet_723.asset new file mode 100644 index 0000000..3129a23 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_723.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2d6d16fd7e6afd0a4ab81059a23c32a2758c95e3c67e60691248fa3936c341 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_723.asset.meta b/Assets/04_Tiles/Floor/TileSet_723.asset.meta new file mode 100644 index 0000000..a9acb36 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_723.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3429d58c4266eb249985f27ec6a31d4b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_724.asset b/Assets/04_Tiles/Floor/TileSet_724.asset new file mode 100644 index 0000000..7b884ed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_724.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3491408ffae1aac02b1ba98cf93e2f18866e2aa49c10a2e4858b7eb815d50b72 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_724.asset.meta b/Assets/04_Tiles/Floor/TileSet_724.asset.meta new file mode 100644 index 0000000..0d8c3fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_724.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05a50c51ecd35a94a8d95561c0151caf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_725.asset b/Assets/04_Tiles/Floor/TileSet_725.asset new file mode 100644 index 0000000..5a47199 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_725.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2c4200375e8f392038c4a58dbe631effe079cce80b7edb81d980152a4397982 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_725.asset.meta b/Assets/04_Tiles/Floor/TileSet_725.asset.meta new file mode 100644 index 0000000..e5f5142 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_725.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2b738f8ee6002164aac892e61939ffb0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_726.asset b/Assets/04_Tiles/Floor/TileSet_726.asset new file mode 100644 index 0000000..704bb7e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_726.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ccf653672e49e05e1f2875995dfc92deb73672700d3773987b3e3b6c3bff2b4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_726.asset.meta b/Assets/04_Tiles/Floor/TileSet_726.asset.meta new file mode 100644 index 0000000..361b78a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_726.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c9b0452f99bd6d749876f61953946524 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_727.asset b/Assets/04_Tiles/Floor/TileSet_727.asset new file mode 100644 index 0000000..a728668 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_727.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae5554ea1999ef6bcb1787b4ddbc6179f042ce7602cd88ac1c40199d766d1b6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_727.asset.meta b/Assets/04_Tiles/Floor/TileSet_727.asset.meta new file mode 100644 index 0000000..0cad323 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_727.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc58d1b6e53d4534c943f26e3070ccfd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_728.asset b/Assets/04_Tiles/Floor/TileSet_728.asset new file mode 100644 index 0000000..f94ef66 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_728.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89dd8afb50ecab9a0fdb87d9af44edad62807325cd75d4719d4b6c96c6e86520 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_728.asset.meta b/Assets/04_Tiles/Floor/TileSet_728.asset.meta new file mode 100644 index 0000000..b5899a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_728.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bb54a8bcb9a47645bbf45dead82868f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_729.asset b/Assets/04_Tiles/Floor/TileSet_729.asset new file mode 100644 index 0000000..0f112c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_729.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae31874b4b0244cb0dea0f590926df1972e5f03db96d17d97f2872f4b284db1 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_729.asset.meta b/Assets/04_Tiles/Floor/TileSet_729.asset.meta new file mode 100644 index 0000000..bf9fc2f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_729.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d38efb6d36485b442b1b9bf29177139f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_73.asset b/Assets/04_Tiles/Floor/TileSet_73.asset new file mode 100644 index 0000000..5e5bf1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_73.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ccc75099451027e69f98f4a33365661ce67d08a2197c18cfdb5e00cd2f38eb7 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_73.asset.meta b/Assets/04_Tiles/Floor/TileSet_73.asset.meta new file mode 100644 index 0000000..5f041c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_73.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 57598857a8a94514787477a69506ffdc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_730.asset b/Assets/04_Tiles/Floor/TileSet_730.asset new file mode 100644 index 0000000..e82830d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_730.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fad1db928ffa144326ee47eb9b3bfb78f2d42b1fd4a56a41d4d9c512efcf7884 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_730.asset.meta b/Assets/04_Tiles/Floor/TileSet_730.asset.meta new file mode 100644 index 0000000..895fecf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_730.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3266a67cf105c844a9086f7fa7c0fe13 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_731.asset b/Assets/04_Tiles/Floor/TileSet_731.asset new file mode 100644 index 0000000..70e3976 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_731.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2a35f3347d804617130befecf2ff0e2d03e82bdae6da81c1f28492d389e856f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_731.asset.meta b/Assets/04_Tiles/Floor/TileSet_731.asset.meta new file mode 100644 index 0000000..48cc32d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_731.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6725c9d55ef92c4598a89f44c2cbf5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_732.asset b/Assets/04_Tiles/Floor/TileSet_732.asset new file mode 100644 index 0000000..032ddbf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_732.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48cc0c9a86140383b1ac2030f74d15c8759e7a21c543d08adfcd31c41921ce32 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_732.asset.meta b/Assets/04_Tiles/Floor/TileSet_732.asset.meta new file mode 100644 index 0000000..1b0d762 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_732.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bedb026341e9ce4389a555b663a1def +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_733.asset b/Assets/04_Tiles/Floor/TileSet_733.asset new file mode 100644 index 0000000..e22399c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_733.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d25d4e301adf38e322207093f67d246bca35da1a489c7c8a0fcdd18eed0d0b0e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_733.asset.meta b/Assets/04_Tiles/Floor/TileSet_733.asset.meta new file mode 100644 index 0000000..682f7b2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_733.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1770ab4c9f505fd4eab4cfaffcf2deb2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_734.asset b/Assets/04_Tiles/Floor/TileSet_734.asset new file mode 100644 index 0000000..15ab49f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_734.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:370b017b0e5e0f31fd4b525df19e0b48ee6841fc294da2a11395ab5794bb1391 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_734.asset.meta b/Assets/04_Tiles/Floor/TileSet_734.asset.meta new file mode 100644 index 0000000..44ec63c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_734.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 93585dc16dfed674398d4f9c04f51ef3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_735.asset b/Assets/04_Tiles/Floor/TileSet_735.asset new file mode 100644 index 0000000..2677b38 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_735.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feada0659fbe1289a787c29897eacc72e61a7985bf49afdef6f871e87703db56 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_735.asset.meta b/Assets/04_Tiles/Floor/TileSet_735.asset.meta new file mode 100644 index 0000000..e5d3fbb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_735.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed59c7c7d6964b142b8de4b2fb9cbdd6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_736.asset b/Assets/04_Tiles/Floor/TileSet_736.asset new file mode 100644 index 0000000..f9c833a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_736.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dade6bc0b7b4673fb9216226ea64a79b8c740034e75ebd9a1911eb138ecf4520 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_736.asset.meta b/Assets/04_Tiles/Floor/TileSet_736.asset.meta new file mode 100644 index 0000000..4cb4701 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_736.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0daac20336e3aa4f98f3b77b8a63382 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_737.asset b/Assets/04_Tiles/Floor/TileSet_737.asset new file mode 100644 index 0000000..557ab39 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_737.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00a41db61a8328befc6abf9e8afdb0a30b52182a00460a08a09f45464c8b6f7f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_737.asset.meta b/Assets/04_Tiles/Floor/TileSet_737.asset.meta new file mode 100644 index 0000000..c50979f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_737.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d732cb2053f403b40a7678fdff604d18 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_738.asset b/Assets/04_Tiles/Floor/TileSet_738.asset new file mode 100644 index 0000000..6919175 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_738.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6742ec1b4be32b86fecf02a0beb4d310ee12753e8bd99a3cf494b22a103e8855 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_738.asset.meta b/Assets/04_Tiles/Floor/TileSet_738.asset.meta new file mode 100644 index 0000000..98e9254 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_738.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0aca42559ee5ee4e9e334fc2bbb6eb7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_739.asset b/Assets/04_Tiles/Floor/TileSet_739.asset new file mode 100644 index 0000000..0f94991 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_739.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c431a55ec02b1642445c14f97d19d9597016d13b1acc135ea945b1111e451749 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_739.asset.meta b/Assets/04_Tiles/Floor/TileSet_739.asset.meta new file mode 100644 index 0000000..3739934 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_739.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 011d08413409a3c4c8f09ed4bab918fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_74.asset b/Assets/04_Tiles/Floor/TileSet_74.asset new file mode 100644 index 0000000..c5b3871 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_74.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f55853d3a903a060d5c8c1a26d14ebda20ca866fda16d86568128ceeb96389a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_74.asset.meta b/Assets/04_Tiles/Floor/TileSet_74.asset.meta new file mode 100644 index 0000000..8044bfb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_74.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9853e1472c64adb4b92445868b1d008a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_740.asset b/Assets/04_Tiles/Floor/TileSet_740.asset new file mode 100644 index 0000000..f328487 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_740.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c04d8981d13a1c037382c834f72d1175834d30f7538baf644dc3321773a7c688 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_740.asset.meta b/Assets/04_Tiles/Floor/TileSet_740.asset.meta new file mode 100644 index 0000000..d32fcff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_740.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1eea975954fb4ec42ad54db83789882d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_741.asset b/Assets/04_Tiles/Floor/TileSet_741.asset new file mode 100644 index 0000000..85b7747 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_741.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ee86d8f8a0a6fba6d42bf63a1214ca01b94e5cacd5d0e82211daf5e1cba290 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_741.asset.meta b/Assets/04_Tiles/Floor/TileSet_741.asset.meta new file mode 100644 index 0000000..54422dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_741.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7c0a075804c148a43be72d641467b9da +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_742.asset b/Assets/04_Tiles/Floor/TileSet_742.asset new file mode 100644 index 0000000..d77eac4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_742.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83bead3ba88077193922b9de475aad72997b7f5671dc0056a7f1ad376bfbf118 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_742.asset.meta b/Assets/04_Tiles/Floor/TileSet_742.asset.meta new file mode 100644 index 0000000..e3f25ca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_742.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 50d6638573c0bf34ab804f6233b48237 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_743.asset b/Assets/04_Tiles/Floor/TileSet_743.asset new file mode 100644 index 0000000..791773c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_743.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e3e96f50e39ade174175192d7ff849a0abbcb66aeb2ad4a6ead7863ab479062 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_743.asset.meta b/Assets/04_Tiles/Floor/TileSet_743.asset.meta new file mode 100644 index 0000000..eef1e4d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_743.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3077a7b08f461704a89b2bacfdadebbe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_744.asset b/Assets/04_Tiles/Floor/TileSet_744.asset new file mode 100644 index 0000000..c10f64d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_744.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f9e0ce353545d02f5c1d1e9db2bedb9e848271c3f2aba43f2ae2109ebefc907 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_744.asset.meta b/Assets/04_Tiles/Floor/TileSet_744.asset.meta new file mode 100644 index 0000000..202e70d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_744.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f6378c5c148f920498940a5061aa31f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_745.asset b/Assets/04_Tiles/Floor/TileSet_745.asset new file mode 100644 index 0000000..2bada5a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_745.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bdb526a4b984377f9e7130fd7d0692578f4af9edfab2347a6844e13a880ecf +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_745.asset.meta b/Assets/04_Tiles/Floor/TileSet_745.asset.meta new file mode 100644 index 0000000..f79728d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_745.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 867ea067f9b2af444b6ff32f88043b97 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_746.asset b/Assets/04_Tiles/Floor/TileSet_746.asset new file mode 100644 index 0000000..feb8322 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_746.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79abf696f17476c0048a58d36a0bdaeba1016356e867cdf533ab9382038155c9 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_746.asset.meta b/Assets/04_Tiles/Floor/TileSet_746.asset.meta new file mode 100644 index 0000000..ef77e42 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_746.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 683c400e666e14248912ffee7e36754d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_747.asset b/Assets/04_Tiles/Floor/TileSet_747.asset new file mode 100644 index 0000000..35c5368 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_747.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4abe0da2785c146363d2b9565e5b800777d80bd3dd7419d5411d69b8def5d49 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_747.asset.meta b/Assets/04_Tiles/Floor/TileSet_747.asset.meta new file mode 100644 index 0000000..0729db0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_747.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a9d76a0e8098a14cab0c8e267838ccc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_748.asset b/Assets/04_Tiles/Floor/TileSet_748.asset new file mode 100644 index 0000000..8cb3c58 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_748.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e837369ab1055734a3bab712428587ab92853fb3e723699394fa8331360465 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_748.asset.meta b/Assets/04_Tiles/Floor/TileSet_748.asset.meta new file mode 100644 index 0000000..e502391 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_748.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 78753727aa8e60e4aae63547ca5c0d78 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_749.asset b/Assets/04_Tiles/Floor/TileSet_749.asset new file mode 100644 index 0000000..e8a5f47 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_749.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3934b44f058804532442de8621bfe856f4e6060c5e5ef3fa5c252d7c72d86c3 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_749.asset.meta b/Assets/04_Tiles/Floor/TileSet_749.asset.meta new file mode 100644 index 0000000..9044c23 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_749.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 190516b0204fa724bb853403572d748d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_75.asset b/Assets/04_Tiles/Floor/TileSet_75.asset new file mode 100644 index 0000000..87a0ab4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_75.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66664d0da13730a8449eb3fd17dc31f6c16d43647467926ce1d31b29528f27b8 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_75.asset.meta b/Assets/04_Tiles/Floor/TileSet_75.asset.meta new file mode 100644 index 0000000..5a11c3c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_75.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3dae945af4edf714dad25b992fb7c624 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_750.asset b/Assets/04_Tiles/Floor/TileSet_750.asset new file mode 100644 index 0000000..16984df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_750.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac318b279b6018f4fb307ecc331a468dd235226929cc0ebc1334c01ad5fa3574 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_750.asset.meta b/Assets/04_Tiles/Floor/TileSet_750.asset.meta new file mode 100644 index 0000000..0e7bbcc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_750.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33ab0a8dbe4967a409764f92c03163f2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_751.asset b/Assets/04_Tiles/Floor/TileSet_751.asset new file mode 100644 index 0000000..60574ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_751.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ead52a149574221b733e2f89694e9aaf5387c5cbde6140b10726f1cfeb64971 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_751.asset.meta b/Assets/04_Tiles/Floor/TileSet_751.asset.meta new file mode 100644 index 0000000..8660055 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_751.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d399306bf81aaa469cfe6f3312a31a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_752.asset b/Assets/04_Tiles/Floor/TileSet_752.asset new file mode 100644 index 0000000..393be82 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_752.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b22d3d2ae09ac9004750abe87997d0467c53ff90b82f35019f7683358e587580 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_752.asset.meta b/Assets/04_Tiles/Floor/TileSet_752.asset.meta new file mode 100644 index 0000000..bf9f605 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_752.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a0c0d91177fb77e41a956a1b797b29a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_753.asset b/Assets/04_Tiles/Floor/TileSet_753.asset new file mode 100644 index 0000000..34ed8ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_753.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9869982755233da5b65911464d92879924dfdee877ebf3677779d59083c2f9f4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_753.asset.meta b/Assets/04_Tiles/Floor/TileSet_753.asset.meta new file mode 100644 index 0000000..f3b0ff2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_753.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c2813a996abdfb4786ebc1b978c4544 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_754.asset b/Assets/04_Tiles/Floor/TileSet_754.asset new file mode 100644 index 0000000..1aba4f8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_754.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be491ac8d8f541d6fdce19f019de4009314757808145ab072593c8e4cae25d2c +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_754.asset.meta b/Assets/04_Tiles/Floor/TileSet_754.asset.meta new file mode 100644 index 0000000..d98b872 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_754.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13d8a90b10e1f0448a7c55411f34d526 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_755.asset b/Assets/04_Tiles/Floor/TileSet_755.asset new file mode 100644 index 0000000..eabc3b2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_755.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48f2f4b38e099718043b6dad654fd8ac8e51876369f469d07532fa617e2cd92f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_755.asset.meta b/Assets/04_Tiles/Floor/TileSet_755.asset.meta new file mode 100644 index 0000000..31a427d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_755.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8eef75a5f7a5aa44b73ce681764a5d6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_756.asset b/Assets/04_Tiles/Floor/TileSet_756.asset new file mode 100644 index 0000000..5631886 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_756.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e2ab16a07deb8d4f331f337754b69a043d7faa41377e95f3af9e5b46017198c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_756.asset.meta b/Assets/04_Tiles/Floor/TileSet_756.asset.meta new file mode 100644 index 0000000..bd6607a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_756.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff8d2818be9dfbd49b6adbad9c9f682f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_757.asset b/Assets/04_Tiles/Floor/TileSet_757.asset new file mode 100644 index 0000000..f7ca51d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_757.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:339a203cc2ebf37d5b4e4cf0667031c77005166bfb50b8840255e7872a1e17d7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_757.asset.meta b/Assets/04_Tiles/Floor/TileSet_757.asset.meta new file mode 100644 index 0000000..88b15c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_757.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 107a9be0be82da34e97fc874029fee8d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_758.asset b/Assets/04_Tiles/Floor/TileSet_758.asset new file mode 100644 index 0000000..5077b59 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_758.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00521575470bfa721969be1b15fa362310d369979c22ea2a9d47a0c7854008f1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_758.asset.meta b/Assets/04_Tiles/Floor/TileSet_758.asset.meta new file mode 100644 index 0000000..6a98768 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_758.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e413ce749b7c0d941b5aeb974470aa3d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_759.asset b/Assets/04_Tiles/Floor/TileSet_759.asset new file mode 100644 index 0000000..de1515f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_759.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:191d98c5755c0d2648040e4e812ba345c3f73f2adddd382f8650fdf562c7e98f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_759.asset.meta b/Assets/04_Tiles/Floor/TileSet_759.asset.meta new file mode 100644 index 0000000..b9217c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_759.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 306ebc40b2ac410479ba20adbda67c2c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_76.asset b/Assets/04_Tiles/Floor/TileSet_76.asset new file mode 100644 index 0000000..9c07503 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_76.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1110a947311ac4fe0fc6b3e176911fa62bd630ebbd7e4775517f6781cf306a3e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_76.asset.meta b/Assets/04_Tiles/Floor/TileSet_76.asset.meta new file mode 100644 index 0000000..0898238 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_76.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff3e1d7117f79134aa1f7eea1c0898cd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_760.asset b/Assets/04_Tiles/Floor/TileSet_760.asset new file mode 100644 index 0000000..81d9081 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_760.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:822e6885cda353d33b86244fd0b3a17a0a3e1d01bcc115e0788fe20643feb721 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_760.asset.meta b/Assets/04_Tiles/Floor/TileSet_760.asset.meta new file mode 100644 index 0000000..34a675e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_760.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68c989c6c5c2d2745966beab5a6b88b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_761.asset b/Assets/04_Tiles/Floor/TileSet_761.asset new file mode 100644 index 0000000..a4055ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_761.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbfc4683bc44c8aefb67afdee799119b6e36fec242cbd50ee1a165ad992583d8 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_761.asset.meta b/Assets/04_Tiles/Floor/TileSet_761.asset.meta new file mode 100644 index 0000000..b9ffdc4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_761.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8cee1881fa0eb46419f5813fc76d6a9a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_762.asset b/Assets/04_Tiles/Floor/TileSet_762.asset new file mode 100644 index 0000000..7010ca0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_762.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dbe56305b3f02dd294f39f1fa9298300dd00c6abc9277621a5d95d94bcc29cc +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_762.asset.meta b/Assets/04_Tiles/Floor/TileSet_762.asset.meta new file mode 100644 index 0000000..ad40b80 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_762.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 45f1d631b2906414ca325c1db606f5a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_763.asset b/Assets/04_Tiles/Floor/TileSet_763.asset new file mode 100644 index 0000000..3dbaa32 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_763.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3453bcadf1435efdc2fd43c023364dc50d9b354128d550e9fda5fb0b4fafd9f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_763.asset.meta b/Assets/04_Tiles/Floor/TileSet_763.asset.meta new file mode 100644 index 0000000..53c15f7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_763.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 380ec98aab689c64aa1707cf9b008e22 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_764.asset b/Assets/04_Tiles/Floor/TileSet_764.asset new file mode 100644 index 0000000..878c1d5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_764.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:733150a542ba22c6374bc01e0b04444137bc7c9b2055de7d121f51b62977aa8a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_764.asset.meta b/Assets/04_Tiles/Floor/TileSet_764.asset.meta new file mode 100644 index 0000000..f4ccb9e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_764.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3e058e847ec9714598a46b822b4faf9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_765.asset b/Assets/04_Tiles/Floor/TileSet_765.asset new file mode 100644 index 0000000..e918c80 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_765.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b8b9d986bfd8fbd08252ceeefbf4cd00edb25a909881da1976b6eca2bd01b0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_765.asset.meta b/Assets/04_Tiles/Floor/TileSet_765.asset.meta new file mode 100644 index 0000000..856f959 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_765.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66862841a9fd3a64fbc6f216cee3832b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_766.asset b/Assets/04_Tiles/Floor/TileSet_766.asset new file mode 100644 index 0000000..ff55dfd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_766.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5ff2e18f5b81892bc151da86aca4f6d32ca4ce58cef1c94d6e1d2487e19edef +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_766.asset.meta b/Assets/04_Tiles/Floor/TileSet_766.asset.meta new file mode 100644 index 0000000..dbffb78 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_766.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e4835622ca943bf448e858573f7e2dc7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_767.asset b/Assets/04_Tiles/Floor/TileSet_767.asset new file mode 100644 index 0000000..f461fb0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_767.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acf8660096b7423c54aeddf3a3a4d581ebedacd2d55e3b0da14b61c3c9a454d9 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_767.asset.meta b/Assets/04_Tiles/Floor/TileSet_767.asset.meta new file mode 100644 index 0000000..91fbf9f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_767.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e0455be28c468a4a939bd06a34854ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_768.asset b/Assets/04_Tiles/Floor/TileSet_768.asset new file mode 100644 index 0000000..1eadcf9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_768.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7344d92559b7693894c005840ef42c40dd814d2213e389ca8d10e6df005cf7fb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_768.asset.meta b/Assets/04_Tiles/Floor/TileSet_768.asset.meta new file mode 100644 index 0000000..0d76c78 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_768.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e9def7ff842ce74ca37e15bdb467e02 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_769.asset b/Assets/04_Tiles/Floor/TileSet_769.asset new file mode 100644 index 0000000..55a9cd3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_769.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05e206b1a706305d7044fc7817ec2fd05c6160ff4aa09ea6b61a5e40290e83a6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_769.asset.meta b/Assets/04_Tiles/Floor/TileSet_769.asset.meta new file mode 100644 index 0000000..9394898 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_769.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a4d9801cef990ad4bb7ecf54f9e89700 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_77.asset b/Assets/04_Tiles/Floor/TileSet_77.asset new file mode 100644 index 0000000..78e73f3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_77.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023fb6216f4481ffa5000fa0580971d78895bfe50957b76ef82c0a9edd10ed84 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_77.asset.meta b/Assets/04_Tiles/Floor/TileSet_77.asset.meta new file mode 100644 index 0000000..68c4d69 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_77.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a675e4297467fd438d0d655751e94b2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_770.asset b/Assets/04_Tiles/Floor/TileSet_770.asset new file mode 100644 index 0000000..3bc720e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_770.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4adbd39d993fd3750f4b58a8072c50be1ae130a287f76e3467ae3b07ee45c25 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_770.asset.meta b/Assets/04_Tiles/Floor/TileSet_770.asset.meta new file mode 100644 index 0000000..7211969 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_770.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af931ac894b7602468bd437883265565 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_771.asset b/Assets/04_Tiles/Floor/TileSet_771.asset new file mode 100644 index 0000000..dbc90d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_771.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5329ec5e7b7dbddf9a007a23c2e53fd702b88827ee5e857ad52c315f9be7cf97 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_771.asset.meta b/Assets/04_Tiles/Floor/TileSet_771.asset.meta new file mode 100644 index 0000000..838be22 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_771.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 576c2bf965de5f04089b14ac73cc6625 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_772.asset b/Assets/04_Tiles/Floor/TileSet_772.asset new file mode 100644 index 0000000..04a6edd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_772.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc43f97b7c692299bd5c8122430a4d8c51271e6b6ed339384654941b15b8592d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_772.asset.meta b/Assets/04_Tiles/Floor/TileSet_772.asset.meta new file mode 100644 index 0000000..190860f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_772.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 709c985e884137d4490cc4c988417d56 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_773.asset b/Assets/04_Tiles/Floor/TileSet_773.asset new file mode 100644 index 0000000..68ca55b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_773.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:738542b3a26835c197d0712bb8c1e0e95c3e04f0372b079446ddd8ba79b19f0a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_773.asset.meta b/Assets/04_Tiles/Floor/TileSet_773.asset.meta new file mode 100644 index 0000000..3e3c548 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_773.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c43cbc0b34b887f4c82ec3be12563687 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_774.asset b/Assets/04_Tiles/Floor/TileSet_774.asset new file mode 100644 index 0000000..c7a69cc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_774.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56587710b2ff1800fb043918df6d65fd86127adaff8c7908ce74c7c51a253470 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_774.asset.meta b/Assets/04_Tiles/Floor/TileSet_774.asset.meta new file mode 100644 index 0000000..e667eff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_774.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e1f9ce4b425f5748a7d064ab0223c5f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_775.asset b/Assets/04_Tiles/Floor/TileSet_775.asset new file mode 100644 index 0000000..3cec81a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_775.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e0901f6fbaa0c08eeb94cc92ad4b87840c80faa005f2e0ce790cf64e59b2e84 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_775.asset.meta b/Assets/04_Tiles/Floor/TileSet_775.asset.meta new file mode 100644 index 0000000..54bd06f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_775.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b1a360d80a07d5b478b2a0da2cbeae30 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_776.asset b/Assets/04_Tiles/Floor/TileSet_776.asset new file mode 100644 index 0000000..5eb83ff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_776.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f494d519099fe23c861d6d786fda734c6e352a5f43da29a01a68d731528778de +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_776.asset.meta b/Assets/04_Tiles/Floor/TileSet_776.asset.meta new file mode 100644 index 0000000..9fa9353 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_776.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cdab00ddee7f02448a3659f7ad6bc978 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_777.asset b/Assets/04_Tiles/Floor/TileSet_777.asset new file mode 100644 index 0000000..487798f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_777.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e689d8fff7e53ecd9115c9f251c0e4a2b0a4ef7b3b274ede6fc89969c70bdbe +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_777.asset.meta b/Assets/04_Tiles/Floor/TileSet_777.asset.meta new file mode 100644 index 0000000..4f3d98c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_777.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41a8e5fffe66ddb40bfeeb555301d51c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_778.asset b/Assets/04_Tiles/Floor/TileSet_778.asset new file mode 100644 index 0000000..4f41e0d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_778.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1381f52586dc4b3c80862659f1204a5dcab49dc05abaad09775e08ff76a44b5a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_778.asset.meta b/Assets/04_Tiles/Floor/TileSet_778.asset.meta new file mode 100644 index 0000000..74755ee --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_778.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 713c3d4d8b38e32438d5cc91002cc1fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_779.asset b/Assets/04_Tiles/Floor/TileSet_779.asset new file mode 100644 index 0000000..3341f81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_779.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e83407bdbd9f93fa43c0810c50de3cfe8d83b7debacc9b16c92106298e173be +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_779.asset.meta b/Assets/04_Tiles/Floor/TileSet_779.asset.meta new file mode 100644 index 0000000..b17635a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_779.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6dd8d79729414d43b1380456219b136 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_78.asset b/Assets/04_Tiles/Floor/TileSet_78.asset new file mode 100644 index 0000000..2182dd3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_78.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:462e44bbd4cf44ec844de0dc2b5c5d830bdc297c0b7e625cd255c8f0ee47b120 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_78.asset.meta b/Assets/04_Tiles/Floor/TileSet_78.asset.meta new file mode 100644 index 0000000..a15fe47 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_78.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 68e8f0863eadce54ba297ce7761f5d17 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_780.asset b/Assets/04_Tiles/Floor/TileSet_780.asset new file mode 100644 index 0000000..21ce471 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_780.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a65c7ef6fa7fa69d768f27d7206004c419ddde9ef06ef515cf4cb7e0367c0c4 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_780.asset.meta b/Assets/04_Tiles/Floor/TileSet_780.asset.meta new file mode 100644 index 0000000..e8c8f04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_780.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 560bc25e13f34ca4ba08e9fe2b3e74be +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_781.asset b/Assets/04_Tiles/Floor/TileSet_781.asset new file mode 100644 index 0000000..f4bce91 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_781.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3278701cc65b05714fb036e2fc6bbee788bd5d04b1a1e0a186498181ee3d0c30 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_781.asset.meta b/Assets/04_Tiles/Floor/TileSet_781.asset.meta new file mode 100644 index 0000000..03a458d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_781.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36b0a836bbd79df4ab028557b99022e5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_782.asset b/Assets/04_Tiles/Floor/TileSet_782.asset new file mode 100644 index 0000000..204a8c4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_782.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:889a6e2e906554a803ad1e74271b6d6744800f103813802168fb66cdb3bd2ad2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_782.asset.meta b/Assets/04_Tiles/Floor/TileSet_782.asset.meta new file mode 100644 index 0000000..be92b65 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_782.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c246f67d6fcb0040aae5f122d7245ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_783.asset b/Assets/04_Tiles/Floor/TileSet_783.asset new file mode 100644 index 0000000..85f5017 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_783.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f95ead3aac1740688a8e0e61dc368fe3d921ebcf042edacb28b2c059cc5f1ba +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_783.asset.meta b/Assets/04_Tiles/Floor/TileSet_783.asset.meta new file mode 100644 index 0000000..c60eb2f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_783.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 83208834564d40d49a5e6095df641c57 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_784.asset b/Assets/04_Tiles/Floor/TileSet_784.asset new file mode 100644 index 0000000..cda2cd8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_784.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35971794bc88ec324e750aa95ff5108d3b27984db9e41b0d68cb9b72dadb27f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_784.asset.meta b/Assets/04_Tiles/Floor/TileSet_784.asset.meta new file mode 100644 index 0000000..00e7531 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_784.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2dcd0c01f19a77b4c8f2de062790877b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_785.asset b/Assets/04_Tiles/Floor/TileSet_785.asset new file mode 100644 index 0000000..fe20c88 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_785.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64216f75f36727dd8542a9a46b204fad6bfe45ba0e1dde9a11cc919a4d91a34a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_785.asset.meta b/Assets/04_Tiles/Floor/TileSet_785.asset.meta new file mode 100644 index 0000000..8b099c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_785.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c940068f83c98724ba6f2497590ae264 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_786.asset b/Assets/04_Tiles/Floor/TileSet_786.asset new file mode 100644 index 0000000..08a6ba5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_786.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b3580dcb38cb017f85a332207c2b074218049c72892b0cd2b12b10ded0bf56e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_786.asset.meta b/Assets/04_Tiles/Floor/TileSet_786.asset.meta new file mode 100644 index 0000000..d82d1db --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_786.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b1073b7717fb1844a2e943a6d1147fe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_787.asset b/Assets/04_Tiles/Floor/TileSet_787.asset new file mode 100644 index 0000000..ebe45dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_787.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:061a13a58a6af108cd98ce76c6bfe14f02f75f890efb7bfbf13a72baf892224b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_787.asset.meta b/Assets/04_Tiles/Floor/TileSet_787.asset.meta new file mode 100644 index 0000000..4f1c86a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_787.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a6a0a7036e1b1b4d9fe31b9668b346d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_788.asset b/Assets/04_Tiles/Floor/TileSet_788.asset new file mode 100644 index 0000000..eca4801 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_788.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2782a8b71141d8afee618ce50dae376f0cf10908ca8f5bf8ca8535277891e24 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_788.asset.meta b/Assets/04_Tiles/Floor/TileSet_788.asset.meta new file mode 100644 index 0000000..f382213 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_788.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1d884fb330c0210449dcc3ab667e65f4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_789.asset b/Assets/04_Tiles/Floor/TileSet_789.asset new file mode 100644 index 0000000..fef33ef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_789.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c40393639358fad6e8efd292d41fe7c4aaa489712ae79dc3aa976403f2e67c85 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_789.asset.meta b/Assets/04_Tiles/Floor/TileSet_789.asset.meta new file mode 100644 index 0000000..559bd81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_789.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5fc99030ee8d8e440b0afeace75f9f0f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_79.asset b/Assets/04_Tiles/Floor/TileSet_79.asset new file mode 100644 index 0000000..37580ec --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_79.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8153af88310045a5ddccfd5705ead93a1b722e6e07b02a575320e01ba2c0af +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_79.asset.meta b/Assets/04_Tiles/Floor/TileSet_79.asset.meta new file mode 100644 index 0000000..a1773c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_79.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 686b8b3b7668d2d44995638d74d1bfa9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_790.asset b/Assets/04_Tiles/Floor/TileSet_790.asset new file mode 100644 index 0000000..602c35c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_790.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3df6de8accc5a0915064ca32540e9e51f93735a41a75e9713acf171c20799d22 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_790.asset.meta b/Assets/04_Tiles/Floor/TileSet_790.asset.meta new file mode 100644 index 0000000..4dbc7b2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_790.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d149d7bd23e9a68499550268a1c95685 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_791.asset b/Assets/04_Tiles/Floor/TileSet_791.asset new file mode 100644 index 0000000..a2bafc8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_791.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477877ce82a2d65ea6fd85ec8286d2bce3a31c1d9fe2eb562c9a366de4abbc5e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_791.asset.meta b/Assets/04_Tiles/Floor/TileSet_791.asset.meta new file mode 100644 index 0000000..a319d92 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_791.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c56af92a206868749af9f726ab867448 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_792.asset b/Assets/04_Tiles/Floor/TileSet_792.asset new file mode 100644 index 0000000..d7b1f24 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_792.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df899d56dfc578626f2e7784178fe4eb7f72d2dd9f67bf0544297211559aa994 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_792.asset.meta b/Assets/04_Tiles/Floor/TileSet_792.asset.meta new file mode 100644 index 0000000..3845025 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_792.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3cf56a97e0b94d74aaf7087cfea52de1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_793.asset b/Assets/04_Tiles/Floor/TileSet_793.asset new file mode 100644 index 0000000..4204463 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_793.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:649cdc310df56d2046f39e2b9fc7d017faedec7c6c5a81103de8b5b0cd2b3119 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_793.asset.meta b/Assets/04_Tiles/Floor/TileSet_793.asset.meta new file mode 100644 index 0000000..4b358ef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_793.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 167cfdca70f538241ab461b8fda0f129 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_794.asset b/Assets/04_Tiles/Floor/TileSet_794.asset new file mode 100644 index 0000000..7fb9d3c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_794.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5c04b3cc096cb85736168073f2e45fd1c5aa22357bdb6adbe6eb7988c253416 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_794.asset.meta b/Assets/04_Tiles/Floor/TileSet_794.asset.meta new file mode 100644 index 0000000..abc9f8c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_794.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dcb7744b5e3ba314e9db3b7dd33274af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_795.asset b/Assets/04_Tiles/Floor/TileSet_795.asset new file mode 100644 index 0000000..51e17a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_795.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fc60ac65cd5a3ff0b51e6f0b1507d79d95ac2d82d052e5f0da0699a55eba406 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_795.asset.meta b/Assets/04_Tiles/Floor/TileSet_795.asset.meta new file mode 100644 index 0000000..cf472ef --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_795.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b808e93b92a42124bafbbc4264401308 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_796.asset b/Assets/04_Tiles/Floor/TileSet_796.asset new file mode 100644 index 0000000..c57740a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_796.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:801892234fa19637bc621d006e875c5ee7af2faa5eec8960788dc9b3d16f8eb4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_796.asset.meta b/Assets/04_Tiles/Floor/TileSet_796.asset.meta new file mode 100644 index 0000000..52116f3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_796.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 098ba313b0c84d64ab0d8d265609bf83 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_797.asset b/Assets/04_Tiles/Floor/TileSet_797.asset new file mode 100644 index 0000000..912352f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_797.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19175d92f6384def7278af6c6bf06c09915c2374c7d7cfc31a9cae62d761d48d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_797.asset.meta b/Assets/04_Tiles/Floor/TileSet_797.asset.meta new file mode 100644 index 0000000..8401350 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_797.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 995a0ea10d3f79746add8f37ac5a3371 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_798.asset b/Assets/04_Tiles/Floor/TileSet_798.asset new file mode 100644 index 0000000..ad5a7df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_798.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cda81c5eee3c46b14a215d3d134525c4845b64c5db03c538113a78b9d93efb07 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_798.asset.meta b/Assets/04_Tiles/Floor/TileSet_798.asset.meta new file mode 100644 index 0000000..80062bb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_798.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3cf94cc75a14fe44c983c0246fd2f304 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_799.asset b/Assets/04_Tiles/Floor/TileSet_799.asset new file mode 100644 index 0000000..a3df64e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_799.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4106a715a9a0d455d1d79d7cd937b6c4ff8589fcf0b12eccb019bc994a358b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_799.asset.meta b/Assets/04_Tiles/Floor/TileSet_799.asset.meta new file mode 100644 index 0000000..cabe1df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_799.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 92d4845890b1e234b8c31e30c96e90dd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_8.asset b/Assets/04_Tiles/Floor/TileSet_8.asset new file mode 100644 index 0000000..a5a9210 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_8.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45ad15d7bcd270ab6806b37d1de024902eec6ac688cc546f7eae061b26cea784 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_8.asset.meta b/Assets/04_Tiles/Floor/TileSet_8.asset.meta new file mode 100644 index 0000000..510c8c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_8.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38df2b55c976ca74c92eb2b528600065 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_80.asset b/Assets/04_Tiles/Floor/TileSet_80.asset new file mode 100644 index 0000000..c761ec6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_80.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae05ec2b9ee014e1b8818d1d6ccd048d7951ddbf1cd9e8903c9cb018a22e95d +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_80.asset.meta b/Assets/04_Tiles/Floor/TileSet_80.asset.meta new file mode 100644 index 0000000..7b46005 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_80.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12e1b6b2c1150804cb51bc5f09a81b19 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_800.asset b/Assets/04_Tiles/Floor/TileSet_800.asset new file mode 100644 index 0000000..4eb6cb2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_800.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:880092512e99f6c9bf5d44d49dfc3bb504ced9a17c4d193e078c005d455f542a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_800.asset.meta b/Assets/04_Tiles/Floor/TileSet_800.asset.meta new file mode 100644 index 0000000..2176928 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_800.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e729315a5c98384fbdba376bb8bfdc5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_801.asset b/Assets/04_Tiles/Floor/TileSet_801.asset new file mode 100644 index 0000000..21e3c65 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_801.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6219218a3df6d4079627bc3fbaa2bdca4bda4aa9481c43bb15ad7bf4005d914 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_801.asset.meta b/Assets/04_Tiles/Floor/TileSet_801.asset.meta new file mode 100644 index 0000000..96af738 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_801.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c315204c8bb02f4b91740ae70d2bc4e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_802.asset b/Assets/04_Tiles/Floor/TileSet_802.asset new file mode 100644 index 0000000..48d2ed4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_802.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7872ac25f7cf7e3e6f0a352d43af870f56899cc5664b6fb22cacfc66c571d57 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_802.asset.meta b/Assets/04_Tiles/Floor/TileSet_802.asset.meta new file mode 100644 index 0000000..5736575 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_802.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18d67370e1f2c7843bfa369019239ab1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_803.asset b/Assets/04_Tiles/Floor/TileSet_803.asset new file mode 100644 index 0000000..e081251 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_803.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3bf8bf50d1c435fea16ce84940e5b8708e2c5916b6f80e775c72f39f35830b3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_803.asset.meta b/Assets/04_Tiles/Floor/TileSet_803.asset.meta new file mode 100644 index 0000000..e73bf36 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_803.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f42d795aef4788c4abbf2eef56765bc9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_804.asset b/Assets/04_Tiles/Floor/TileSet_804.asset new file mode 100644 index 0000000..0c2b4d4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_804.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:053f68e82ee2fb2e78eba832c9d79f3775ee3ceb29f89232a6f10df86a95b24d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_804.asset.meta b/Assets/04_Tiles/Floor/TileSet_804.asset.meta new file mode 100644 index 0000000..3b2bf8d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_804.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a58bda5da9ca12c4a903467e041bd84f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_805.asset b/Assets/04_Tiles/Floor/TileSet_805.asset new file mode 100644 index 0000000..c1802c5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_805.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02ca851ef689a4c2bc4d117aa885de7269fcdfa972502df382a31346b4d0f144 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_805.asset.meta b/Assets/04_Tiles/Floor/TileSet_805.asset.meta new file mode 100644 index 0000000..f56b4e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_805.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2668af09e7d5aa946a94435368cb0e58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_806.asset b/Assets/04_Tiles/Floor/TileSet_806.asset new file mode 100644 index 0000000..4e094ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_806.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19b09729194b0a2ec54c490c296d54170f3e5706e6bc38e3d1e9fdd916cd4467 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_806.asset.meta b/Assets/04_Tiles/Floor/TileSet_806.asset.meta new file mode 100644 index 0000000..52c9766 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_806.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66a0214710e96dc48a38b222ab80c915 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_807.asset b/Assets/04_Tiles/Floor/TileSet_807.asset new file mode 100644 index 0000000..8085493 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_807.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd8297564fc1001a6f669ca627d5e2771ec674c4c8c32113f5916158630aff30 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_807.asset.meta b/Assets/04_Tiles/Floor/TileSet_807.asset.meta new file mode 100644 index 0000000..37be345 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_807.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25c573cb0a7892a40959f35fc985b1cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_808.asset b/Assets/04_Tiles/Floor/TileSet_808.asset new file mode 100644 index 0000000..aaf24ad --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_808.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c45fa6bddbcb37a46f3396aa54a03827d142076ba7817005054cf8c8b30fc96 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_808.asset.meta b/Assets/04_Tiles/Floor/TileSet_808.asset.meta new file mode 100644 index 0000000..16ea531 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_808.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d6d5ed3a974a2f44a6506e5abbdd5a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_809.asset b/Assets/04_Tiles/Floor/TileSet_809.asset new file mode 100644 index 0000000..28adc90 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_809.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7217db289893bfb22b03f5b4f897bc6f48347d8edbf6e0890c7cf71181e1a0f7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_809.asset.meta b/Assets/04_Tiles/Floor/TileSet_809.asset.meta new file mode 100644 index 0000000..08e5e66 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_809.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4eff57387c79d564ca1862b17ddb8117 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_81.asset b/Assets/04_Tiles/Floor/TileSet_81.asset new file mode 100644 index 0000000..8b68f81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_81.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5587bd2c1e7930f256b60d8aa76959d289565c3866a6a0ab50a4d5c05ee14d +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_81.asset.meta b/Assets/04_Tiles/Floor/TileSet_81.asset.meta new file mode 100644 index 0000000..2986d3e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_81.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eadf1c3cafd27c340b2e75f7cdb7e564 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_810.asset b/Assets/04_Tiles/Floor/TileSet_810.asset new file mode 100644 index 0000000..fce35d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_810.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2a8c41f1c138a8daf3c81853118e0c4b003e0fd9958e5e54678584820535e9d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_810.asset.meta b/Assets/04_Tiles/Floor/TileSet_810.asset.meta new file mode 100644 index 0000000..face094 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_810.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 54fed3a981c24004e89dabb1994ed6e9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_811.asset b/Assets/04_Tiles/Floor/TileSet_811.asset new file mode 100644 index 0000000..a6a2ab1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_811.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17267bb7cd219e46525bbe7a89902edc6ec88ed6ed00a425aa3be9a5088b374e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_811.asset.meta b/Assets/04_Tiles/Floor/TileSet_811.asset.meta new file mode 100644 index 0000000..0b5703e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_811.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e4f8f544941a53c4cb79e373bde76e81 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_812.asset b/Assets/04_Tiles/Floor/TileSet_812.asset new file mode 100644 index 0000000..48e95a1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_812.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcfbde0046f10443975185704fb4946c1cdbab7455315374835f850916163aae +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_812.asset.meta b/Assets/04_Tiles/Floor/TileSet_812.asset.meta new file mode 100644 index 0000000..cbbfd13 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_812.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e49e68f8e38b9954ab1a286acdf8d225 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_813.asset b/Assets/04_Tiles/Floor/TileSet_813.asset new file mode 100644 index 0000000..5c6c810 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_813.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a011822c2f140f4424c546219f3e26b3b5e313801eab67d38d020372ddfbaed4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_813.asset.meta b/Assets/04_Tiles/Floor/TileSet_813.asset.meta new file mode 100644 index 0000000..0ea88e3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_813.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f92a99a4b7c5c82479cd98fb0c465fd6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_814.asset b/Assets/04_Tiles/Floor/TileSet_814.asset new file mode 100644 index 0000000..171fdfc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_814.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c73d438188b6a2340a73028df19112c84a505aa236757eb6d203f1f3833e47 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_814.asset.meta b/Assets/04_Tiles/Floor/TileSet_814.asset.meta new file mode 100644 index 0000000..e76a9a5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_814.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 107502701f75e1548ad18d4fdedd1067 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_815.asset b/Assets/04_Tiles/Floor/TileSet_815.asset new file mode 100644 index 0000000..52151bd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_815.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64387e7953c2b245d07cf7f41718673a198be311a6011d54829620eb9eb83b70 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_815.asset.meta b/Assets/04_Tiles/Floor/TileSet_815.asset.meta new file mode 100644 index 0000000..ef6c9b5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_815.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cad83218eeae2534bafa8c6946e49eaa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_816.asset b/Assets/04_Tiles/Floor/TileSet_816.asset new file mode 100644 index 0000000..a4d6a34 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_816.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88e9fd16f24bb0d72cc2b29fc6fe4f63eda355663569f17f0f3d85760f2a839e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_816.asset.meta b/Assets/04_Tiles/Floor/TileSet_816.asset.meta new file mode 100644 index 0000000..d712428 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_816.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df42bf76e18a83543b8271bf2510886b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_817.asset b/Assets/04_Tiles/Floor/TileSet_817.asset new file mode 100644 index 0000000..e06d3f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_817.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d05b2bbcc70af051030deb73f0a4ef57ab2b525cafd1bee471c19faf669bc270 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_817.asset.meta b/Assets/04_Tiles/Floor/TileSet_817.asset.meta new file mode 100644 index 0000000..39e817c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_817.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5b5d50a32d0fd16499e7d8942a7edec0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_818.asset b/Assets/04_Tiles/Floor/TileSet_818.asset new file mode 100644 index 0000000..bbc7c91 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_818.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8f6575be040bb7535c62290f00338d22403acf1a487cf8329d9c7f59571ee35 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_818.asset.meta b/Assets/04_Tiles/Floor/TileSet_818.asset.meta new file mode 100644 index 0000000..2d398b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_818.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f0b784fa08a47a429633d90f44b257e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_819.asset b/Assets/04_Tiles/Floor/TileSet_819.asset new file mode 100644 index 0000000..7b03703 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_819.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cc0cc78fa1014043917ce3b53e583f51207fec29a0214e485124ebf2396fc87 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_819.asset.meta b/Assets/04_Tiles/Floor/TileSet_819.asset.meta new file mode 100644 index 0000000..253b4ce --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_819.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a1083b736b7ff9c4c8c8edabf2dbb71e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_82.asset b/Assets/04_Tiles/Floor/TileSet_82.asset new file mode 100644 index 0000000..6867406 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_82.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9213ad6933506ffa795b082a80cc923728da9eb85c5681d43b11db2edd70768 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_82.asset.meta b/Assets/04_Tiles/Floor/TileSet_82.asset.meta new file mode 100644 index 0000000..351b812 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_82.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70ea1d758e5fd5e4bb34dc3f252fcb8d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_820.asset b/Assets/04_Tiles/Floor/TileSet_820.asset new file mode 100644 index 0000000..5b2d303 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_820.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1064eec2e28a8c1a360bf2f4f205372b21ba53f77521c517e637cf946e01de97 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_820.asset.meta b/Assets/04_Tiles/Floor/TileSet_820.asset.meta new file mode 100644 index 0000000..ee457f3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_820.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f19a175db30ce764cb76278c3bb1c70b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_821.asset b/Assets/04_Tiles/Floor/TileSet_821.asset new file mode 100644 index 0000000..cb98277 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_821.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7bb6e9a42af2e8259fb6d70cc88793696fdc1ccc076d3d54fad9efd647b16ad +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_821.asset.meta b/Assets/04_Tiles/Floor/TileSet_821.asset.meta new file mode 100644 index 0000000..95a06c6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_821.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a01bca4749c9f6d49a9050c91bc0b022 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_822.asset b/Assets/04_Tiles/Floor/TileSet_822.asset new file mode 100644 index 0000000..b6271e8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_822.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad27b42b65c41fb5cdaaa1114b64e2ef9d63a0531bb040c7b8766c70969664da +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_822.asset.meta b/Assets/04_Tiles/Floor/TileSet_822.asset.meta new file mode 100644 index 0000000..60fc715 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_822.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e7b1474458caee41833f97de4caccc0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_823.asset b/Assets/04_Tiles/Floor/TileSet_823.asset new file mode 100644 index 0000000..24a71fb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_823.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6be42f6e5b92239f5c9966b27e0de33d32b943949546389cdf95faed7b4e55d5 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_823.asset.meta b/Assets/04_Tiles/Floor/TileSet_823.asset.meta new file mode 100644 index 0000000..f33a127 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_823.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d1779e8499e55644bc1971f9e62a537 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_824.asset b/Assets/04_Tiles/Floor/TileSet_824.asset new file mode 100644 index 0000000..f12999d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_824.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2356c0fa3edfdb46e2f114f0ad37ec51b67b03b1a4f81a54b449dcab8c0fd6a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_824.asset.meta b/Assets/04_Tiles/Floor/TileSet_824.asset.meta new file mode 100644 index 0000000..300a0e4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_824.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e3216cda17f7ab4bac0e44fcefb0eaa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_825.asset b/Assets/04_Tiles/Floor/TileSet_825.asset new file mode 100644 index 0000000..4be348d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_825.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a717e1a8fd39a44c81b9a8287fcdd383fcec4e16391437ff7e863e4dd7385ccf +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_825.asset.meta b/Assets/04_Tiles/Floor/TileSet_825.asset.meta new file mode 100644 index 0000000..997c408 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_825.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0c93d2e2c917343448c081d5b3838dc3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_826.asset b/Assets/04_Tiles/Floor/TileSet_826.asset new file mode 100644 index 0000000..bb1ef57 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_826.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddcd41b3701a647811b7f971618081d72d26005ba60016015061e518ed10e19d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_826.asset.meta b/Assets/04_Tiles/Floor/TileSet_826.asset.meta new file mode 100644 index 0000000..657e953 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_826.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f1802b3922470214f89b9b7c45a9075a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_827.asset b/Assets/04_Tiles/Floor/TileSet_827.asset new file mode 100644 index 0000000..dd22085 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_827.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daf5e5411b2138934a4ffa2e4c2607127774abe476953ddfa7a49372b86fccc8 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_827.asset.meta b/Assets/04_Tiles/Floor/TileSet_827.asset.meta new file mode 100644 index 0000000..449fa65 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_827.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 07d0e3886bf38314d8abebe408599b89 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_828.asset b/Assets/04_Tiles/Floor/TileSet_828.asset new file mode 100644 index 0000000..10183d8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_828.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07655c047bcf54a80814f26f00bb8d44aa4873d77ecb1ca52c646a0cb3aee490 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_828.asset.meta b/Assets/04_Tiles/Floor/TileSet_828.asset.meta new file mode 100644 index 0000000..02785c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_828.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 112639bbb3c043648ad8a9022b2a0f73 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_829.asset b/Assets/04_Tiles/Floor/TileSet_829.asset new file mode 100644 index 0000000..483cf34 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_829.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1eac6a1340e02c14d1bc54e374a28594c28cdad55a22922f624618381dee7c4e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_829.asset.meta b/Assets/04_Tiles/Floor/TileSet_829.asset.meta new file mode 100644 index 0000000..a631cda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_829.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0afa7bb95cb76b849b885ec0a870c74a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_83.asset b/Assets/04_Tiles/Floor/TileSet_83.asset new file mode 100644 index 0000000..af804a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_83.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84d880a12f3ea055a66d583c33092558627903e3872219119efea4c1c9c5fbbf +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_83.asset.meta b/Assets/04_Tiles/Floor/TileSet_83.asset.meta new file mode 100644 index 0000000..b045c49 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_83.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26bbb2888a1fe7a4f99d124a30f400df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_830.asset b/Assets/04_Tiles/Floor/TileSet_830.asset new file mode 100644 index 0000000..9b62830 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_830.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3bfbee07b9e3d6c1eda9d0673d9617fba3f98a1d54f741714ca384b5f91bbb4 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_830.asset.meta b/Assets/04_Tiles/Floor/TileSet_830.asset.meta new file mode 100644 index 0000000..0dbe189 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_830.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 231f96bb4f8005c41b678e9b52df0cd8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_831.asset b/Assets/04_Tiles/Floor/TileSet_831.asset new file mode 100644 index 0000000..d0af374 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_831.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45de33388ccee999bca61eaa191255b0a6320619b6a33327f99e34206dae266b +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_831.asset.meta b/Assets/04_Tiles/Floor/TileSet_831.asset.meta new file mode 100644 index 0000000..01e1c47 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_831.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8815a71c8a8f51d41856db467bff7686 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_832.asset b/Assets/04_Tiles/Floor/TileSet_832.asset new file mode 100644 index 0000000..1488336 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_832.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11925b6d3a4886cca64dd5918b4cb7156ee92a4c2ee78b2d075958f8a44ab7fb +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_832.asset.meta b/Assets/04_Tiles/Floor/TileSet_832.asset.meta new file mode 100644 index 0000000..e69ab4a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_832.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d38e354d7eb24fe45a99cceb10167e74 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_833.asset b/Assets/04_Tiles/Floor/TileSet_833.asset new file mode 100644 index 0000000..64f9f17 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_833.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6afb1ce35a6ef59b3393f6d013f0ede20a237de6bf22d0804f339d7ddd721795 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_833.asset.meta b/Assets/04_Tiles/Floor/TileSet_833.asset.meta new file mode 100644 index 0000000..7d63fe1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_833.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7780a1c656e57ae4d8723ba96d00e628 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_834.asset b/Assets/04_Tiles/Floor/TileSet_834.asset new file mode 100644 index 0000000..d462658 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_834.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90b665f1f43eea1ef2d04e60eaa0763349cd8225834ace7ae392a1a48b362970 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_834.asset.meta b/Assets/04_Tiles/Floor/TileSet_834.asset.meta new file mode 100644 index 0000000..6ad63fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_834.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 090b7211c8cc73b4fb0c7c30774b61f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_835.asset b/Assets/04_Tiles/Floor/TileSet_835.asset new file mode 100644 index 0000000..e682e2f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_835.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f7fd34ce3df3aa47d2b128f9c72d7e1283043741c9e9e2a9f4da9a9020c9f8d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_835.asset.meta b/Assets/04_Tiles/Floor/TileSet_835.asset.meta new file mode 100644 index 0000000..b2968ea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_835.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 373c56efeeea37546bc2ff076be3da66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_836.asset b/Assets/04_Tiles/Floor/TileSet_836.asset new file mode 100644 index 0000000..1faaa45 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_836.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11eadca80b3590e8569cc453b550f9ca1eac5da7d2b4e5adc3076230b0f67464 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_836.asset.meta b/Assets/04_Tiles/Floor/TileSet_836.asset.meta new file mode 100644 index 0000000..3f56764 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_836.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eec3d974eb4ec8c4790a4894ac59dd6c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_837.asset b/Assets/04_Tiles/Floor/TileSet_837.asset new file mode 100644 index 0000000..8979e87 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_837.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0b5a9cda59a82b9addad38208673989f78a870e6ec27d132fc9d0c0a873b93c2 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_837.asset.meta b/Assets/04_Tiles/Floor/TileSet_837.asset.meta new file mode 100644 index 0000000..9b6aebd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_837.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5fd8626759c374244a89f3ac3e6dfc4e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_838.asset b/Assets/04_Tiles/Floor/TileSet_838.asset new file mode 100644 index 0000000..df9eb1a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_838.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92d27ec8fcde7442a46f26f0420b3d0427b676d91a7c9456b356536e773b5832 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_838.asset.meta b/Assets/04_Tiles/Floor/TileSet_838.asset.meta new file mode 100644 index 0000000..d992867 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_838.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e09d19c4bd25c445a4d33afb6f34a82 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_839.asset b/Assets/04_Tiles/Floor/TileSet_839.asset new file mode 100644 index 0000000..3e4b537 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_839.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc33741504daa0c67e5c1d5f5c7bd36facc20b7fe2f150e7d032309e0f73e31e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_839.asset.meta b/Assets/04_Tiles/Floor/TileSet_839.asset.meta new file mode 100644 index 0000000..2863b2b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_839.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f505b29774a82424bb2ab5fc46dc27da +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_84.asset b/Assets/04_Tiles/Floor/TileSet_84.asset new file mode 100644 index 0000000..47973f8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_84.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db3c300409afb94a6a9f613cc1681d72335d28538f7fdf32da9c53c41b7e7846 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_84.asset.meta b/Assets/04_Tiles/Floor/TileSet_84.asset.meta new file mode 100644 index 0000000..4051324 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_84.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 028c136b716252643bd869700f6fb9b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_840.asset b/Assets/04_Tiles/Floor/TileSet_840.asset new file mode 100644 index 0000000..d2b8308 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_840.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:857a4017fbb76b7293506894b99f257eefea18be2a0718baf983f407385e3452 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_840.asset.meta b/Assets/04_Tiles/Floor/TileSet_840.asset.meta new file mode 100644 index 0000000..b7c5eda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_840.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4f41071f7084cb74a887228715dd701f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_841.asset b/Assets/04_Tiles/Floor/TileSet_841.asset new file mode 100644 index 0000000..a4372bd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_841.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e56232f11494f7c922791ea874311f54eea3a3a6284ad3fcf4fe49ef3ebfca +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_841.asset.meta b/Assets/04_Tiles/Floor/TileSet_841.asset.meta new file mode 100644 index 0000000..3830b6a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_841.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a29755fd580e59a4189e7a627d0d95c8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_842.asset b/Assets/04_Tiles/Floor/TileSet_842.asset new file mode 100644 index 0000000..6dbe3ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_842.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24807a71fdc114fd8410c20f3990eb0478f959a5363b683d771689433af1c5d0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_842.asset.meta b/Assets/04_Tiles/Floor/TileSet_842.asset.meta new file mode 100644 index 0000000..19a11fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_842.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1efc122d28aab6c4ea7447f2b2004e99 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_843.asset b/Assets/04_Tiles/Floor/TileSet_843.asset new file mode 100644 index 0000000..f9ae034 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_843.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16af88141e8fd38fc656f9acf61999bf628f96f442d5b60a70e19623c7f8ab94 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_843.asset.meta b/Assets/04_Tiles/Floor/TileSet_843.asset.meta new file mode 100644 index 0000000..03d6b0d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_843.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad887e8e91f661646855d5190ade8f17 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_844.asset b/Assets/04_Tiles/Floor/TileSet_844.asset new file mode 100644 index 0000000..38bcfe8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_844.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9604337bbbee5dda6d9772c249f72e4624434d7e2fc572e2df4601b30ce79668 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_844.asset.meta b/Assets/04_Tiles/Floor/TileSet_844.asset.meta new file mode 100644 index 0000000..006e833 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_844.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6a6bbb54eb84c84f87cb131d44c8f75 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_845.asset b/Assets/04_Tiles/Floor/TileSet_845.asset new file mode 100644 index 0000000..e456e4c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_845.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b03f08890268979e851214f0802ec521088ead385c24dd3cdf682293695ee3bc +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_845.asset.meta b/Assets/04_Tiles/Floor/TileSet_845.asset.meta new file mode 100644 index 0000000..e418fa5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_845.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8cc63dcdad25f944a56cfee4043da65 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_846.asset b/Assets/04_Tiles/Floor/TileSet_846.asset new file mode 100644 index 0000000..2622037 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_846.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9851fc10521aa6727a61b45535d3a708e96abe3e7d57940f41d18c0a3177b212 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_846.asset.meta b/Assets/04_Tiles/Floor/TileSet_846.asset.meta new file mode 100644 index 0000000..4040c9e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_846.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 87f88440b6e83f84aaf29ac2fa04a18e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_847.asset b/Assets/04_Tiles/Floor/TileSet_847.asset new file mode 100644 index 0000000..e847384 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_847.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9517990417acdb406e98aa748cd0af6b9a02d9912bb87c1e36619922d8d6898 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_847.asset.meta b/Assets/04_Tiles/Floor/TileSet_847.asset.meta new file mode 100644 index 0000000..d892ff3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_847.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab86918e183ee9b4584bc8dea2b345dc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_848.asset b/Assets/04_Tiles/Floor/TileSet_848.asset new file mode 100644 index 0000000..166cf9c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_848.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bdb2a9a0fe57e28bf4e04e347c3b9b72969d764b6ead460f3f51566f2b6e412 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_848.asset.meta b/Assets/04_Tiles/Floor/TileSet_848.asset.meta new file mode 100644 index 0000000..cb3d079 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_848.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23b88ef40315bf34092f7be5178b152e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_849.asset b/Assets/04_Tiles/Floor/TileSet_849.asset new file mode 100644 index 0000000..5c08d56 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_849.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f410798ffba04e9306ee7bbc104258e02e96bc88798915af78fac408c432e216 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_849.asset.meta b/Assets/04_Tiles/Floor/TileSet_849.asset.meta new file mode 100644 index 0000000..0ac8847 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_849.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a2cfa028675ac0449bd6a7111986f30d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_85.asset b/Assets/04_Tiles/Floor/TileSet_85.asset new file mode 100644 index 0000000..191f1d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_85.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d03520e79b06525a3391aa3e99a88fe09b981c2e4f7edb81e4b46390a0a8c20 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_85.asset.meta b/Assets/04_Tiles/Floor/TileSet_85.asset.meta new file mode 100644 index 0000000..c173141 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_85.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1e650437d53f7a04f908a9b7656caff0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_850.asset b/Assets/04_Tiles/Floor/TileSet_850.asset new file mode 100644 index 0000000..4f2e0cf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_850.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1817aa495930af2ef930b64a4647f2186f1cb659d0afdd58e556612f7baa2f8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_850.asset.meta b/Assets/04_Tiles/Floor/TileSet_850.asset.meta new file mode 100644 index 0000000..99c4fa0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_850.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 559defe7fb6a9ac49b565e28ef4d16ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_851.asset b/Assets/04_Tiles/Floor/TileSet_851.asset new file mode 100644 index 0000000..07b9b5e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_851.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4163cd3f59a055072173286c0506b194f7a71047abdfadaf52fc758b13813608 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_851.asset.meta b/Assets/04_Tiles/Floor/TileSet_851.asset.meta new file mode 100644 index 0000000..29aef26 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_851.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 48a8281c5f0b0ad4689551834e475f37 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_852.asset b/Assets/04_Tiles/Floor/TileSet_852.asset new file mode 100644 index 0000000..2009c8e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_852.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d2f305bfcdc357ad23c6291f7572a2f92c522248ae991b291c94bf02ece4e62 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_852.asset.meta b/Assets/04_Tiles/Floor/TileSet_852.asset.meta new file mode 100644 index 0000000..6e058f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_852.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06962ef8db1343741ae71e6ce16b0761 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_853.asset b/Assets/04_Tiles/Floor/TileSet_853.asset new file mode 100644 index 0000000..a5c516d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_853.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc504fe74b53216c31adda336dd55b8d47c089da5d1d9802fd551fbb79dc6136 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_853.asset.meta b/Assets/04_Tiles/Floor/TileSet_853.asset.meta new file mode 100644 index 0000000..12c3f1c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_853.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3411e18a49ea1942b01efbad472a9ca +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_854.asset b/Assets/04_Tiles/Floor/TileSet_854.asset new file mode 100644 index 0000000..1946deb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_854.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66ca3229998c7394caa07692c6d259542371102db4dbfd23087872d7887c3143 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_854.asset.meta b/Assets/04_Tiles/Floor/TileSet_854.asset.meta new file mode 100644 index 0000000..af2504c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_854.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b639308fc89211843844429c8967ce13 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_855.asset b/Assets/04_Tiles/Floor/TileSet_855.asset new file mode 100644 index 0000000..1e76cb6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_855.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d067c8884de998ad2a724b8bd3232cf5688a8374c62fa3816a396905d283fed2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_855.asset.meta b/Assets/04_Tiles/Floor/TileSet_855.asset.meta new file mode 100644 index 0000000..81f0267 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_855.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56878b477cb345d4a81a51303808b9cd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_856.asset b/Assets/04_Tiles/Floor/TileSet_856.asset new file mode 100644 index 0000000..ed435c0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_856.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47817b0fafbebabb20734189981a4651c2152cb211fc0832d9d4b58d8950700 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_856.asset.meta b/Assets/04_Tiles/Floor/TileSet_856.asset.meta new file mode 100644 index 0000000..8a4af30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_856.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9315f7377a9520a40855fc0c575a17cc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_857.asset b/Assets/04_Tiles/Floor/TileSet_857.asset new file mode 100644 index 0000000..7d2c88c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_857.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77d7c35524cfda91f4adddde47e02cb16b1b44e05bb8cc6a0c4def3175e05793 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_857.asset.meta b/Assets/04_Tiles/Floor/TileSet_857.asset.meta new file mode 100644 index 0000000..cfe535d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_857.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 90ecd32d711f3d040aaed516b8593f91 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_858.asset b/Assets/04_Tiles/Floor/TileSet_858.asset new file mode 100644 index 0000000..265c727 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_858.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef859411aea36b0bbdcbf6c7bfc65fa34c869bb800028f097eedb49b0dab11e8 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_858.asset.meta b/Assets/04_Tiles/Floor/TileSet_858.asset.meta new file mode 100644 index 0000000..6e8aeca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_858.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f2f55eb249d65914d9874cfe355cc354 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_859.asset b/Assets/04_Tiles/Floor/TileSet_859.asset new file mode 100644 index 0000000..3cb8a39 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_859.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50f4be7fb1a2fe7b0831425324c5d848287233af5016478d5c8ddf5446588c39 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_859.asset.meta b/Assets/04_Tiles/Floor/TileSet_859.asset.meta new file mode 100644 index 0000000..acc477b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_859.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf3c0da00e89d1d43a04ef6dc14008c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_86.asset b/Assets/04_Tiles/Floor/TileSet_86.asset new file mode 100644 index 0000000..5dd142d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_86.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c91deb83a223a23539d9d5fe097273692289beb2e9a82dfefc73542556a7b74 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_86.asset.meta b/Assets/04_Tiles/Floor/TileSet_86.asset.meta new file mode 100644 index 0000000..0addd6c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_86.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6a4bb7ce2d797174e839aa227dd27fab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_860.asset b/Assets/04_Tiles/Floor/TileSet_860.asset new file mode 100644 index 0000000..75caa96 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_860.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe82125953c061449147e605932c93bfab4e7960880bd94745406fd609678b1a +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_860.asset.meta b/Assets/04_Tiles/Floor/TileSet_860.asset.meta new file mode 100644 index 0000000..8843f3f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_860.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae435ccc07ea1784fa6fa06d90f0ec40 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_861.asset b/Assets/04_Tiles/Floor/TileSet_861.asset new file mode 100644 index 0000000..9ccf802 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_861.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6df3de58da6011ed6c1447687ca20b56f7e1ddc57db3a96c2e2133715ed450 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_861.asset.meta b/Assets/04_Tiles/Floor/TileSet_861.asset.meta new file mode 100644 index 0000000..4f41974 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_861.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 85a1b7caa7c75e1408ea3603280b8d53 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_862.asset b/Assets/04_Tiles/Floor/TileSet_862.asset new file mode 100644 index 0000000..0b2a83a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_862.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acb77179b4f5195a18f8d4a865dc8eece55a773476c6aaf48e0aa3da80625017 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_862.asset.meta b/Assets/04_Tiles/Floor/TileSet_862.asset.meta new file mode 100644 index 0000000..ed3495b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_862.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c93466c15663b0c438a4bc9d89d821c0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_863.asset b/Assets/04_Tiles/Floor/TileSet_863.asset new file mode 100644 index 0000000..2986543 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_863.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:babba0d9453f3f54f8fed99674844065a672b76013ffcc62d17a28c10ae87bb7 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_863.asset.meta b/Assets/04_Tiles/Floor/TileSet_863.asset.meta new file mode 100644 index 0000000..73068e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_863.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ed3cc4d52c550d4c972114911955185 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_864.asset b/Assets/04_Tiles/Floor/TileSet_864.asset new file mode 100644 index 0000000..addab24 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_864.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464e037ad80d67f1d96a81b35648616bbcddd5715a9ded6c3c94e82491b1cdf1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_864.asset.meta b/Assets/04_Tiles/Floor/TileSet_864.asset.meta new file mode 100644 index 0000000..e567126 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_864.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 231dcaf41f761da4bbbc682cf044befe +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_865.asset b/Assets/04_Tiles/Floor/TileSet_865.asset new file mode 100644 index 0000000..787ac5d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_865.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf99a9c1bdcaef581871951560df585e7f05a4bb287d15c8fc7be93368006e45 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_865.asset.meta b/Assets/04_Tiles/Floor/TileSet_865.asset.meta new file mode 100644 index 0000000..d39015d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_865.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a47c4dceb97a74c48a331125be067f02 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_866.asset b/Assets/04_Tiles/Floor/TileSet_866.asset new file mode 100644 index 0000000..b0e8214 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_866.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:999c73b9613e4e5cbe2ae7c499dcce5121426a4fe29f6265536ae22fd5258ac0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_866.asset.meta b/Assets/04_Tiles/Floor/TileSet_866.asset.meta new file mode 100644 index 0000000..9837ef9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_866.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6493812c56accf84f93039f4651fe0b1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_867.asset b/Assets/04_Tiles/Floor/TileSet_867.asset new file mode 100644 index 0000000..e1ada49 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_867.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8ff31814b51bd43edf6e134937803ad11ee8a320ea8fbc8ece9d7370ad0a3f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_867.asset.meta b/Assets/04_Tiles/Floor/TileSet_867.asset.meta new file mode 100644 index 0000000..e301384 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_867.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 61aa498d4faf5bf4fa433fcbb0ac9b39 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_868.asset b/Assets/04_Tiles/Floor/TileSet_868.asset new file mode 100644 index 0000000..4ea4cae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_868.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c64842d8a5be842e8609d7aab1d14efb5824e783843ae4a3604660a61c8aef0 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_868.asset.meta b/Assets/04_Tiles/Floor/TileSet_868.asset.meta new file mode 100644 index 0000000..b7fd853 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_868.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5503ddcc92096b549a67f6367b70f6f1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_869.asset b/Assets/04_Tiles/Floor/TileSet_869.asset new file mode 100644 index 0000000..fcfdaff --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_869.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a208196826903edbb4ce9b8f095c5d055e47d22333f6542bcf0d37987f4e6f10 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_869.asset.meta b/Assets/04_Tiles/Floor/TileSet_869.asset.meta new file mode 100644 index 0000000..4b1a76f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_869.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6878322d4c3cdd442a692e60db00edd4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_87.asset b/Assets/04_Tiles/Floor/TileSet_87.asset new file mode 100644 index 0000000..1a5cdbd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_87.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c067b630381ded8445ded943c9400389730901a88538a97a72c1cc2e1e0a92f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_87.asset.meta b/Assets/04_Tiles/Floor/TileSet_87.asset.meta new file mode 100644 index 0000000..5b33c98 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_87.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 922890ce3846e384da41dc1e87f1a3a9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_870.asset b/Assets/04_Tiles/Floor/TileSet_870.asset new file mode 100644 index 0000000..b763f26 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_870.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b475939635365d7153cd4ed5ef06a78adcd9953a8afe5178d06da12aaaa09518 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_870.asset.meta b/Assets/04_Tiles/Floor/TileSet_870.asset.meta new file mode 100644 index 0000000..1780213 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_870.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41295c74fbcf3a54b964103bbdc2ef80 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_871.asset b/Assets/04_Tiles/Floor/TileSet_871.asset new file mode 100644 index 0000000..ebfdd7d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_871.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac20ac096e831e25d2ca9f69f2dd29949f9a47cbd03ba53c6875a6c3dd3e6d87 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_871.asset.meta b/Assets/04_Tiles/Floor/TileSet_871.asset.meta new file mode 100644 index 0000000..38a4236 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_871.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84e46dc289ba6f149ae9144bb72ea74e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_872.asset b/Assets/04_Tiles/Floor/TileSet_872.asset new file mode 100644 index 0000000..3d982bd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_872.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2cadc630ff9ada3be77c2f29bdff93718cb3299d00ed39e23155b6fcbea3f26 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_872.asset.meta b/Assets/04_Tiles/Floor/TileSet_872.asset.meta new file mode 100644 index 0000000..95a1f8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_872.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c341c7f3f672d3143a42451c2662c923 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_873.asset b/Assets/04_Tiles/Floor/TileSet_873.asset new file mode 100644 index 0000000..6737f73 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_873.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84c74025a4fb7bb0004a3eb92204140623ceb9923e4c068ff609ef1a481237b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_873.asset.meta b/Assets/04_Tiles/Floor/TileSet_873.asset.meta new file mode 100644 index 0000000..b97250f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_873.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3afdd0d2d5b31114386b141e145da0d2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_874.asset b/Assets/04_Tiles/Floor/TileSet_874.asset new file mode 100644 index 0000000..19c0ca7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_874.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a3a3467d5cf388367b0b1087a9409a2f9ed4ec410413c4f605c9bc6e1890c0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_874.asset.meta b/Assets/04_Tiles/Floor/TileSet_874.asset.meta new file mode 100644 index 0000000..4911711 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_874.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a70930b3f1e68840a00ec873af2d95e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_875.asset b/Assets/04_Tiles/Floor/TileSet_875.asset new file mode 100644 index 0000000..6f43558 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_875.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c2949e3eb900d973626f4ff34eee15a79ccfe3e14d95b2fda56618eee90f751 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_875.asset.meta b/Assets/04_Tiles/Floor/TileSet_875.asset.meta new file mode 100644 index 0000000..bc22928 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_875.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9c448495b5135e94e876bd491b5c167e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_876.asset b/Assets/04_Tiles/Floor/TileSet_876.asset new file mode 100644 index 0000000..b58b8ca --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_876.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa22217cdd2670ac3746f1768846b8b894c3e1357d4b2426eff0fb13947f85b2 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_876.asset.meta b/Assets/04_Tiles/Floor/TileSet_876.asset.meta new file mode 100644 index 0000000..de20918 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_876.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf7b0b5b428b3bb419d9a14cc5f8b94f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_877.asset b/Assets/04_Tiles/Floor/TileSet_877.asset new file mode 100644 index 0000000..9fbb17f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_877.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f42b051ec15807382e124eaaefe2b47aeb5b89d4c5e7fe218b1236265316bfe +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_877.asset.meta b/Assets/04_Tiles/Floor/TileSet_877.asset.meta new file mode 100644 index 0000000..7a7b6bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_877.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39f00fae3dac5e1498aa7202a008d047 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_878.asset b/Assets/04_Tiles/Floor/TileSet_878.asset new file mode 100644 index 0000000..9e28acd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_878.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c79b77ecd0195f903f04a46497dc0fe997da2876bcad33d0992d7013bb09b098 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_878.asset.meta b/Assets/04_Tiles/Floor/TileSet_878.asset.meta new file mode 100644 index 0000000..88eacf4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_878.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81fe154b30bd08644b037ce3ec171021 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_879.asset b/Assets/04_Tiles/Floor/TileSet_879.asset new file mode 100644 index 0000000..ac133c8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_879.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abd435db966dd6070799b236784a5add5e030a750e86532c3af7d4fcecb46101 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_879.asset.meta b/Assets/04_Tiles/Floor/TileSet_879.asset.meta new file mode 100644 index 0000000..e07fe3d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_879.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f39aba1b5d67b644d9a946688bf42c2c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_88.asset b/Assets/04_Tiles/Floor/TileSet_88.asset new file mode 100644 index 0000000..d27a0b2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_88.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79196e59e8866887df21e3485f75ec9c51d6787df0555ac376c97bb928299d50 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_88.asset.meta b/Assets/04_Tiles/Floor/TileSet_88.asset.meta new file mode 100644 index 0000000..55398a3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_88.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77c4beca446ba8d479b51ba090fb2cc8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_880.asset b/Assets/04_Tiles/Floor/TileSet_880.asset new file mode 100644 index 0000000..2afbb05 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_880.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31248f1c7c5be59d8bccb45e849c7f0bebf7102694a80b5b89e1a9d2e5410a0d +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_880.asset.meta b/Assets/04_Tiles/Floor/TileSet_880.asset.meta new file mode 100644 index 0000000..012ba09 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_880.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d9622b09555568543a171c272f4d9517 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_881.asset b/Assets/04_Tiles/Floor/TileSet_881.asset new file mode 100644 index 0000000..3151824 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_881.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec7ea7b9191e969fb77b0128b6ff8bc600c833de582da40d32264013acde5a24 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_881.asset.meta b/Assets/04_Tiles/Floor/TileSet_881.asset.meta new file mode 100644 index 0000000..a52a357 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_881.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8f35c3a876ce0444b97c2c0cdd34fa8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_882.asset b/Assets/04_Tiles/Floor/TileSet_882.asset new file mode 100644 index 0000000..f73eef2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_882.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47647e981de4fa8a4868c6cedde6e3401a34e6af79b806fb166a8785b6213239 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_882.asset.meta b/Assets/04_Tiles/Floor/TileSet_882.asset.meta new file mode 100644 index 0000000..b7117cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_882.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4414c3b7576947d428cf79bf8294acef +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_883.asset b/Assets/04_Tiles/Floor/TileSet_883.asset new file mode 100644 index 0000000..dd6f730 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_883.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:121a9a6354eb64b99bda7afde318256757e7bbcb46565beddd7e5e5b6026f544 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_883.asset.meta b/Assets/04_Tiles/Floor/TileSet_883.asset.meta new file mode 100644 index 0000000..8edb747 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_883.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20d0764bbd66b124fb1b58b3c406aba5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_884.asset b/Assets/04_Tiles/Floor/TileSet_884.asset new file mode 100644 index 0000000..de94f8f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_884.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bd628e919feec1fe158bc9949f0bac3989a725be787134d84d1281f1b48afee +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_884.asset.meta b/Assets/04_Tiles/Floor/TileSet_884.asset.meta new file mode 100644 index 0000000..1e94207 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_884.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e418e6f60db0d04da04a4d228f1d0c8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_885.asset b/Assets/04_Tiles/Floor/TileSet_885.asset new file mode 100644 index 0000000..b4affd1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_885.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d9ffc55f04d246c6365dcf8a407098571d93f7afae610be7d00e772e1be9ddb +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_885.asset.meta b/Assets/04_Tiles/Floor/TileSet_885.asset.meta new file mode 100644 index 0000000..39bf1f4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_885.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 469bfc78ac2d41b49b980948471f94e3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_886.asset b/Assets/04_Tiles/Floor/TileSet_886.asset new file mode 100644 index 0000000..eb0aa03 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_886.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:340fa8fb2babe8b0ddacf08cb63e5c0ade1432c4d8a47ed816675fc0aab0fc6f +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_886.asset.meta b/Assets/04_Tiles/Floor/TileSet_886.asset.meta new file mode 100644 index 0000000..9beb8fe --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_886.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 70be6c1ce0c0f244eaf61a6f5e50d4a6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_887.asset b/Assets/04_Tiles/Floor/TileSet_887.asset new file mode 100644 index 0000000..91cae2c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_887.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e99e622373fda05372c059669bddfb199e4a8ece9cd84fb57de7f4ac2d8f8ba6 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_887.asset.meta b/Assets/04_Tiles/Floor/TileSet_887.asset.meta new file mode 100644 index 0000000..7a11785 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_887.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8a0e6d2b6cb0292438729b4d65aa311d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_888.asset b/Assets/04_Tiles/Floor/TileSet_888.asset new file mode 100644 index 0000000..fc1d4a8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_888.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4258168cf577a26c008441270da6d7375aa023df1aef33cee12f1580d4c995 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_888.asset.meta b/Assets/04_Tiles/Floor/TileSet_888.asset.meta new file mode 100644 index 0000000..3f971f7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_888.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4edd429f41101b74d907cf9caca04014 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_889.asset b/Assets/04_Tiles/Floor/TileSet_889.asset new file mode 100644 index 0000000..956f644 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_889.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3319a6c42b2fe644b2c83d96fcf27a8f9cd375241ab808a7c1431aa215790dab +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_889.asset.meta b/Assets/04_Tiles/Floor/TileSet_889.asset.meta new file mode 100644 index 0000000..2d5e7a6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_889.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 451d1502a2b45f44bb4955365601d6f8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_89.asset b/Assets/04_Tiles/Floor/TileSet_89.asset new file mode 100644 index 0000000..18138e7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_89.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2931b49872ba1543b48550134265b88fb39a11276a459a22096aba74f6d46e71 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_89.asset.meta b/Assets/04_Tiles/Floor/TileSet_89.asset.meta new file mode 100644 index 0000000..bd8b83c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_89.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15980452459fbeb40bc0d657c426cdda +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_890.asset b/Assets/04_Tiles/Floor/TileSet_890.asset new file mode 100644 index 0000000..af665dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_890.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cd18fcb43109a4716f4a9b29c721669ed48e6316e66233f31296c30a40883d3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_890.asset.meta b/Assets/04_Tiles/Floor/TileSet_890.asset.meta new file mode 100644 index 0000000..512f3fa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_890.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: addc68981868acc45acdef8dbb06bfbd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_891.asset b/Assets/04_Tiles/Floor/TileSet_891.asset new file mode 100644 index 0000000..693cb1a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_891.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac7b349fe33a4ffedca67b5942bdee0d624771a4ebacfe48b8f24b69cc683566 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_891.asset.meta b/Assets/04_Tiles/Floor/TileSet_891.asset.meta new file mode 100644 index 0000000..4c5b77d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_891.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13b31bf3517c87742a031fbe9a4824df +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_892.asset b/Assets/04_Tiles/Floor/TileSet_892.asset new file mode 100644 index 0000000..70082f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_892.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af1336df4d16633623ab7021668129cfc44c50d4708c2a2b7b2dd46d8c7235e8 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_892.asset.meta b/Assets/04_Tiles/Floor/TileSet_892.asset.meta new file mode 100644 index 0000000..0ed3bb6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_892.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab06f097e8d29954cac0c35ddf1b9e29 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_893.asset b/Assets/04_Tiles/Floor/TileSet_893.asset new file mode 100644 index 0000000..de2d675 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_893.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72fcbb35cda2fc35c1db15dad484ac7f6cdcfa06dfb97b524441a188c32127db +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_893.asset.meta b/Assets/04_Tiles/Floor/TileSet_893.asset.meta new file mode 100644 index 0000000..6f1b114 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_893.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 525a936d80d6f284cb86ab97c83677db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_894.asset b/Assets/04_Tiles/Floor/TileSet_894.asset new file mode 100644 index 0000000..3275949 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_894.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0c686dd43f0ef7e3884596997bc71c0e676c2e3fa2447ee724d36478bba31df +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_894.asset.meta b/Assets/04_Tiles/Floor/TileSet_894.asset.meta new file mode 100644 index 0000000..c7bcd83 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_894.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47e46bc85f3cc284ea62255c8f5798e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_895.asset b/Assets/04_Tiles/Floor/TileSet_895.asset new file mode 100644 index 0000000..ea8f345 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_895.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab7835bc7e63da7af9ff459be66898740026be95e07e71e6715b644230ab0bae +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_895.asset.meta b/Assets/04_Tiles/Floor/TileSet_895.asset.meta new file mode 100644 index 0000000..8ac1292 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_895.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b8d32981e9335f241b3a76a01ed3880b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_896.asset b/Assets/04_Tiles/Floor/TileSet_896.asset new file mode 100644 index 0000000..1474c8f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_896.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9689586dc452f435b1b6a236df964c732908b8fb2b564b9f3d08d490899de54 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_896.asset.meta b/Assets/04_Tiles/Floor/TileSet_896.asset.meta new file mode 100644 index 0000000..97ee0df --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_896.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb806f24caaaa0447a37675bc5548ba4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_897.asset b/Assets/04_Tiles/Floor/TileSet_897.asset new file mode 100644 index 0000000..80c05f2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_897.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c810d07d6f11601f91305e09bf0865ccf55a9132cb02de07a917cab8a8e7a7c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_897.asset.meta b/Assets/04_Tiles/Floor/TileSet_897.asset.meta new file mode 100644 index 0000000..9582caf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_897.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 190302fe227a2fd4f970788d991379cb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_898.asset b/Assets/04_Tiles/Floor/TileSet_898.asset new file mode 100644 index 0000000..efc0f94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_898.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63443d3a4b8a08e340293a7e15f7561d32f6ef2d238fc41378cd390b8085c3c9 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_898.asset.meta b/Assets/04_Tiles/Floor/TileSet_898.asset.meta new file mode 100644 index 0000000..f7939a6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_898.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 36ac3ecd3a230644c98f58de354b13c8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_899.asset b/Assets/04_Tiles/Floor/TileSet_899.asset new file mode 100644 index 0000000..6de808f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_899.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f180dd7850c7c9533bd23d723fce79b91e79e6afa1a59c5b936db66bae2ec67a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_899.asset.meta b/Assets/04_Tiles/Floor/TileSet_899.asset.meta new file mode 100644 index 0000000..9698b48 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_899.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e286dace4a10304bbd9ccafa5ebb40a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_9.asset b/Assets/04_Tiles/Floor/TileSet_9.asset new file mode 100644 index 0000000..35adc75 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_9.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9b98620f08930be1ddf705aa7505e7b48338307144e4fca863fb971f95e3ea1 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_9.asset.meta b/Assets/04_Tiles/Floor/TileSet_9.asset.meta new file mode 100644 index 0000000..03d7346 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_9.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 63fd095a9331af54abb96f8f6aa68a03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_90.asset b/Assets/04_Tiles/Floor/TileSet_90.asset new file mode 100644 index 0000000..aac7f47 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_90.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a509e29ba6e6bae919eea06b5a324c18c37c12eacbe5780423afd640d891a339 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_90.asset.meta b/Assets/04_Tiles/Floor/TileSet_90.asset.meta new file mode 100644 index 0000000..9f4c2aa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_90.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf2469c7674748846866f2cbf85e7c64 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_900.asset b/Assets/04_Tiles/Floor/TileSet_900.asset new file mode 100644 index 0000000..fa72296 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_900.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c5f107eaa3ac67ba0a49a3c97795ab6b5f0a6e26e020f59ff79f350728b04c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_900.asset.meta b/Assets/04_Tiles/Floor/TileSet_900.asset.meta new file mode 100644 index 0000000..523362a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_900.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6847518e336710f499f2991ad423bf14 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_901.asset b/Assets/04_Tiles/Floor/TileSet_901.asset new file mode 100644 index 0000000..e83266f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_901.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e40358774c0455fbe68511fce708b84173054d0b1d548c18ee6364e9407c2a4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_901.asset.meta b/Assets/04_Tiles/Floor/TileSet_901.asset.meta new file mode 100644 index 0000000..d5d6b41 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_901.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b12f3042ae83f134b9472dc77a4538bf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_902.asset b/Assets/04_Tiles/Floor/TileSet_902.asset new file mode 100644 index 0000000..93c9765 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_902.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa874b49e89003650dd49acd72fc6bb1a308c4ccbb698219ac087807aabaebe4 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_902.asset.meta b/Assets/04_Tiles/Floor/TileSet_902.asset.meta new file mode 100644 index 0000000..a06cf6d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_902.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a9b9c44de0be7246bb01bfe729ac9ec +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_903.asset b/Assets/04_Tiles/Floor/TileSet_903.asset new file mode 100644 index 0000000..76199bd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_903.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1ab14c84ab31a7e9f3a6f831edfa6a7ca795c3ab4a81c982833b10f0670b13a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_903.asset.meta b/Assets/04_Tiles/Floor/TileSet_903.asset.meta new file mode 100644 index 0000000..946d55a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_903.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0eed3e08c0163f64e83214dceea0f3ab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_904.asset b/Assets/04_Tiles/Floor/TileSet_904.asset new file mode 100644 index 0000000..df3b20e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_904.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b516216d85dc98801be602e0641bfd2ec084da67c72851b74b8e6e7268f6c74c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_904.asset.meta b/Assets/04_Tiles/Floor/TileSet_904.asset.meta new file mode 100644 index 0000000..13a1de5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_904.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 89b509cb5a1c53e44ba110b8e29197e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_905.asset b/Assets/04_Tiles/Floor/TileSet_905.asset new file mode 100644 index 0000000..5ca02d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_905.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6c01af8f3f25fc3d3bfbd971ae2619ae6beb65a471625471cd1611c7d17336c +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_905.asset.meta b/Assets/04_Tiles/Floor/TileSet_905.asset.meta new file mode 100644 index 0000000..84328ae --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_905.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb6fbdb303eb735429ecabd33caa102d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_906.asset b/Assets/04_Tiles/Floor/TileSet_906.asset new file mode 100644 index 0000000..0413f34 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_906.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab2564894017dbd7d82740d4bb935f044fb29092a9c5c0c63c18a3db23b0220d +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_906.asset.meta b/Assets/04_Tiles/Floor/TileSet_906.asset.meta new file mode 100644 index 0000000..109c757 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_906.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 326cc47741ec84a4eb4ca63868041274 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_907.asset b/Assets/04_Tiles/Floor/TileSet_907.asset new file mode 100644 index 0000000..66e39d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_907.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6366a098625179afdb777b228c9fe8abeae9d0186016ea3f56ecd6562b5d5a +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_907.asset.meta b/Assets/04_Tiles/Floor/TileSet_907.asset.meta new file mode 100644 index 0000000..9d885ac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_907.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f548e73db3630314189394da8cce4aaa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_908.asset b/Assets/04_Tiles/Floor/TileSet_908.asset new file mode 100644 index 0000000..34843bc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_908.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4128501137f7e0c400f679239fa792a1663fcff30a2427a639bccef3972c630 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_908.asset.meta b/Assets/04_Tiles/Floor/TileSet_908.asset.meta new file mode 100644 index 0000000..666a1bf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_908.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4acbb2dee46129a4493e3d7c7cfaf9f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_909.asset b/Assets/04_Tiles/Floor/TileSet_909.asset new file mode 100644 index 0000000..0ce668f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_909.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6243536dd75c6e0b8d4387783e0933de418d2eaea6e9c00cd4323b2fa1ce0da5 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_909.asset.meta b/Assets/04_Tiles/Floor/TileSet_909.asset.meta new file mode 100644 index 0000000..51d8696 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_909.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 20d98ba9f9c94b94d8ce9b01a62967ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_91.asset b/Assets/04_Tiles/Floor/TileSet_91.asset new file mode 100644 index 0000000..25c3bde --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_91.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46507b7dad53b212b4cd2cdf883898fdd180e1be707aa9716e80fac5aba09378 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_91.asset.meta b/Assets/04_Tiles/Floor/TileSet_91.asset.meta new file mode 100644 index 0000000..43e2dda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_91.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e3c02d62fedd05d43b21646b3c05bf09 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_910.asset b/Assets/04_Tiles/Floor/TileSet_910.asset new file mode 100644 index 0000000..16b95ac --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_910.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66a7bb1ec1c904cd877f613f739d41bf7118857b960a22c3d64e2a28fb81b772 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_910.asset.meta b/Assets/04_Tiles/Floor/TileSet_910.asset.meta new file mode 100644 index 0000000..9785737 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_910.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d9e1821b24d20046a0e9545196b8838 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_911.asset b/Assets/04_Tiles/Floor/TileSet_911.asset new file mode 100644 index 0000000..c02b643 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_911.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa9fc668d37477a2a48e71d02796eb8a0c392782d1a938f759dc30d5cf7e0a70 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_911.asset.meta b/Assets/04_Tiles/Floor/TileSet_911.asset.meta new file mode 100644 index 0000000..1412b4f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_911.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f92d96ac79242034e8e4e615bbae50f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_912.asset b/Assets/04_Tiles/Floor/TileSet_912.asset new file mode 100644 index 0000000..fc23689 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_912.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e5d080dae8df2f9a45d625c95e3f2feb638a968a4e11f7933b85f1e7964b57 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_912.asset.meta b/Assets/04_Tiles/Floor/TileSet_912.asset.meta new file mode 100644 index 0000000..8df53e1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_912.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c62799f13fe79fe409581d7cae7eb90f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_913.asset b/Assets/04_Tiles/Floor/TileSet_913.asset new file mode 100644 index 0000000..4565902 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_913.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac74e14c5bd1f75480c6d5520186c12145ba04e2f1944e2c9eeb4aa71e85eb38 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_913.asset.meta b/Assets/04_Tiles/Floor/TileSet_913.asset.meta new file mode 100644 index 0000000..6956b23 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_913.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bec241097aa809c48a2b969a43d71c57 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_914.asset b/Assets/04_Tiles/Floor/TileSet_914.asset new file mode 100644 index 0000000..eaf22d9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_914.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:124730b4bdd07613ec3fd5d437ec059a0d741786f00c7b6e643e3b69a6b06f3c +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_914.asset.meta b/Assets/04_Tiles/Floor/TileSet_914.asset.meta new file mode 100644 index 0000000..38154f4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_914.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: acebee8520109af4e9c8d948daf396cc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_915.asset b/Assets/04_Tiles/Floor/TileSet_915.asset new file mode 100644 index 0000000..dd85d0d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_915.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed188d881a78ef6b5b50225d8a0821e574244d1443b474f5d0a38dfa8765f8bc +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_915.asset.meta b/Assets/04_Tiles/Floor/TileSet_915.asset.meta new file mode 100644 index 0000000..74f9647 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_915.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 177b5d3d9c402cc4e8716af580d8b720 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_916.asset b/Assets/04_Tiles/Floor/TileSet_916.asset new file mode 100644 index 0000000..b925210 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_916.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee939aa111439e940f6b70dfe456d1985bcc5a96897c719055090b58a91dd75f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_916.asset.meta b/Assets/04_Tiles/Floor/TileSet_916.asset.meta new file mode 100644 index 0000000..63ea0f8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_916.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb0d9d48cdfa1564180d11aeda187a14 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_917.asset b/Assets/04_Tiles/Floor/TileSet_917.asset new file mode 100644 index 0000000..17ff887 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_917.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db2a179337945aaccb74c63135c3a226a40e21d7c853f9f1f606eb948c3650c1 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_917.asset.meta b/Assets/04_Tiles/Floor/TileSet_917.asset.meta new file mode 100644 index 0000000..7a366b1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_917.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 41c20f7db604306458237bf942ef9b7d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_918.asset b/Assets/04_Tiles/Floor/TileSet_918.asset new file mode 100644 index 0000000..a3fd527 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_918.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:130c3886199f89e2ea56bcdbbffc233e158de112c184114c1d97e69ae578278b +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_918.asset.meta b/Assets/04_Tiles/Floor/TileSet_918.asset.meta new file mode 100644 index 0000000..dbe49d1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_918.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b525d86c26f52cc4385ceeb4d6c96351 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_919.asset b/Assets/04_Tiles/Floor/TileSet_919.asset new file mode 100644 index 0000000..1efc581 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_919.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df47e12f8ad77b3333a1b86ae2c9370d3929d156a4a82fa6967ee73c9d0eec24 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_919.asset.meta b/Assets/04_Tiles/Floor/TileSet_919.asset.meta new file mode 100644 index 0000000..508b518 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_919.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9b6bfa5c7bf86b4db3a1a75f3ba48c3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_92.asset b/Assets/04_Tiles/Floor/TileSet_92.asset new file mode 100644 index 0000000..37a5179 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_92.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d21ac93bdaebaf2d70e998fab2e94849fb9bbbb6ff1888d07d1e5863924d216 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_92.asset.meta b/Assets/04_Tiles/Floor/TileSet_92.asset.meta new file mode 100644 index 0000000..3eae840 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_92.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06530662021646f46a1ba2304756605e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_920.asset b/Assets/04_Tiles/Floor/TileSet_920.asset new file mode 100644 index 0000000..fff2bea --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_920.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62c071d4f3a9faf4ff4ce8392252ca69bba175e20fa0349a0aaf6c8f6c11ef75 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_920.asset.meta b/Assets/04_Tiles/Floor/TileSet_920.asset.meta new file mode 100644 index 0000000..3713132 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_920.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4cdb0a51e849824e84997cdd72fd423 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_921.asset b/Assets/04_Tiles/Floor/TileSet_921.asset new file mode 100644 index 0000000..511effc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_921.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8eeed619a316c4adabef0583efc7de9fac539e09850f32c481747efe0ee9732 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_921.asset.meta b/Assets/04_Tiles/Floor/TileSet_921.asset.meta new file mode 100644 index 0000000..ccf20b0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_921.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1808ce7e9beeeae49a9e565270af77eb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_922.asset b/Assets/04_Tiles/Floor/TileSet_922.asset new file mode 100644 index 0000000..2d149eb --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_922.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:179db68b978f3c681ec34ef393334caea8bad8b595c6eb8b55f9032820a1f30d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_922.asset.meta b/Assets/04_Tiles/Floor/TileSet_922.asset.meta new file mode 100644 index 0000000..636f895 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_922.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d8405cb61fc08954d9640270cc64ecb5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_923.asset b/Assets/04_Tiles/Floor/TileSet_923.asset new file mode 100644 index 0000000..abe5e06 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_923.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b94beee4f7a8bfb57d8f3b4ad586fca6bb694d39bf8b95ed21423d8e07e905 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_923.asset.meta b/Assets/04_Tiles/Floor/TileSet_923.asset.meta new file mode 100644 index 0000000..219b127 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_923.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df3e27ced01101643bb7e3efacd86fab +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_924.asset b/Assets/04_Tiles/Floor/TileSet_924.asset new file mode 100644 index 0000000..b97229b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_924.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fe497fd77fdee0bb7931f70522210f1ece713ff254e10c114f35b9bebd54bdc +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_924.asset.meta b/Assets/04_Tiles/Floor/TileSet_924.asset.meta new file mode 100644 index 0000000..5cf8e29 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_924.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 861bdd886cc373d4695543eb3b46e1c4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_925.asset b/Assets/04_Tiles/Floor/TileSet_925.asset new file mode 100644 index 0000000..7a329a9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_925.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40a69058b4fa13418337ef921ec382b959222d79df84ac4c4e8be6d3cded6caa +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_925.asset.meta b/Assets/04_Tiles/Floor/TileSet_925.asset.meta new file mode 100644 index 0000000..6fb5ca8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_925.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fb48c2388ba3a8b44940219bddb14735 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_926.asset b/Assets/04_Tiles/Floor/TileSet_926.asset new file mode 100644 index 0000000..f46f8cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_926.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8be63183366068f043c8afd0bcc13afbea7e0c8d4e8a0b44a664cc340f95270e +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_926.asset.meta b/Assets/04_Tiles/Floor/TileSet_926.asset.meta new file mode 100644 index 0000000..a53634a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_926.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3eb8cb98219fdc748b4bb0128ccadf97 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_927.asset b/Assets/04_Tiles/Floor/TileSet_927.asset new file mode 100644 index 0000000..e65eb1d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_927.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab56acf514f07e522e2a81e7747daee93be72045ed25d722139dd9340b79f27f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_927.asset.meta b/Assets/04_Tiles/Floor/TileSet_927.asset.meta new file mode 100644 index 0000000..3d1ea64 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_927.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 561b25dd23877e9428ff1cb6d03f9191 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_928.asset b/Assets/04_Tiles/Floor/TileSet_928.asset new file mode 100644 index 0000000..3936a3d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_928.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:debeebbb10ee44189e0549b3e63de61590968a3203edfff8dce685e88477fcad +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_928.asset.meta b/Assets/04_Tiles/Floor/TileSet_928.asset.meta new file mode 100644 index 0000000..33c4757 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_928.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 56d22957704394a40b29447ded8cc177 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_929.asset b/Assets/04_Tiles/Floor/TileSet_929.asset new file mode 100644 index 0000000..9bb7cc8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_929.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99d42c9056465a981387b338f709713c9e6f0c883adb34d015dcda47218bda37 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_929.asset.meta b/Assets/04_Tiles/Floor/TileSet_929.asset.meta new file mode 100644 index 0000000..9c511f5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_929.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0db13f70a44f73143bbf4cb302a548b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_93.asset b/Assets/04_Tiles/Floor/TileSet_93.asset new file mode 100644 index 0000000..20aa871 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_93.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a127651dde7234a5703aeb6e168ff8c4a81b0f7adac8cf8ca9599f4bb9a22c54 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_93.asset.meta b/Assets/04_Tiles/Floor/TileSet_93.asset.meta new file mode 100644 index 0000000..01f970b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_93.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 076e5359be524f342b65219af6e225d7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_930.asset b/Assets/04_Tiles/Floor/TileSet_930.asset new file mode 100644 index 0000000..1364b40 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_930.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ac9676fa9b77dca0552e2a0cbecc2b220387df79d2b52359eab2cb59e2d78c9 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_930.asset.meta b/Assets/04_Tiles/Floor/TileSet_930.asset.meta new file mode 100644 index 0000000..4e40b2d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_930.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0011d47e788c56e48aa590f5dabcdf6c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_931.asset b/Assets/04_Tiles/Floor/TileSet_931.asset new file mode 100644 index 0000000..05b9469 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_931.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac6649758ba47db1de6fc6cadcf4f43054e3b85225e112a2b7b44a554676d450 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_931.asset.meta b/Assets/04_Tiles/Floor/TileSet_931.asset.meta new file mode 100644 index 0000000..8c84cb8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_931.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 67ae21c5bb31e8b4495ca0440a7e4f57 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_932.asset b/Assets/04_Tiles/Floor/TileSet_932.asset new file mode 100644 index 0000000..41739be --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_932.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7ab28ca283e5b250c8bc827850345a2e6e9b912f36acb0f055dedc73f7972db +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_932.asset.meta b/Assets/04_Tiles/Floor/TileSet_932.asset.meta new file mode 100644 index 0000000..2963987 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_932.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0dc5a83d71cc0b8498ed1e83ab769830 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_933.asset b/Assets/04_Tiles/Floor/TileSet_933.asset new file mode 100644 index 0000000..fd958cd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_933.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6144fb433cac170f9f286ae76347f99ae1f88522cd8b1a2176e1de188c49a10 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_933.asset.meta b/Assets/04_Tiles/Floor/TileSet_933.asset.meta new file mode 100644 index 0000000..7b2e0a4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_933.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 31f10ed174d7d7244a040a7db40bd012 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_934.asset b/Assets/04_Tiles/Floor/TileSet_934.asset new file mode 100644 index 0000000..a8e2091 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_934.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94beda8b7518dd38898ac343b7de5a72c45d68dd309f441fd3c8c64ab0332953 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_934.asset.meta b/Assets/04_Tiles/Floor/TileSet_934.asset.meta new file mode 100644 index 0000000..e51cbd0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_934.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e28ecec6479f8754e9a33ea908403125 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_935.asset b/Assets/04_Tiles/Floor/TileSet_935.asset new file mode 100644 index 0000000..bbe90fd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_935.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db75c7089ab1b377983f4a3a13bb2a6877dcbcb0c04c8db75291349f4c3e135 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_935.asset.meta b/Assets/04_Tiles/Floor/TileSet_935.asset.meta new file mode 100644 index 0000000..eb9a1e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_935.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 42cf2cb83e30d7a42be0b5238421fc64 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_936.asset b/Assets/04_Tiles/Floor/TileSet_936.asset new file mode 100644 index 0000000..69b4950 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_936.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d9adc814c7ea7c0a0838a1ffa10378015a8266c8ce03221565d7f3d14c61ab7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_936.asset.meta b/Assets/04_Tiles/Floor/TileSet_936.asset.meta new file mode 100644 index 0000000..8164648 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_936.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6feac5014b60f8c4588031d0c60b704e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_937.asset b/Assets/04_Tiles/Floor/TileSet_937.asset new file mode 100644 index 0000000..10a05a9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_937.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5c5aeb1bcd848a14dde16b423dc58f1f697a99d645bc6b4136da966f5d43517 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_937.asset.meta b/Assets/04_Tiles/Floor/TileSet_937.asset.meta new file mode 100644 index 0000000..84798a5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_937.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a33a9a21977867947825ae80e422a760 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_938.asset b/Assets/04_Tiles/Floor/TileSet_938.asset new file mode 100644 index 0000000..405dc3f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_938.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb79c5bc507f1b86c36afe10e9239d958354455b507adf5e5c2f2379085a444 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_938.asset.meta b/Assets/04_Tiles/Floor/TileSet_938.asset.meta new file mode 100644 index 0000000..077065d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_938.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f436081f167e5a04893b5943aa4105fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_939.asset b/Assets/04_Tiles/Floor/TileSet_939.asset new file mode 100644 index 0000000..5a791c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_939.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be42b2b3eb37ce54252e2fa856d731ae8dd0cd0681ed554a43c503c4c2125bd3 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_939.asset.meta b/Assets/04_Tiles/Floor/TileSet_939.asset.meta new file mode 100644 index 0000000..c868fda --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_939.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6567d7b0159e0be4999dba48cef0aa53 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_94.asset b/Assets/04_Tiles/Floor/TileSet_94.asset new file mode 100644 index 0000000..a08f6d0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_94.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51069467f85b989767ca455ab869ac41e0cf614264d95dd5527e00c89dd84dff +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_94.asset.meta b/Assets/04_Tiles/Floor/TileSet_94.asset.meta new file mode 100644 index 0000000..877f484 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_94.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf261e09bdb13cd4d90dd2f08680bef5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_940.asset b/Assets/04_Tiles/Floor/TileSet_940.asset new file mode 100644 index 0000000..830407c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_940.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff63b700eeb515fe92fb7d4a3eab0776de0e4eb7465a3cd6fb7744fbfa61682b +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_940.asset.meta b/Assets/04_Tiles/Floor/TileSet_940.asset.meta new file mode 100644 index 0000000..b01d466 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_940.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c0026163ad7bc044b30e045a5c2ee24 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_941.asset b/Assets/04_Tiles/Floor/TileSet_941.asset new file mode 100644 index 0000000..31295c7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_941.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:351d8e9ebdd83b55a838d68051b46ff1fc54914f9473cccbfd98e504444ffdbb +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_941.asset.meta b/Assets/04_Tiles/Floor/TileSet_941.asset.meta new file mode 100644 index 0000000..98ddedd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_941.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5c7e93d23eb068248a68343a5a993fa3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_942.asset b/Assets/04_Tiles/Floor/TileSet_942.asset new file mode 100644 index 0000000..ca94cd6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_942.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49390ea84528dd1f77a5341ffa847259aef300fcbeaacb323f4b234ac571be57 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_942.asset.meta b/Assets/04_Tiles/Floor/TileSet_942.asset.meta new file mode 100644 index 0000000..4dbee2b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_942.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4235967596eddfb409e421e757277293 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_943.asset b/Assets/04_Tiles/Floor/TileSet_943.asset new file mode 100644 index 0000000..a11854e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_943.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77362ef0ce98d3682a4e0dcf100a8c66eb5aa26cad56c9d919043cc4bedfece8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_943.asset.meta b/Assets/04_Tiles/Floor/TileSet_943.asset.meta new file mode 100644 index 0000000..6dd960b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_943.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23aff6300a53e9c4c90246b24b75016f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_944.asset b/Assets/04_Tiles/Floor/TileSet_944.asset new file mode 100644 index 0000000..83b4837 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_944.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b630328657cfa3a06f37059c36264f04f47a42de1e8048e7fc69ad368899311f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_944.asset.meta b/Assets/04_Tiles/Floor/TileSet_944.asset.meta new file mode 100644 index 0000000..68c7600 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_944.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc22c126d36450749a47370a11b8c4a1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_945.asset b/Assets/04_Tiles/Floor/TileSet_945.asset new file mode 100644 index 0000000..ddbec81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_945.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6000d05adf23efe2d8b3a8f70acc925fb90fded29660ac1b53488aca2b2d2b94 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_945.asset.meta b/Assets/04_Tiles/Floor/TileSet_945.asset.meta new file mode 100644 index 0000000..93ae6f0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_945.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5a39ed8dae5e4674887e4ee16ee828f9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_946.asset b/Assets/04_Tiles/Floor/TileSet_946.asset new file mode 100644 index 0000000..ae11de8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_946.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d802ca167828e72375cc79807d57efd9368d77bbf47c661313874db5337e368 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_946.asset.meta b/Assets/04_Tiles/Floor/TileSet_946.asset.meta new file mode 100644 index 0000000..35ba0f6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_946.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1ff54753b59bb344a6e480b62347eb1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_947.asset b/Assets/04_Tiles/Floor/TileSet_947.asset new file mode 100644 index 0000000..f3ba49f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_947.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69224b6b12b3bb349b592f74a216b87d4a3a1f6087f71516a1f399b300628ed +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_947.asset.meta b/Assets/04_Tiles/Floor/TileSet_947.asset.meta new file mode 100644 index 0000000..ab2b44b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_947.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e0a41f623e372249933306915ce607a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_948.asset b/Assets/04_Tiles/Floor/TileSet_948.asset new file mode 100644 index 0000000..4f27347 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_948.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b1d4d1790261ab9cb26c8cd05f58879de3e3257d2a10731f3ce3019317820ab +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_948.asset.meta b/Assets/04_Tiles/Floor/TileSet_948.asset.meta new file mode 100644 index 0000000..b2a5952 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_948.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 66398347f82a2f44c8ca7d1689b03e76 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_949.asset b/Assets/04_Tiles/Floor/TileSet_949.asset new file mode 100644 index 0000000..416e249 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_949.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9d3ddc7c7321806967a7959d7060f3eb12a4411b1862e1f868cdc258d64a968 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_949.asset.meta b/Assets/04_Tiles/Floor/TileSet_949.asset.meta new file mode 100644 index 0000000..3d65e25 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_949.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 33b6a3f0226001c46b8d811373889e0e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_95.asset b/Assets/04_Tiles/Floor/TileSet_95.asset new file mode 100644 index 0000000..0a8b242 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_95.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8744d878b3d863d27d28d2fa4ea5c77f071aa8c18a8ede72de24fccc73e400d8 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_95.asset.meta b/Assets/04_Tiles/Floor/TileSet_95.asset.meta new file mode 100644 index 0000000..e2d5483 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_95.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 519caa5927bb32945a7497cd6e7da2f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_950.asset b/Assets/04_Tiles/Floor/TileSet_950.asset new file mode 100644 index 0000000..746816f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_950.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2d8015a6587e95f08e53fc6c1a5cd2685698be81a2b11fd5ab8e8d025292dd +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_950.asset.meta b/Assets/04_Tiles/Floor/TileSet_950.asset.meta new file mode 100644 index 0000000..c549b37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_950.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f43fc38fd67bb92478cc7ed5b1001c12 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_951.asset b/Assets/04_Tiles/Floor/TileSet_951.asset new file mode 100644 index 0000000..e38ab5f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_951.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bac1a98c6a9eddd144d22e0c308bc8aa63c822a5c54e2eaafab5d0f047e93d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_951.asset.meta b/Assets/04_Tiles/Floor/TileSet_951.asset.meta new file mode 100644 index 0000000..bdf1e21 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_951.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 960929b4e5a84d043a0e51edaf1b3746 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_952.asset b/Assets/04_Tiles/Floor/TileSet_952.asset new file mode 100644 index 0000000..333c77a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_952.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d5b9418e622e49422066a1583348815da91e0fd3c3124e9ffba501a2fe95069 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_952.asset.meta b/Assets/04_Tiles/Floor/TileSet_952.asset.meta new file mode 100644 index 0000000..c23fc6f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_952.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aac4e77007a39db46a0a1e101fc84e6d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_953.asset b/Assets/04_Tiles/Floor/TileSet_953.asset new file mode 100644 index 0000000..5f5ab81 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_953.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89cafc72bba29635eef258e84f0bff90502ade700c0216ab4de6113a9db738c2 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_953.asset.meta b/Assets/04_Tiles/Floor/TileSet_953.asset.meta new file mode 100644 index 0000000..ae835dc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_953.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fa077177a53c1144d9d9976daf8aa8a8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_954.asset b/Assets/04_Tiles/Floor/TileSet_954.asset new file mode 100644 index 0000000..596be8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_954.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5983a06d6782db5c93bdc3841a6e1ffab5afc4abe6a96d8d11a9eaf8113150a4 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_954.asset.meta b/Assets/04_Tiles/Floor/TileSet_954.asset.meta new file mode 100644 index 0000000..896a453 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_954.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9821bdef6e04b014a8aff8988b5ce9ad +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_955.asset b/Assets/04_Tiles/Floor/TileSet_955.asset new file mode 100644 index 0000000..abbaf71 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_955.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1b32e1ecfc87a249cb1913a1d7cbec1992d1cc557c446eca5a1c66d88ffea0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_955.asset.meta b/Assets/04_Tiles/Floor/TileSet_955.asset.meta new file mode 100644 index 0000000..c5fdf87 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_955.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a211ddcbace0c14f8cbd826dcf44c1f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_956.asset b/Assets/04_Tiles/Floor/TileSet_956.asset new file mode 100644 index 0000000..39be94e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_956.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51cafd99f7767191c426160448780d6cd1353858316e3e1b93df53031f937c2a +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_956.asset.meta b/Assets/04_Tiles/Floor/TileSet_956.asset.meta new file mode 100644 index 0000000..8e0793e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_956.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 05a4a4213d3d130409d5821adc676b95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_957.asset b/Assets/04_Tiles/Floor/TileSet_957.asset new file mode 100644 index 0000000..b598f70 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_957.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:827a4303c18e5001cdeb268bd21c2c795813cbccbc599f49167981d0d4b19589 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_957.asset.meta b/Assets/04_Tiles/Floor/TileSet_957.asset.meta new file mode 100644 index 0000000..c9d48f9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_957.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4becb418562279d498c33520a6346c79 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_958.asset b/Assets/04_Tiles/Floor/TileSet_958.asset new file mode 100644 index 0000000..97d0079 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_958.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a768d3008d56fde9ec926bca9a1da2e7bc53d3427ebcc13d60f20c60a49762c0 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_958.asset.meta b/Assets/04_Tiles/Floor/TileSet_958.asset.meta new file mode 100644 index 0000000..8b50479 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_958.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e0e2dc49c3b4fac40b64e5d12cc5cf7a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_959.asset b/Assets/04_Tiles/Floor/TileSet_959.asset new file mode 100644 index 0000000..ca2e11d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_959.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae7a0af1334f00d5579beaa7f00a6276b82c57bfcf7cb1b33b0f2709e8ba1183 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_959.asset.meta b/Assets/04_Tiles/Floor/TileSet_959.asset.meta new file mode 100644 index 0000000..deb0091 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_959.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6856e45424a66cf4fb4eac93ba4a4d90 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_96.asset b/Assets/04_Tiles/Floor/TileSet_96.asset new file mode 100644 index 0000000..03bd0e9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_96.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82c7d52b8527b52c3e59988d670cca561abb53c3228ae595d8aa0f003cc61065 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_96.asset.meta b/Assets/04_Tiles/Floor/TileSet_96.asset.meta new file mode 100644 index 0000000..c0fe7d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_96.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0d0e969b09113b47a8e2f4a32e395e7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_960.asset b/Assets/04_Tiles/Floor/TileSet_960.asset new file mode 100644 index 0000000..e12e2f7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_960.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f4cff46a2338ac095de50f6c97829fbe7fc2d95999907fa909ff5052c2db8f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_960.asset.meta b/Assets/04_Tiles/Floor/TileSet_960.asset.meta new file mode 100644 index 0000000..6122cf2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_960.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4d4655b0b3ac1bb4db11e4d93d8b258a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_961.asset b/Assets/04_Tiles/Floor/TileSet_961.asset new file mode 100644 index 0000000..ff77b31 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_961.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd6e5d3b21eaf1b2193f1f1250f7d7d9d31e9da4d8ec9a25f7a0bd691b8c23d6 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_961.asset.meta b/Assets/04_Tiles/Floor/TileSet_961.asset.meta new file mode 100644 index 0000000..3fe2f8a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_961.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47d1f723bcb8b2344b7e136a89e2228d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_962.asset b/Assets/04_Tiles/Floor/TileSet_962.asset new file mode 100644 index 0000000..fc87ff0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_962.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c2cb830bca4bb1aedf4a63ce7f3f0c1fe59f97196a91963d94b30e7af433f2e +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_962.asset.meta b/Assets/04_Tiles/Floor/TileSet_962.asset.meta new file mode 100644 index 0000000..2f3df50 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_962.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3c0f6bccaa4506545892dc84bc6421fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_963.asset b/Assets/04_Tiles/Floor/TileSet_963.asset new file mode 100644 index 0000000..31d038b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_963.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f205cefe72b4b578e5b61831ac630f5669470e6c717f2832440d1b50705d6961 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_963.asset.meta b/Assets/04_Tiles/Floor/TileSet_963.asset.meta new file mode 100644 index 0000000..c7c22fa --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_963.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 481926aee87433f4ebbc3b87215352d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_964.asset b/Assets/04_Tiles/Floor/TileSet_964.asset new file mode 100644 index 0000000..ca19647 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_964.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc1c8af32b670f9885a12735af5b737a9fb61922f5f4bc6f55d31b71fbde1f11 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_964.asset.meta b/Assets/04_Tiles/Floor/TileSet_964.asset.meta new file mode 100644 index 0000000..fb6068e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_964.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc720ca7fa3793348a18101cf5c6739d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_965.asset b/Assets/04_Tiles/Floor/TileSet_965.asset new file mode 100644 index 0000000..e33399f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_965.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ef61e4b433d5285f80bb258bfd07c14f4593348d6f8e616508947d70db9ace7 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_965.asset.meta b/Assets/04_Tiles/Floor/TileSet_965.asset.meta new file mode 100644 index 0000000..1f51360 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_965.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86049b5081e1d8d4fba5300279a0515f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_966.asset b/Assets/04_Tiles/Floor/TileSet_966.asset new file mode 100644 index 0000000..7a5cc36 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_966.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23f0f985bdeceeb195994c1481b1139b496a70deb1555647be137004d9ecc26f +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_966.asset.meta b/Assets/04_Tiles/Floor/TileSet_966.asset.meta new file mode 100644 index 0000000..8a2079b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_966.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 793be3091c6690c4aa6ccbbb157fd843 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_967.asset b/Assets/04_Tiles/Floor/TileSet_967.asset new file mode 100644 index 0000000..7c2eb04 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_967.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003a1867148cad04a983279148e51fe4ad3c1e95203e84c0b80f8f0a92613b32 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_967.asset.meta b/Assets/04_Tiles/Floor/TileSet_967.asset.meta new file mode 100644 index 0000000..dedfbb4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_967.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 104ab7a0ddcb1294b9cb04097388ff47 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_968.asset b/Assets/04_Tiles/Floor/TileSet_968.asset new file mode 100644 index 0000000..17e3b37 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_968.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc45db8642897dae5f4ff35fd3d8e93f749e7293acd64b802c1339bc71f56a7 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_968.asset.meta b/Assets/04_Tiles/Floor/TileSet_968.asset.meta new file mode 100644 index 0000000..c134be7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_968.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79ddb5247b75e904bbb66ead44bfd948 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_969.asset b/Assets/04_Tiles/Floor/TileSet_969.asset new file mode 100644 index 0000000..4f1dbb7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_969.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95d0d43fd6263867fe838b2e2a1a9353adb9e79a00022061c63f3d4954e34289 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_969.asset.meta b/Assets/04_Tiles/Floor/TileSet_969.asset.meta new file mode 100644 index 0000000..d049ee3 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_969.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 52256703e0cd7f14381d03f34aaee102 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_97.asset b/Assets/04_Tiles/Floor/TileSet_97.asset new file mode 100644 index 0000000..64556a5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_97.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1bea7268162e0dfd956b1d80502722fb950cb929eb19f65bd3765a47b5d98ed +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_97.asset.meta b/Assets/04_Tiles/Floor/TileSet_97.asset.meta new file mode 100644 index 0000000..5775e7a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_97.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3cb73db71b9417d4c967c42f8d6680a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_970.asset b/Assets/04_Tiles/Floor/TileSet_970.asset new file mode 100644 index 0000000..f5c7b9c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_970.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2a4e52fd3439bd7751584533b52dea3b64aba8f7e680beb8a9c8fd31c6d3fb +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_970.asset.meta b/Assets/04_Tiles/Floor/TileSet_970.asset.meta new file mode 100644 index 0000000..73aa9e2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_970.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a09bbe8a19fc35a42a78b3127a6a4f8e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_971.asset b/Assets/04_Tiles/Floor/TileSet_971.asset new file mode 100644 index 0000000..159a56d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_971.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:942c42d997fe124bc683042d4582afc51018329887e16f5869dd05522b8aaee6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_971.asset.meta b/Assets/04_Tiles/Floor/TileSet_971.asset.meta new file mode 100644 index 0000000..76b4a73 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_971.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 45e6f2a3332684a469f15f2ff93a19f6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_972.asset b/Assets/04_Tiles/Floor/TileSet_972.asset new file mode 100644 index 0000000..4e1c0d6 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_972.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9910497477307566e4f6b7dcd393017a745042d2b229c167f5c1d23433ff3615 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_972.asset.meta b/Assets/04_Tiles/Floor/TileSet_972.asset.meta new file mode 100644 index 0000000..25fbaba --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_972.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: eb777a2a4b0834e4f82cfc1e0e6e48e8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_973.asset b/Assets/04_Tiles/Floor/TileSet_973.asset new file mode 100644 index 0000000..01e5295 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_973.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6549f64e57d60c3224c73256ca47ff84ebd3fdc9886e9e0830ba712268bb9c35 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_973.asset.meta b/Assets/04_Tiles/Floor/TileSet_973.asset.meta new file mode 100644 index 0000000..299460e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_973.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bd2ec6b889635c41baf989a56e81212 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_974.asset b/Assets/04_Tiles/Floor/TileSet_974.asset new file mode 100644 index 0000000..4c44f60 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_974.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b676c241bb540fd3b03106bbe84b93b8da402b7f78d14ce0cb982886a969c593 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_974.asset.meta b/Assets/04_Tiles/Floor/TileSet_974.asset.meta new file mode 100644 index 0000000..e2fa305 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_974.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f10a54fc7d340e45b7662b079765911 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_975.asset b/Assets/04_Tiles/Floor/TileSet_975.asset new file mode 100644 index 0000000..536c5d7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_975.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d7a54136a75086708b0d86d3094ae08a13337104702747c1172b94d3a38a26d +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_975.asset.meta b/Assets/04_Tiles/Floor/TileSet_975.asset.meta new file mode 100644 index 0000000..143aea4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_975.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b089396157ac1b94f808d8dedb0329b6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_976.asset b/Assets/04_Tiles/Floor/TileSet_976.asset new file mode 100644 index 0000000..de714de --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_976.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19c5ee6430037bc69850251ed0ffba871299242dd3db6d4c93baa2c4a5e46050 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_976.asset.meta b/Assets/04_Tiles/Floor/TileSet_976.asset.meta new file mode 100644 index 0000000..7442b8c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_976.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2a2bd141ec46f13459a77baba0fa8d03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_977.asset b/Assets/04_Tiles/Floor/TileSet_977.asset new file mode 100644 index 0000000..f029a54 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_977.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23812aba38248054eaf184c6e15a91f5a30e06ddca2616cf3a3771ce0584abb6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_977.asset.meta b/Assets/04_Tiles/Floor/TileSet_977.asset.meta new file mode 100644 index 0000000..c42aa79 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_977.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a602663097dfc24f8b28902c81c8109 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_978.asset b/Assets/04_Tiles/Floor/TileSet_978.asset new file mode 100644 index 0000000..e31d890 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_978.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890813681f64b2df6d5f00faa16d2947a80349070113215730cc53c8cb89cbec +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_978.asset.meta b/Assets/04_Tiles/Floor/TileSet_978.asset.meta new file mode 100644 index 0000000..75ecb3c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_978.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2e64502c39ae9f43888b1d053424845 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_979.asset b/Assets/04_Tiles/Floor/TileSet_979.asset new file mode 100644 index 0000000..1d9e83c --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_979.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d771273ec5de09c7dcaaa9910338135a4bd68dee172cc762b4557bfe0f85ca7 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_979.asset.meta b/Assets/04_Tiles/Floor/TileSet_979.asset.meta new file mode 100644 index 0000000..83dd7a0 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_979.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10453077896e5e640a3b0191260df40d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_98.asset b/Assets/04_Tiles/Floor/TileSet_98.asset new file mode 100644 index 0000000..80eb979 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_98.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0944c5245bce5e0877d51864d69f64a950eeee9f37f40a4c2bc6653bbfe19688 +size 816 diff --git a/Assets/04_Tiles/Floor/TileSet_98.asset.meta b/Assets/04_Tiles/Floor/TileSet_98.asset.meta new file mode 100644 index 0000000..4e88ece --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_98.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0027a5ea6ee090442bdcf92f70c0f7ea +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_980.asset b/Assets/04_Tiles/Floor/TileSet_980.asset new file mode 100644 index 0000000..2587dde --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_980.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7db2ca52576dc1292763a81407b0c13182df11c123c6b87854e19c261e741e32 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_980.asset.meta b/Assets/04_Tiles/Floor/TileSet_980.asset.meta new file mode 100644 index 0000000..e5c943f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_980.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77bf7999607c0d048b66ca6b0a1d5a1b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_981.asset b/Assets/04_Tiles/Floor/TileSet_981.asset new file mode 100644 index 0000000..cd0dc9a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_981.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffdce70c9ce51886b4b567416462522712e6091c3ad130b725fcfd36af9011e +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_981.asset.meta b/Assets/04_Tiles/Floor/TileSet_981.asset.meta new file mode 100644 index 0000000..a1a8ee7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_981.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b16371ee367d62418ee97be8c88e551 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_982.asset b/Assets/04_Tiles/Floor/TileSet_982.asset new file mode 100644 index 0000000..ee745e5 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_982.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff92bb2a904f72aba1e5088f88daaef2d5db554ba88e3477d51e55cd9aabae1f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_982.asset.meta b/Assets/04_Tiles/Floor/TileSet_982.asset.meta new file mode 100644 index 0000000..93dd08a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_982.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd859a82f72cf884ea5d3c1983fc64f7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_983.asset b/Assets/04_Tiles/Floor/TileSet_983.asset new file mode 100644 index 0000000..21e4bc8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_983.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1dd632b05b8c99529f3d7c710faf72c98c14d58876f63fb58f1a7bff4109044 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_983.asset.meta b/Assets/04_Tiles/Floor/TileSet_983.asset.meta new file mode 100644 index 0000000..58307b9 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_983.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db93dc7b9841db64bb0a77a708855912 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_984.asset b/Assets/04_Tiles/Floor/TileSet_984.asset new file mode 100644 index 0000000..82bd703 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_984.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6452afbfa1da854387df071a49db827d5acd84b2f3a9a39879d906cfbdc5afdd +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_984.asset.meta b/Assets/04_Tiles/Floor/TileSet_984.asset.meta new file mode 100644 index 0000000..efc09d2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_984.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea35f6a216f635e41ad736fbcce44b03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_985.asset b/Assets/04_Tiles/Floor/TileSet_985.asset new file mode 100644 index 0000000..ad02d1f --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_985.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f51ed1f6b3902e16c204d95378a4e5021a8f7775fd5c43bf80984bbdde45d896 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_985.asset.meta b/Assets/04_Tiles/Floor/TileSet_985.asset.meta new file mode 100644 index 0000000..cd76f17 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_985.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e6a257ce31bab7a4a827999009b03c42 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_986.asset b/Assets/04_Tiles/Floor/TileSet_986.asset new file mode 100644 index 0000000..9c16e8b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_986.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65007c2ec328f6e49ba5baa1e2ce93671be7cf45fcdb5ea65db52d0bdceb6584 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_986.asset.meta b/Assets/04_Tiles/Floor/TileSet_986.asset.meta new file mode 100644 index 0000000..5628b74 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_986.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c9b68178e70b654dbe79945b7762e0a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_987.asset b/Assets/04_Tiles/Floor/TileSet_987.asset new file mode 100644 index 0000000..f08c2b4 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_987.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edb09c8442874617ec902c2f0f41439b58db31167f1aac9e64b8cf8ab41e1691 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_987.asset.meta b/Assets/04_Tiles/Floor/TileSet_987.asset.meta new file mode 100644 index 0000000..432f64e --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_987.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60aa6669bbd3e6f46941add0c844a12f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_988.asset b/Assets/04_Tiles/Floor/TileSet_988.asset new file mode 100644 index 0000000..6c409f1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_988.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8ec60c31433ba910719af730e13794867102dfd5f549fce2e09f87c7496d64b +size 815 diff --git a/Assets/04_Tiles/Floor/TileSet_988.asset.meta b/Assets/04_Tiles/Floor/TileSet_988.asset.meta new file mode 100644 index 0000000..668f061 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_988.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 72b1a51f52b9b3b4081aa56d4b9a0161 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_989.asset b/Assets/04_Tiles/Floor/TileSet_989.asset new file mode 100644 index 0000000..51a6672 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_989.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ba3267193682d8498a24ef2ef36c38f0d4952bd9a1e6b5429da070dca9dce6 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_989.asset.meta b/Assets/04_Tiles/Floor/TileSet_989.asset.meta new file mode 100644 index 0000000..473c059 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_989.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 71627e1873300f444b3ae752d03cca03 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_99.asset b/Assets/04_Tiles/Floor/TileSet_99.asset new file mode 100644 index 0000000..f9c45ed --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_99.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dea32d62acb296ff0a8e0e7a2c797cdbc3f26df2f2801467210f173464a64102 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_99.asset.meta b/Assets/04_Tiles/Floor/TileSet_99.asset.meta new file mode 100644 index 0000000..29cf0a7 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_99.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c8089aa17a6d0884f8f64b4792fda3d7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_990.asset b/Assets/04_Tiles/Floor/TileSet_990.asset new file mode 100644 index 0000000..1b9d6b8 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_990.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1806aa0518f5a46a313cee7a20ce6a9a5cbe945599f3ae4227c1932ec81672ba +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_990.asset.meta b/Assets/04_Tiles/Floor/TileSet_990.asset.meta new file mode 100644 index 0000000..1bf5d93 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_990.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4098a535e591db4eb3529f18dbad879 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_991.asset b/Assets/04_Tiles/Floor/TileSet_991.asset new file mode 100644 index 0000000..5f06918 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_991.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d24ba744d4bdc5cb2ace542f5a1a48efe373fc0b6dcc91145f5ce0725a6ca2d +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_991.asset.meta b/Assets/04_Tiles/Floor/TileSet_991.asset.meta new file mode 100644 index 0000000..25004cc --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_991.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c06e8523884207343835deb8c0935154 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_992.asset b/Assets/04_Tiles/Floor/TileSet_992.asset new file mode 100644 index 0000000..e39c4dd --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_992.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4dc7a60a2d48a3e9e15f59f6ccaa195123ba670d4bf7b761432e89a2696f13d0 +size 819 diff --git a/Assets/04_Tiles/Floor/TileSet_992.asset.meta b/Assets/04_Tiles/Floor/TileSet_992.asset.meta new file mode 100644 index 0000000..b42e621 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_992.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7910610b1c9b8e447b5bcba0f4ff14cf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_993.asset b/Assets/04_Tiles/Floor/TileSet_993.asset new file mode 100644 index 0000000..18d4ede --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_993.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7387ad79ed2bc2bf40fab91e52ce008912699ff7fba93273d91e8b65f9219650 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_993.asset.meta b/Assets/04_Tiles/Floor/TileSet_993.asset.meta new file mode 100644 index 0000000..a9fce94 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_993.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4e0d964313bd88f4e800d1ef4ce1c723 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_994.asset b/Assets/04_Tiles/Floor/TileSet_994.asset new file mode 100644 index 0000000..616decf --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_994.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e7456a752f6af889bc0ba7a4cedd292e590a2bcc129d7f2c7cd65f5c724096 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_994.asset.meta b/Assets/04_Tiles/Floor/TileSet_994.asset.meta new file mode 100644 index 0000000..fb6f4c2 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_994.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e71f1fff61c60f4fb58daf4d6adc670 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_995.asset b/Assets/04_Tiles/Floor/TileSet_995.asset new file mode 100644 index 0000000..b4647da --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_995.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c4dd97d31dc16260f8b67dc27e3f2746ab4139278516f47275e79cf6a1f573 +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_995.asset.meta b/Assets/04_Tiles/Floor/TileSet_995.asset.meta new file mode 100644 index 0000000..5f4796a --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_995.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 95144f6cc1745ec498795f9016b1994a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_996.asset b/Assets/04_Tiles/Floor/TileSet_996.asset new file mode 100644 index 0000000..6ba6806 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_996.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77796718070b5a921d9530db86e882fa1ef62f7908dd28296ad4b975c808218f +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_996.asset.meta b/Assets/04_Tiles/Floor/TileSet_996.asset.meta new file mode 100644 index 0000000..d2c4336 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_996.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 902fa325f2803e84786b8fc63285d3e7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_997.asset b/Assets/04_Tiles/Floor/TileSet_997.asset new file mode 100644 index 0000000..8a702b1 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_997.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abf9bf3d47a62f702b27721e1da7eae4c63a8c01fc6fda3667ede2623573f04c +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_997.asset.meta b/Assets/04_Tiles/Floor/TileSet_997.asset.meta new file mode 100644 index 0000000..a1ec692 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_997.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2ef2d44b8bc3f7d41bbf6f1ff6b25e1e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_998.asset b/Assets/04_Tiles/Floor/TileSet_998.asset new file mode 100644 index 0000000..cc91d70 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_998.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e95eb88555273538d740d91969b74e4faa68cbb2ba3e186ef2546cdfbb086eca +size 818 diff --git a/Assets/04_Tiles/Floor/TileSet_998.asset.meta b/Assets/04_Tiles/Floor/TileSet_998.asset.meta new file mode 100644 index 0000000..866388d --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_998.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d7f02af07f567b2479ab9e953cfbba58 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Floor/TileSet_999.asset b/Assets/04_Tiles/Floor/TileSet_999.asset new file mode 100644 index 0000000..6aef30b --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_999.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07337feb750f217ac7c839f8f76aae752888409f41e80eb1093b698e5fa7b3e9 +size 817 diff --git a/Assets/04_Tiles/Floor/TileSet_999.asset.meta b/Assets/04_Tiles/Floor/TileSet_999.asset.meta new file mode 100644 index 0000000..2e97a30 --- /dev/null +++ b/Assets/04_Tiles/Floor/TileSet_999.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6aa75756eeb237a49ae634824a233046 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Water.meta b/Assets/04_Tiles/Water.meta new file mode 100644 index 0000000..3416b6e --- /dev/null +++ b/Assets/04_Tiles/Water.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ff09dffb171a4274a844c1eba63704dc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/04_Tiles/Water/Water.prefab b/Assets/04_Tiles/Water/Water.prefab new file mode 100644 index 0000000..7b2f4ef --- /dev/null +++ b/Assets/04_Tiles/Water/Water.prefab @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:073dad90568ea26edda8cc729a5f03884d4da95c7b69d6e695989affd24af4c1 +size 245602 diff --git a/Assets/04_Tiles/Water/Water.prefab.meta b/Assets/04_Tiles/Water/Water.prefab.meta new file mode 100644 index 0000000..5aa088d --- /dev/null +++ b/Assets/04_Tiles/Water/Water.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7e0af3d13616d7c4a94ad278681fca7d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings.meta b/Assets/99_Settings.meta new file mode 100644 index 0000000..39b94dd --- /dev/null +++ b/Assets/99_Settings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 709f11a7f3c4041caa4ef136ea32d874 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/DefaultVolumeProfile.asset b/Assets/99_Settings/DefaultVolumeProfile.asset new file mode 100644 index 0000000..bbaa559 --- /dev/null +++ b/Assets/99_Settings/DefaultVolumeProfile.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a6f825e8d07fe8b9f3b52e7d4e2dfa0e22c555b22335adb19f0ecc66dfa38dd +size 23987 diff --git a/Assets/99_Settings/DefaultVolumeProfile.asset.meta b/Assets/99_Settings/DefaultVolumeProfile.asset.meta new file mode 100644 index 0000000..53b314a --- /dev/null +++ b/Assets/99_Settings/DefaultVolumeProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ab09877e2e707104187f6f83e2f62510 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/GameInput.inputactions b/Assets/99_Settings/GameInput.inputactions new file mode 100644 index 0000000..172637f --- /dev/null +++ b/Assets/99_Settings/GameInput.inputactions @@ -0,0 +1,80 @@ +{ + "version": 1, + "name": "GameInput", + "maps": [ + { + "name": "Character", + "id": "ea8ee446-5717-4986-bdd5-c9f7a1b75dd3", + "actions": [ + { + "name": "Move", + "type": "Value", + "id": "732ed064-1382-4949-9f7d-47533e3bd585", + "expectedControlType": "Vector2", + "processors": "", + "interactions": "", + "initialStateCheck": true, + "priority": 0 + } + ], + "bindings": [ + { + "name": "2D Vector", + "id": "8e90e752-3156-4bcd-b1c1-c233470bacc3", + "path": "2DVector", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": true, + "isPartOfComposite": false + }, + { + "name": "up", + "id": "05bca409-e112-4898-b715-00e963da4a40", + "path": "/upArrow", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "down", + "id": "24228439-9284-4655-9871-3d12a5b9a75a", + "path": "/downArrow", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "left", + "id": "7533f565-ee4a-45a7-a6a6-3c8f83af1581", + "path": "/leftArrow", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + }, + { + "name": "right", + "id": "3706c006-de6d-4e66-bc32-0e2ef2dc1440", + "path": "/rightArrow", + "interactions": "", + "processors": "", + "groups": "", + "action": "Move", + "isComposite": false, + "isPartOfComposite": true + } + ] + } + ], + "controlSchemes": [] +} \ No newline at end of file diff --git a/Assets/99_Settings/GameInput.inputactions.meta b/Assets/99_Settings/GameInput.inputactions.meta new file mode 100644 index 0000000..d12fc72 --- /dev/null +++ b/Assets/99_Settings/GameInput.inputactions.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 322d2d1aaa8ee4140b9464e4390b200b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 8404be70184654265930450def6a9037, type: 3} + generateWrapperCode: 1 + wrapperCodePath: + wrapperClassName: + wrapperCodeNamespace: diff --git a/Assets/99_Settings/Mobile_RPAsset.asset b/Assets/99_Settings/Mobile_RPAsset.asset new file mode 100644 index 0000000..0ea99c7 --- /dev/null +++ b/Assets/99_Settings/Mobile_RPAsset.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d5182d2b8884ac88bc6ed033a0a722c23cfb15a7bc8b7daa38db37227bafd09 +size 4650 diff --git a/Assets/99_Settings/Mobile_RPAsset.asset.meta b/Assets/99_Settings/Mobile_RPAsset.asset.meta new file mode 100644 index 0000000..3660d15 --- /dev/null +++ b/Assets/99_Settings/Mobile_RPAsset.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5e6cbd92db86f4b18aec3ed561671858 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/Mobile_Renderer.asset b/Assets/99_Settings/Mobile_Renderer.asset new file mode 100644 index 0000000..e26ada9 --- /dev/null +++ b/Assets/99_Settings/Mobile_Renderer.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa93274c9521fa941170becec9e87c5fa36b8587eefd5eeb5c0eed0d1d4b1dbe +size 1713 diff --git a/Assets/99_Settings/Mobile_Renderer.asset.meta b/Assets/99_Settings/Mobile_Renderer.asset.meta new file mode 100644 index 0000000..a3588b1 --- /dev/null +++ b/Assets/99_Settings/Mobile_Renderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65bc7dbf4170f435aa868c779acfb082 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/PC_RPAsset.asset b/Assets/99_Settings/PC_RPAsset.asset new file mode 100644 index 0000000..5c32dac --- /dev/null +++ b/Assets/99_Settings/PC_RPAsset.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08a9c221b335a0dbca1b6967b7de5c42b957c5f0d5e43da9edb36ca8fce5966b +size 4669 diff --git a/Assets/99_Settings/PC_RPAsset.asset.meta b/Assets/99_Settings/PC_RPAsset.asset.meta new file mode 100644 index 0000000..e286b2f --- /dev/null +++ b/Assets/99_Settings/PC_RPAsset.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b83569d67af61e458304325a23e5dfd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/PC_Renderer.asset b/Assets/99_Settings/PC_Renderer.asset new file mode 100644 index 0000000..1d091f9 --- /dev/null +++ b/Assets/99_Settings/PC_Renderer.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0b01d8ded3327263b6690be128a3de58d17c514943ae42fe743a3e084a9c79 +size 3439 diff --git a/Assets/99_Settings/PC_Renderer.asset.meta b/Assets/99_Settings/PC_Renderer.asset.meta new file mode 100644 index 0000000..ddae6a5 --- /dev/null +++ b/Assets/99_Settings/PC_Renderer.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f288ae1f4751b564a96ac7587541f7a2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/SampleSceneProfile.asset b/Assets/99_Settings/SampleSceneProfile.asset new file mode 100644 index 0000000..8d640bc --- /dev/null +++ b/Assets/99_Settings/SampleSceneProfile.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8677d4bac051d24caa11cd622e39f968155ee277bfce132274f1de225692fe9 +size 3703 diff --git a/Assets/99_Settings/SampleSceneProfile.asset.meta b/Assets/99_Settings/SampleSceneProfile.asset.meta new file mode 100644 index 0000000..b82270c --- /dev/null +++ b/Assets/99_Settings/SampleSceneProfile.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10fc4df2da32a41aaa32d77bc913491c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/99_Settings/UniversalRenderPipelineGlobalSettings.asset b/Assets/99_Settings/UniversalRenderPipelineGlobalSettings.asset new file mode 100644 index 0000000..8a249ff --- /dev/null +++ b/Assets/99_Settings/UniversalRenderPipelineGlobalSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f053342fdc765beb9c0dcdc6f6088c76c83cc0276d84b93fa44f9ff3653bf68 +size 25579 diff --git a/Assets/99_Settings/UniversalRenderPipelineGlobalSettings.asset.meta b/Assets/99_Settings/UniversalRenderPipelineGlobalSettings.asset.meta new file mode 100644 index 0000000..81b84f2 --- /dev/null +++ b/Assets/99_Settings/UniversalRenderPipelineGlobalSettings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18dc0cd2c080841dea60987a38ce93fa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro.meta b/Assets/TextMesh Pro.meta new file mode 100644 index 0000000..f9da8b5 --- /dev/null +++ b/Assets/TextMesh Pro.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f54d1bd14bd3ca042bd867b519fee8cc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Fonts.meta b/Assets/TextMesh Pro/Fonts.meta new file mode 100644 index 0000000..f0c2972 --- /dev/null +++ b/Assets/TextMesh Pro/Fonts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ab70aee4d56447429c680537fbf93ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt new file mode 100644 index 0000000..f2473f9 --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt @@ -0,0 +1,46 @@ +Digitized data copyright (c) 2010 Google Corporation + with Reserved Font Arimo, Tinos and Cousine. +Copyright (c) 2012 Red Hat, Inc. + with Reserved Font Name Liberation. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the copyright statement(s). + +"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. + +5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta new file mode 100644 index 0000000..fa60cea --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e59c59b81ab47f9b6ec5781fa725d2c +timeCreated: 1484171296 +licenseType: Pro +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans.ttf b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf new file mode 100644 index 0000000..0d896af --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5b0af421ea2bfbc1ac8d251d647268087ae82786234c57f757d1f0b90fa8b49 +size 350200 diff --git a/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta new file mode 100644 index 0000000..f2fc814 --- /dev/null +++ b/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta @@ -0,0 +1,19 @@ +fileFormatVersion: 2 +guid: e3265ab4bf004d28a9537516768c1c75 +timeCreated: 1484171297 +licenseType: Pro +TrueTypeFontImporter: + serializedVersion: 2 + fontSize: 16 + forceTextureCase: -2 + characterSpacing: 1 + characterPadding: 0 + includeFontData: 1 + use2xBehaviour: 0 + fontNames: [] + fallbackFontReferences: [] + customCharacters: + fontRenderingMode: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources.meta b/Assets/TextMesh Pro/Resources.meta new file mode 100644 index 0000000..cfc142f --- /dev/null +++ b/Assets/TextMesh Pro/Resources.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 243e06394e614e5d99fab26083b707fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials.meta new file mode 100644 index 0000000..8a01112 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 731f1baa9d144a9897cb1d341c2092b8 +folderAsset: yes +timeCreated: 1442040525 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat new file mode 100644 index 0000000..5bc142c --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat @@ -0,0 +1,106 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF - Drop Shadow + m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3} + m_ShaderKeywords: OUTLINE_ON UNDERLAY_ON + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FaceTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 28684132378477856, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OutlineTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Ambient: 0.5 + - _Bevel: 0.5 + - _BevelClamp: 0 + - _BevelOffset: 0 + - _BevelRoundness: 0 + - _BevelWidth: 0 + - _BumpFace: 0 + - _BumpOutline: 0 + - _ColorMask: 15 + - _Diffuse: 0.5 + - _DiffusePower: 1 + - _FaceDilate: 0.1 + - _FaceUVSpeedX: 0 + - _FaceUVSpeedY: 0 + - _GlowInner: 0.05 + - _GlowOffset: 0 + - _GlowOuter: 0.05 + - _GlowPower: 0.75 + - _GradientScale: 10 + - _LightAngle: 3.1416 + - _MaskSoftnessX: 0 + - _MaskSoftnessY: 0 + - _OutlineSoftness: 0 + - _OutlineUVSpeedX: 0 + - _OutlineUVSpeedY: 0 + - _OutlineWidth: 0.1 + - _PerspectiveFilter: 0.875 + - _Reflectivity: 10 + - _ScaleRatioA: 0.9 + - _ScaleRatioB: 0.73125 + - _ScaleRatioC: 0.64125 + - _ScaleX: 1 + - _ScaleY: 1 + - _ShaderFlags: 0 + - _Sharpness: 0 + - _SpecularPower: 2 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _TextureHeight: 1024 + - _TextureWidth: 1024 + - _UnderlayDilate: 0 + - _UnderlayOffsetX: 0.5 + - _UnderlayOffsetY: -0.5 + - _UnderlaySoftness: 0.05 + - _VertexOffsetX: 0 + - _VertexOffsetY: 0 + - _WeightBold: 0.75 + - _WeightNormal: 0 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} + - _FaceColor: {r: 1, g: 1, b: 1, a: 1} + - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} + - _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecularColor: {r: 1, g: 1, b: 1, a: 1} + - _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5} diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta new file mode 100644 index 0000000..fbd2cdb --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e73a58f6e2794ae7b1b7e50b7fb811b0 +timeCreated: 1484172806 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset new file mode 100644 index 0000000..ea769cb --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d77876f2b90d98ba2424f6fc32b1403ea701de8fd24a8fe8e571ecc3cdc10a +size 9365 diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta new file mode 100644 index 0000000..42dd6ac --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e498d1c8094910479dc3e1b768306a4 +timeCreated: 1484171803 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat new file mode 100644 index 0000000..cca8ce8 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat @@ -0,0 +1,104 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LiberationSans SDF - Outline + m_Shader: {fileID: 4800000, guid: fe393ace9b354375a9cb14cdbbc28be4, type: 3} + m_ShaderKeywords: OUTLINE_ON + m_LightmapFlags: 5 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _Cube: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _FaceTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 28684132378477856, guid: 8f586378b4e144a9851e7b34d9b748ee, + type: 2} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OutlineTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Floats: + - _Ambient: 0.5 + - _Bevel: 0.5 + - _BevelClamp: 0 + - _BevelOffset: 0 + - _BevelRoundness: 0 + - _BevelWidth: 0 + - _BumpFace: 0 + - _BumpOutline: 0 + - _ColorMask: 15 + - _Diffuse: 0.5 + - _FaceDilate: 0.1 + - _FaceUVSpeedX: 0 + - _FaceUVSpeedY: 0 + - _GlowInner: 0.05 + - _GlowOffset: 0 + - _GlowOuter: 0.05 + - _GlowPower: 0.75 + - _GradientScale: 10 + - _LightAngle: 3.1416 + - _MaskSoftnessX: 0 + - _MaskSoftnessY: 0 + - _OutlineSoftness: 0 + - _OutlineUVSpeedX: 0 + - _OutlineUVSpeedY: 0 + - _OutlineWidth: 0.1 + - _PerspectiveFilter: 0.875 + - _Reflectivity: 10 + - _ScaleRatioA: 0.9 + - _ScaleRatioB: 0.73125 + - _ScaleRatioC: 0.64125 + - _ScaleX: 1 + - _ScaleY: 1 + - _ShaderFlags: 0 + - _Sharpness: 0 + - _SpecularPower: 2 + - _Stencil: 0 + - _StencilComp: 8 + - _StencilOp: 0 + - _StencilReadMask: 255 + - _StencilWriteMask: 255 + - _TextureHeight: 1024 + - _TextureWidth: 1024 + - _UnderlayDilate: 0 + - _UnderlayOffsetX: 0 + - _UnderlayOffsetY: 0 + - _UnderlaySoftness: 0 + - _VertexOffsetX: 0 + - _VertexOffsetY: 0 + - _WeightBold: 0.75 + - _WeightNormal: 0 + m_Colors: + - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} + - _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0} + - _FaceColor: {r: 1, g: 1, b: 1, a: 1} + - _GlowColor: {r: 0, g: 1, b: 0, a: 0.5} + - _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767} + - _OutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1} + - _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecularColor: {r: 1, g: 1, b: 1, a: 1} + - _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5} diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta new file mode 100644 index 0000000..88d6334 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79459efec17a4d00a321bdcc27bbc385 +timeCreated: 1484172856 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset new file mode 100644 index 0000000..40d3e11 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ff50e3133d989180b187748ffc67903f1fede099a5b85b4fcbd8cb6e8be958 +size 2256862 diff --git a/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta new file mode 100644 index 0000000..66e69d1 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f586378b4e144a9851e7b34d9b748ee +timeCreated: 1484171803 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt new file mode 100644 index 0000000..a52cc38 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt @@ -0,0 +1 @@ +)]}〕〉》」』】〙〗〟’”⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、%,.:;。!?]):;=}¢°"†‡℃〆%,. \ No newline at end of file diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta new file mode 100644 index 0000000..73ed660 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fade42e8bc714b018fac513c043d323b +timeCreated: 1425440388 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt new file mode 100644 index 0000000..ccbb4ae --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt @@ -0,0 +1 @@ +([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # \ No newline at end of file diff --git a/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta new file mode 100644 index 0000000..cc684b3 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d82c1b31c7e74239bff1220585707d2b +timeCreated: 1425440388 +licenseType: Store +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Sprite Assets.meta b/Assets/TextMesh Pro/Resources/Sprite Assets.meta new file mode 100644 index 0000000..5171f1b --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Sprite Assets.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 512a49d95c0c4332bdd98131869c23c9 +folderAsset: yes +timeCreated: 1441876896 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset new file mode 100644 index 0000000..8fd3185 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155fff99f467baa93dd2d0886df466bd242cd5e3c8c60c9d43e9cdad269f7f54 +size 13441 diff --git a/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta new file mode 100644 index 0000000..c7ac83f --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c41005c129ba4d66911b75229fd70b45 +timeCreated: 1480316912 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Style Sheets.meta b/Assets/TextMesh Pro/Resources/Style Sheets.meta new file mode 100644 index 0000000..4958550 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Style Sheets.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 4aecb92fff08436c8303b10eab8da368 +folderAsset: yes +timeCreated: 1441876950 +licenseType: Pro +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset new file mode 100644 index 0000000..1577719 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e073cdb91b7e3d2fa31e2dd13626d7b9d2f327904ba8c3c2b97a3eecfbabac +size 5539 diff --git a/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta new file mode 100644 index 0000000..95fd96e --- /dev/null +++ b/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f952c082cb03451daed3ee968ac6c63e +timeCreated: 1432805430 +licenseType: Store +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Resources/TMP Settings.asset b/Assets/TextMesh Pro/Resources/TMP Settings.asset new file mode 100644 index 0000000..4611bc8 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/TMP Settings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7be438062cdc296835a1258b68bcbeb8e9fdc4b01ea27c05a24a1074260f7424 +size 1852 diff --git a/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta b/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta new file mode 100644 index 0000000..32db384 --- /dev/null +++ b/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3f5b5dff67a942289a9defa416b206f3 +timeCreated: 1436653997 +licenseType: Pro +NativeFormatImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders.meta b/Assets/TextMesh Pro/Shaders.meta new file mode 100644 index 0000000..29a90a6 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9f693669af91aa45ad615fc681ed29f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl new file mode 100644 index 0000000..b611994 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl @@ -0,0 +1,178 @@ +float2 UnpackUV(float uv) +{ + float2 output; + output.x = floor(uv / 4096.0); + output.y = uv - 4096.0 * output.x; + + return output * 0.001953125; +} + +float4 BlendARGB(float4 overlying, float4 underlying) +{ + overlying.rgb *= overlying.a; + underlying.rgb *= underlying.a; + float3 blended = overlying.rgb + ((1 - overlying.a) * underlying.rgb); + float alpha = underlying.a + (1 - underlying.a) * overlying.a; + return float4(blended / alpha, alpha); +} + +float3 GetSpecular(float3 n, float3 l) +{ + float spec = pow(max(0.0, dot(n, l)), _Reflectivity); + return _SpecularColor.rgb * spec * _SpecularPower; +} + +void GetSurfaceNormal_float(texture2D atlas, float textureWidth, float textureHeight, float2 uv, bool isFront, out float3 nornmal) +{ + float3 delta = float3(1.0 / textureWidth, 1.0 / textureHeight, 0.0); + + // Read "height field" + float4 h = float4( + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv - delta.xz).a, + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv + delta.xz).a, + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv - delta.zy).a, + SAMPLE_TEXTURE2D(atlas, SamplerState_Linear_Clamp, uv + delta.zy).a); + + bool raisedBevel = _BevelType; + + h += _BevelOffset; + + float bevelWidth = max(.01, _BevelWidth); + + // Track outline + h -= .5; + h /= bevelWidth; + h = saturate(h + .5); + + if (raisedBevel) h = 1 - abs(h * 2.0 - 1.0); + h = lerp(h, sin(h * 3.141592 / 2.0), float4(_BevelRoundness, _BevelRoundness, _BevelRoundness, _BevelRoundness)); + h = min(h, 1.0 - float4(_BevelClamp, _BevelClamp, _BevelClamp, _BevelClamp)); + h *= _BevelAmount * bevelWidth * _GradientScale * -2.0; + + float3 va = normalize(float3(-1.0, 0.0, h.y - h.x)); + float3 vb = normalize(float3(0.0, 1.0, h.w - h.z)); + + float3 f = float3(1, 1, 1); + if (isFront) f = float3(1, 1, -1); + nornmal = cross(va, vb) * f; +} + +void EvaluateLight_float(float4 faceColor, float3 n, out float4 color) +{ + n.z = abs(n.z); + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), 1.0)); + + float3 col = max(faceColor.rgb, 0) + GetSpecular(n, light)* faceColor.a; + //faceColor.rgb += col * faceColor.a; + col *= 1 - (dot(n, light) * _Diffuse); + col *= lerp(_Ambient, 1, n.z * n.z); + + //fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + //faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + + color = float4(col, faceColor.a); +} + +// Add custom function to handle time in HDRP + + +// +void GenerateUV_float(float2 inUV, float4 transform, float2 animSpeed, out float2 outUV) +{ + outUV = inUV * transform.xy + transform.zw + (animSpeed * _Time.y); +} + +void ComputeUVOffset_float(float texWidth, float texHeight, float2 offset, float SDR, out float2 uvOffset) +{ + uvOffset = float2(-offset.x * SDR / texWidth, -offset.y * SDR / texHeight); +} + +void ScreenSpaceRatio2_float(float4x4 projection, float4 position, float2 objectScale, float screenWidth, float screenHeight, float fontScale, out float SSR) +{ + float2 pixelSize = position.w; + pixelSize /= (objectScale * mul((float2x2)projection, float2(screenWidth, screenHeight))); + SSR = rsqrt(dot(pixelSize, pixelSize)*2) * fontScale; +} + +// UV : Texture coordinate of the source distance field texture +// TextureSize : Size of the source distance field texture +// Filter : Enable perspective filter (soften) +void ScreenSpaceRatio_float(float2 UV, float TextureSize, bool Filter, out float SSR) +{ + if(Filter) + { + float2 a = float2(ddx(UV.x), ddy(UV.x)); + float2 b = float2(ddx(UV.y), ddy(UV.y)); + float s = lerp(dot(a,a), dot(b,b), 0.5); + SSR = rsqrt(s) / TextureSize; + } + else + { + float s = rsqrt(abs(ddx(UV.x) * ddy(UV.y) - ddy(UV.x) * ddx(UV.y))); + SSR = s / TextureSize; + } +} + +// SSR : Screen Space Ratio +// SD : Signed Distance (encoded : Distance / SDR + .5) +// SDR : Signed Distance Ratio +// +// IsoPerimeter : Dilate / Contract the shape +void ComputeSDF_float(float SSR, float SD, float SDR, float isoPerimeter, float softness, out float outAlpha) +{ + softness *= SSR * SDR; + float d = (SD - 0.5) * SDR; // Signed distance to edge, in Texture space + outAlpha = saturate((d * 2.0 * SSR + 0.5 + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); // Screen pixel coverage (alpha) +} + +void ComputeSDF2_float(float SSR, float SD, float SDR, float2 isoPerimeter, float2 softness, out float2 outAlpha) +{ + softness *= SSR * SDR; + float d = (SD - 0.5f) * SDR; + outAlpha = saturate((d * 2.0f * SSR + 0.5f + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); +} + +void ComputeSDF4_float(float SSR, float SD, float SDR, float4 isoPerimeter, float4 softness, out float4 outAlpha) +{ + softness *= SSR * SDR; + float d = (SD - 0.5f) * SDR; + outAlpha = saturate((d * 2.0f * SSR + 0.5f + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); +} + +void ComputeSDF44_float(float SSR, float4 SD, float SDR, float4 isoPerimeter, float4 softness, bool outline, out float4 outAlpha) +{ + softness *= SSR * SDR; + float4 d = (SD - 0.5f) * SDR; + if(outline) d.w = max(max(d.x, d.y), d.z); + outAlpha = saturate((d * 2.0f * SSR + 0.5f + isoPerimeter * SDR * SSR + softness * 0.5) / (1.0 + softness)); +} + +void Composite_float(float4 overlying, float4 underlying, out float4 outColor) +{ + outColor = BlendARGB(overlying, underlying); +} + +// Face only +void Layer1_float(float alpha, float4 color0, out float4 outColor) +{ + color0.a *= alpha; + outColor = color0; +} + +// Face + 1 Outline +void Layer2_float(float2 alpha, float4 color0, float4 color1, out float4 outColor) +{ + color1.a *= alpha.y; + color0.rgb *= color0.a; color1.rgb *= color1.a; + outColor = lerp(color1, color0, alpha.x); + outColor.rgb /= outColor.a; +} + +// Face + 3 Outline +void Layer4_float(float4 alpha, float4 color0, float4 color1, float4 color2, float4 color3, out float4 outColor) +{ + color3.a *= alpha.w; + color0.rgb *= color0.a; color1.rgb *= color1.a; color2.rgb *= color2.a; color3.rgb *= color3.a; + outColor = lerp(lerp(lerp(color3, color2, alpha.z), color1, alpha.y), color0, alpha.x); + outColor.rgb /= outColor.a; +} diff --git a/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl.meta b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl.meta new file mode 100644 index 0000000..001b14e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 96de908384869cd409c75efa351d5edf +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + preprocessorOverride: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader new file mode 100644 index 0000000..7e0f35c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader @@ -0,0 +1,145 @@ +Shader "TextMeshPro/Bitmap Custom Atlas" { + +Properties { + _MainTex ("Font Atlas", 2D) = "white" {} + _FaceTex ("Font Texture", 2D) = "white" {} + _FaceColor ("Text Color", Color) = (1,1,1,1) + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _Padding ("Padding", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader{ + + Tags { "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + + Lighting Off + Cull [_CullMode] + ZTest [unity_GUIZTestMode] + ZWrite Off + Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + float4 mask : TEXCOORD2; + }; + + uniform sampler2D _MainTex; + uniform sampler2D _FaceTex; + uniform float4 _FaceTex_ST; + uniform fixed4 _FaceColor; + + uniform float _VertexOffsetX; + uniform float _VertexOffsetY; + uniform float4 _ClipRect; + uniform float _MaskSoftnessX; + uniform float _MaskSoftnessY; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + v2f vert (appdata_t v) + { + float4 vert = v.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + vert.xy += (vert.w * 0.5) / _ScreenParams.xy; + + float4 vPosition = UnityPixelSnap(UnityObjectToClipPos(vert)); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + fixed4 faceColor = v.color; + faceColor *= _FaceColor; + + v2f OUT; + OUT.vertex = vPosition; + OUT.color = faceColor; + OUT.texcoord0 = v.texcoord0; + OUT.texcoord1 = TRANSFORM_TEX(v.texcoord1, _FaceTex); + float2 pixelSize = vPosition.w; + pixelSize /= abs(float2(_ScreenParams.x * UNITY_MATRIX_P[0][0], _ScreenParams.y * UNITY_MATRIX_P[1][1])); + + // Clamp _ClipRect to 16bit. + const float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + OUT.mask = float4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return OUT; + } + + fixed4 frag (v2f IN) : SV_Target + { + fixed4 color = tex2D(_MainTex, IN.texcoord0) * tex2D(_FaceTex, IN.texcoord1) * IN.color; + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(color.a - 0.001); + #endif + + return color; + } + ENDCG + } +} + + CustomEditor "TMPro.EditorUtilities.TMP_BitmapShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta new file mode 100644 index 0000000..0a416c8 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 48bb5f55d8670e349b6e614913f9d910 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader new file mode 100644 index 0000000..b89e267 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader @@ -0,0 +1,155 @@ +Shader "TextMeshPro/Mobile/Bitmap" { + +Properties { + _MainTex ("Font Atlas", 2D) = "white" {} + _Color ("Text Color", Color) = (1,1,1,1) + _DiffusePower ("Diffuse Power", Range(1.0,4.0)) = 1.0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + + Lighting Off + Cull [_CullMode] + ZTest [unity_GUIZTestMode] + ZWrite Off + Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma fragmentoption ARB_precision_hint_fastest + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct v2f + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float4 mask : TEXCOORD2; + }; + + sampler2D _MainTex; + fixed4 _Color; + float _DiffusePower; + + uniform float _VertexOffsetX; + uniform float _VertexOffsetY; + uniform float4 _ClipRect; + uniform float _MaskSoftnessX; + uniform float _MaskSoftnessY; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + v2f vert (appdata_t v) + { + v2f OUT; + float4 vert = v.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + vert.xy += (vert.w * 0.5) / _ScreenParams.xy; + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + OUT.vertex = UnityPixelSnap(UnityObjectToClipPos(vert)); + OUT.color = v.color; + OUT.color *= _Color; + OUT.color.rgb *= _DiffusePower; + OUT.texcoord0 = v.texcoord0; + + float2 pixelSize = OUT.vertex.w; + //pixelSize /= abs(float2(_ScreenParams.x * UNITY_MATRIX_P[0][0], _ScreenParams.y * UNITY_MATRIX_P[1][1])); + + // Clamp _ClipRect to 16bit. + const float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + OUT.mask = float4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return OUT; + } + + fixed4 frag (v2f IN) : COLOR + { + fixed4 color = fixed4(IN.color.rgb, IN.color.a * tex2D(_MainTex, IN.texcoord0).a); + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(color.a - 0.001); + #endif + + return color; + } + ENDCG + } +} + +SubShader { + Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } + Lighting Off Cull Off ZTest Always ZWrite Off Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + BindChannels { + Bind "Color", color + Bind "Vertex", vertex + Bind "TexCoord", texcoord0 + } + Pass { + SetTexture [_MainTex] { + constantColor [_Color] combine constant * primary, constant * texture + } + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_BitmapShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta new file mode 100644 index 0000000..d5fb125 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 1e3b057af24249748ff873be7fafee47 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader new file mode 100644 index 0000000..caa527f --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader @@ -0,0 +1,145 @@ +Shader "TextMeshPro/Bitmap" { + +Properties { + _MainTex ("Font Atlas", 2D) = "white" {} + _FaceTex ("Font Texture", 2D) = "white" {} + _FaceColor ("Text Color", Color) = (1,1,1,1) + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader{ + + Tags { "Queue" = "Transparent" "IgnoreProjector" = "True" "RenderType" = "Transparent" } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + + Lighting Off + Cull [_CullMode] + ZTest [unity_GUIZTestMode] + ZWrite Off + Fog { Mode Off } + Blend SrcAlpha OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + struct appdata_t + { + float4 vertex : POSITION; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + float4 mask : TEXCOORD2; + }; + + uniform sampler2D _MainTex; + uniform sampler2D _FaceTex; + uniform float4 _FaceTex_ST; + uniform fixed4 _FaceColor; + + uniform float _VertexOffsetX; + uniform float _VertexOffsetY; + uniform float4 _ClipRect; + uniform float _MaskSoftnessX; + uniform float _MaskSoftnessY; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + v2f vert (appdata_t v) + { + float4 vert = v.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + vert.xy += (vert.w * 0.5) / _ScreenParams.xy; + + float4 vPosition = UnityPixelSnap(UnityObjectToClipPos(vert)); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + fixed4 faceColor = v.color; + faceColor *= _FaceColor; + + v2f OUT; + OUT.vertex = vPosition; + OUT.color = faceColor; + OUT.texcoord0 = v.texcoord0; + OUT.texcoord1 = TRANSFORM_TEX(v.texcoord1, _FaceTex); + float2 pixelSize = vPosition.w; + pixelSize /= abs(float2(_ScreenParams.x * UNITY_MATRIX_P[0][0], _ScreenParams.y * UNITY_MATRIX_P[1][1])); + + // Clamp _ClipRect to 16bit. + const float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + OUT.mask = float4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return OUT; + } + + fixed4 frag (v2f IN) : SV_Target + { + fixed4 color = tex2D(_MainTex, IN.texcoord0); + color = fixed4 (tex2D(_FaceTex, IN.texcoord1).rgb * IN.color.rgb, IN.color.a * color.a); + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(color.a - 0.001); + #endif + + return color; + } + ENDCG + } +} + + CustomEditor "TMPro.EditorUtilities.TMP_BitmapShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta new file mode 100644 index 0000000..7eb1870 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 128e987d567d4e2c824d754223b3f3b0 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader new file mode 100644 index 0000000..757a617 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader @@ -0,0 +1,326 @@ +Shader "TextMeshPro/Distance Field Overlay" { + +Properties { + _FaceTex ("Face Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _LightAngle ("Light Angle", Range(0.0, 6.2831853)) = 3.1416 + _SpecularColor ("Specular", Color) = (1,1,1,1) + _SpecularPower ("Specular", Range(0,4)) = 2.0 + _Reflectivity ("Reflectivity", Range(5.0,15.0)) = 10 + _Diffuse ("Diffuse", Range(0,1)) = 0.5 + _Ambient ("Ambient", Range(1,0)) = 0.5 + + _BumpMap ("Normal map", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0 + _BumpFace ("Bump Face", Range(0,1)) = 0 + + _ReflectFaceColor ("Reflection Color", Color) = (0,0,0,1) + _ReflectOutlineColor("Reflection Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + + + _UnderlayColor ("Border Color", Color) = (0,0,0, 0.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _MaskCoord ("Mask Coordinates", vector) = (0, 0, 32767, 32767) + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + Tags + { + "Queue"="Overlay" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest Always + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma target 3.0 + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ BEVEL_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + #pragma shader_feature __ GLOW_ON + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + fixed4 color : COLOR; + float2 atlas : TEXCOORD0; // Atlas + float4 param : TEXCOORD1; // alphaClip, scale, bias, weight + float4 mask : TEXCOORD2; // Position in object space(xy), pixel Size(zw) + float3 viewDir : TEXCOORD3; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 texcoord2 : TEXCOORD4; // u,v, scale, bias + fixed4 underlayColor : COLOR1; + #endif + + float4 textures : TEXCOORD5; + }; + + // Used by Unity internally to handle Texture Tiling and Offset. + uniform float4 _FaceTex_ST; + uniform float4 _OutlineTex_ST; + uniform float _UIMaskSoftnessX; + uniform float _UIMaskSoftnessY; + uniform int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input,output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if (UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float bias =(.5 - weight) + (.5 / scale); + + float alphaClip = (1.0 - _OutlineWidth*_ScaleRatioA - _OutlineSoftness*_ScaleRatioA); + + #if GLOW_ON + alphaClip = min(alphaClip, 1.0 - _GlowOffset * _ScaleRatioB - _GlowOuter * _ScaleRatioB); + #endif + + alphaClip = alphaClip / 2.0 - ( .5 / scale) - weight; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float bScale = scale; + bScale /= 1 + ((_UnderlaySoftness*_ScaleRatioC) * bScale); + float bBias = (0.5 - weight) * bScale - 0.5 - ((_UnderlayDilate * _ScaleRatioC) * 0.5 * bScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 bOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Support for texture tiling and offset + float2 textureUV = input.texcoord1; + float2 faceUV = TRANSFORM_TEX(textureUV, _FaceTex); + float2 outlineUV = TRANSFORM_TEX(textureUV, _OutlineTex); + + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + output.position = vPosition; + output.color = input.color; + output.atlas = input.texcoord0; + output.param = float4(alphaClip, scale, bias, weight); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + output.viewDir = mul((float3x3)_EnvMatrix, _WorldSpaceCameraPos.xyz - mul(unity_ObjectToWorld, vert).xyz); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord2 = float4(input.texcoord0 + bOffset, bScale, bBias); + output.underlayColor = underlayColor; + #endif + output.textures = float4(faceUV, outlineUV); + + return output; + } + + + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + float c = tex2D(_MainTex, input.atlas).a; + + #ifndef UNDERLAY_ON + clip(c - input.param.x); + #endif + + float scale = input.param.y; + float bias = input.param.z; + float weight = input.param.w; + float sd = (bias - c) * scale; + + float outline = (_OutlineWidth * _ScaleRatioA) * scale; + float softness = (_OutlineSoftness * _ScaleRatioA) * scale; + + half4 faceColor = _FaceColor; + half4 outlineColor = _OutlineColor; + + faceColor.rgb *= input.color.rgb; + + faceColor *= tex2D(_FaceTex, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y); + outlineColor *= tex2D(_OutlineTex, input.textures.zw + float2(_OutlineUVSpeedX, _OutlineUVSpeedY) * _Time.y); + + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + + #if BEVEL_ON + float3 dxy = float3(0.5 / _TextureWidth, 0.5 / _TextureHeight, 0); + float3 n = GetSurfaceNormal(input.atlas, weight, dxy); + + float3 bump = UnpackNormal(tex2D(_BumpMap, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + n = normalize(n- bump); + + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), -1.0)); + + float3 col = GetSpecular(n, light); + faceColor.rgb += col*faceColor.a; + faceColor.rgb *= 1-(dot(n, light)*_Diffuse); + faceColor.rgb *= lerp(_Ambient, 1, n.z*n.z); + + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + #endif + + #if UNDERLAY_ON + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * saturate(d - input.texcoord2.w) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * (1 - saturate(d - input.texcoord2.w)) * saturate(1 - sd) * (1 - faceColor.a); + #endif + + #if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + faceColor.rgb += glowColor.rgb * glowColor.a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + faceColor *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor * input.color.a; + } + ENDCG + } +} + +Fallback "TextMeshPro/Mobile/Distance Field" +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta new file mode 100644 index 0000000..56284e9 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: dd89cf5b9246416f84610a006f916af7 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader new file mode 100644 index 0000000..27c14bc --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader @@ -0,0 +1,321 @@ +Shader "TextMeshPro/Distance Field SSD" { + +Properties { + _FaceTex ("Face Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _LightAngle ("Light Angle", Range(0.0, 6.2831853)) = 3.1416 + _SpecularColor ("Specular", Color) = (1,1,1,1) + _SpecularPower ("Specular", Range(0,4)) = 2.0 + _Reflectivity ("Reflectivity", Range(5.0,15.0)) = 10 + _Diffuse ("Diffuse", Range(0,1)) = 0.5 + _Ambient ("Ambient", Range(1,0)) = 0.5 + + _BumpMap ("Normal map", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0 + _BumpFace ("Bump Face", Range(0,1)) = 0 + + _ReflectFaceColor ("Reflection Color", Color) = (0,0,0,1) + _ReflectOutlineColor("Reflection Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + + + _UnderlayColor ("Border Color", Color) = (0,0,0, 0.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _MaskCoord ("Mask Coordinates", vector) = (0, 0, 32767, 32767) + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue" = "Transparent" + "IgnoreProjector" = "True" + "RenderType" = "Transparent" + } + + Stencil + { + Ref[_Stencil] + Comp[_StencilComp] + Pass[_StencilOp] + ReadMask[_StencilReadMask] + WriteMask[_StencilWriteMask] + } + + Cull[_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest[unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask[_ColorMask] + + Pass + { + CGPROGRAM + #pragma target 3.0 + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ BEVEL_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + #pragma shader_feature __ GLOW_ON + #pragma shader_feature __ FORCE_LINEAR + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + float4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + float4 color : COLOR; + float2 atlas : TEXCOORD0; + float weight : TEXCOORD1; + float2 mask : TEXCOORD2; // Position in object space(xy) + float3 viewDir : TEXCOORD3; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float2 texcoord2 : TEXCOORD4; + float4 underlayColor : COLOR1; + #endif + + float4 textures : TEXCOORD5; + }; + + // Used by Unity internally to handle Texture Tiling and Offset. + float4 _FaceTex_ST; + float4 _OutlineTex_ST; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + float4 SRGBToLinear(float4 rgba) + { + return float4(lerp(rgba.rgb / 12.92f, pow((rgba.rgb + 0.055f) / 1.055f, 2.4f), step(0.04045f, rgba.rgb)), rgba.a); + } + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input,output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 bOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + + // Support for texture tiling and offset + float2 textureUV = input.texcoord1; + float2 faceUV = TRANSFORM_TEX(textureUV, _FaceTex); + float2 outlineUV = TRANSFORM_TEX(textureUV, _OutlineTex); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float4 color = input.color; + #if (FORCE_LINEAR && !UNITY_COLORSPACE_GAMMA) + color = SRGBToLinear(input.color); + #endif + + output.position = vPosition; + output.color = color; + output.atlas = input.texcoord0; + output.weight = weight; + output.mask = half2(vert.xy * 2 - clampedRect.xy - clampedRect.zw); + output.viewDir = mul((float3x3)_EnvMatrix, _WorldSpaceCameraPos.xyz - mul(unity_ObjectToWorld, vert).xyz); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord2 = input.texcoord0 + bOffset; + output.underlayColor = underlayColor; + #endif + output.textures = float4(faceUV, outlineUV); + + return output; + } + + + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + float c = tex2D(_MainTex, input.atlas).a; + + float pixelSize = abs(ddx(input.atlas.y)) + abs(ddy(input.atlas.y)); + pixelSize *= _TextureHeight * 0.75; + float scale = 1 / pixelSize * _GradientScale * (_Sharpness + 1); + + float weight = input.weight; + float bias = (.5 - weight) + (.5 / scale); + float sd = (bias - c) * scale; + + float outline = (_OutlineWidth * _ScaleRatioA) * scale; + float softness = (_OutlineSoftness * _ScaleRatioA) * scale; + + half4 faceColor = _FaceColor; + half4 outlineColor = _OutlineColor; + + faceColor.rgb *= input.color.rgb; + + faceColor *= tex2D(_FaceTex, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y); + outlineColor *= tex2D(_OutlineTex, input.textures.zw + float2(_OutlineUVSpeedX, _OutlineUVSpeedY) * _Time.y); + + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + + #if BEVEL_ON + float3 dxy = float3(0.5 / _TextureWidth, 0.5 / _TextureHeight, 0); + float3 n = GetSurfaceNormal(input.atlas, weight, dxy); + + float3 bump = UnpackNormal(tex2D(_BumpMap, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + n = normalize(n - bump); + + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), -1.0)); + + float3 col = GetSpecular(n, light); + faceColor.rgb += col * faceColor.a; + faceColor.rgb *= 1 - (dot(n, light) * _Diffuse); + faceColor.rgb *= lerp(_Ambient, 1, n.z * n.z); + + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + #endif + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float bScale = scale; + bScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * bScale); + float bBias = (0.5 - weight) * bScale - 0.5 - ((_UnderlayDilate * _ScaleRatioC) * 0.5 * bScale); + #endif + + #if UNDERLAY_ON + float d = tex2D(_MainTex, input.texcoord2.xy).a * bScale; + faceColor += input.underlayColor * saturate(d - bBias) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float d = tex2D(_MainTex, input.texcoord2.xy).a * bScale; + faceColor += input.underlayColor * (1 - saturate(d - bBias)) * saturate(1 - sd) * (1 - faceColor.a); + #endif + + #if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + faceColor.rgb += glowColor.rgb * glowColor.a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + float2 maskZW = 0.25 / (0.25 * maskSoftness + 1 / scale); + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * maskZW); + faceColor *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor * input.color.a; + } + ENDCG + } +} + +Fallback "TextMeshPro/Mobile/Distance Field" +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta new file mode 100644 index 0000000..08cd8ae --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 14eb328de4b8eb245bb7cea29e4ac00b +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph new file mode 100644 index 0000000..4f7157c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph @@ -0,0 +1,12074 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "c417006ffa034c44b79da3dd323165ff" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "6b0cd1bfb339459ca967fa23df287ef0" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "bc782d8e80154073b48a687a07adf60a" + }, + { + "m_Id": "2786e48f93f54a82aee4303ce7b63c82" + }, + { + "m_Id": "7f7d8028b58d4227a4560891be6e7cda" + }, + { + "m_Id": "f5a8bfcec21a4dac9df63993ec53635e" + }, + { + "m_Id": "be58359e488f42e9b5121357d0fa526b" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3749.0 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3480.0 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "bc782d8e80154073b48a687a07adf60a" + }, + { + "m_Id": "2786e48f93f54a82aee4303ce7b63c82" + }, + { + "m_Id": "7f7d8028b58d4227a4560891be6e7cda" + }, + { + "m_Id": "f5a8bfcec21a4dac9df63993ec53635e" + }, + { + "m_Id": "be58359e488f42e9b5121357d0fa526b" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "7cf0e63037a74dc2a9f591225c678ff4" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5722.99951171875, + "y": -3827.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData", + "m_ObjectId": "00996039d61e400a9e854ce591ac35a0", + "m_Distortion": false, + "m_DistortionMode": 0, + "m_DistortionDepthTest": true, + "m_AddPrecomputedVelocity": false, + "m_TransparentWritesMotionVec": false, + "m_DepthOffset": false, + "m_ConservativeDepthOffset": false, + "m_TransparencyFog": true, + "m_AlphaTestShadow": false, + "m_BackThenFrontRendering": false, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_TransparentPerPixelSorting": false, + "m_SupportLodCrossFade": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4828.0, + "y": -2832.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4540.0, + "y": -2749.0, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceText_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5098.99951171875, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4955.0, + "y": -3487.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3284.0, + "y": -3516.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "183118ca50814141b7bc3e0cee27fb9b", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4291.99951171875, + "y": -3197.0, + "width": 124.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4311.0, + "y": -3221.0, + "width": 148.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "2786e48f93f54a82aee4303ce7b63c82", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Smoothness", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "9d0c47172bf840a0ac029980ba082af7" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Smoothness" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4177.0, + "y": -2422.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3350.0, + "y": -3810.0, + "width": 213.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.25, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4387.0, + "y": -2405.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData", + "m_ObjectId": "305e3be306674fcd8bb02273d27ee5b7", + "m_MaterialNeedsUpdateHash": 280372, + "m_SurfaceType": 1, + "m_RenderingPass": 4, + "m_BlendMode": 0, + "m_ZTest": 4, + "m_ZWrite": false, + "m_TransparentCullMode": 2, + "m_OpaqueCullMode": 2, + "m_SortPriority": 0, + "m_AlphaTest": true, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_SupportLodCrossFade": false, + "m_DoubleSidedMode": 0, + "m_DOTSInstancing": false, + "m_CustomVelocity": false, + "m_Tessellation": false, + "m_TessellationMode": 0, + "m_TessellationFactorMinDistance": 20.0, + "m_TessellationFactorMaxDistance": 50.0, + "m_TessellationFactorTriangleSize": 100.0, + "m_TessellationShapeFactor": 0.75, + "m_TessellationBackFaceCullEpsilon": -0.25, + "m_TessellationMaxDisplacement": 0.009999999776482582, + "m_DebugSymbols": false, + "m_Version": 2, + "inspectorFoldoutMask": 9 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6008.99951171875, + "y": -3341.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3423.000244140625, + "y": -3516.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2803.000244140625, + "y": -3520.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 1.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5468.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4004.999755859375, + "y": -4173.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "4590bfa2a0664b65b6f073bae33a071f", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4615.0, + "y": -2422.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4323.99951171875, + "y": -3498.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4309.0, + "y": -2773.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6154.99951171875, + "y": -3169.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5102.99951171875, + "y": -3427.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4007.0, + "y": -2395.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitData", + "m_ObjectId": "6238ae56182d404f8563cb88cb801549", + "m_RayTracing": false, + "m_MaterialType": 0, + "m_MaterialTypeMask": 2, + "m_RefractionModel": 0, + "m_SSSTransmission": true, + "m_EnergyConservingSpecular": true, + "m_ClearCoat": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5266.99951171875, + "y": -3387.0, + "width": 156.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3499.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDLitSubTarget", + "m_ObjectId": "67bc2306558f4f2fa807637aaebaeab4" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "6b0cd1bfb339459ca967fa23df287ef0", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "c417006ffa034c44b79da3dd323165ff" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5101.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "703396865b6e4990a0cf1189ea684e5c", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "7564379492aa4c5a927ff3501acdc70d", + "m_Id": 0, + "m_DisplayName": "Normal (Tangent Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalTS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "77991fa631724e0cb32eed66ff017b23", + "m_Id": 0, + "m_DisplayName": "Metallic", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Metallic", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3113.000244140625, + "y": -3468.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4961.99951171875, + "y": -3452.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget", + "m_ObjectId": "7cf0e63037a74dc2a9f591225c678ff4", + "m_ActiveSubTarget": { + "m_Id": "67bc2306558f4f2fa807637aaebaeab4" + }, + "m_Datas": [ + { + "m_Id": "00996039d61e400a9e854ce591ac35a0" + }, + { + "m_Id": "305e3be306674fcd8bb02273d27ee5b7" + }, + { + "m_Id": "6238ae56182d404f8563cb88cb801549" + }, + { + "m_Id": "a8c49a47cb934f7e8e4d88fce06df6ff" + } + ], + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDF_HDRPLitShaderGUI", + "m_SupportVFX": false, + "m_SupportLineRendering": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4959.0, + "y": -3326.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4005.0, + "y": -2797.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f7d8028b58d4227a4560891be6e7cda", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Occlusion", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a00de0d572a84a08a23fe14c2ad5030d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Occlusion" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3140.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5800.99951171875, + "y": -3363.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3096.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5421.99951171875, + "y": -3902.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2983.000244140625, + "y": -3468.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4793.0, + "y": -2593.0, + "width": 155.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4672.0, + "y": -2481.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3498.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9d0c47172bf840a0ac029980ba082af7", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Smoothness", + "m_StageCapability": 2, + "m_Value": 0.5, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5443.0, + "y": -3315.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4637.0, + "y": -2239.0, + "width": 167.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4160.0, + "y": -2739.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a00de0d572a84a08a23fe14c2ad5030d", + "m_Id": 0, + "m_DisplayName": "Ambient Occlusion", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Occlusion", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4611.0, + "y": -2691.0, + "width": 222.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "ffb07af0bca546d8b9bc439d34aa68f5" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4647.0, + "y": -2283.0, + "width": 177.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.LightingData", + "m_ObjectId": "a8c49a47cb934f7e8e4d88fce06df6ff", + "m_NormalDropOffSpace": 0, + "m_BlendPreserveSpecular": true, + "m_ReceiveDecals": true, + "m_ReceiveSSR": true, + "m_ReceiveSSRTransparent": false, + "m_SpecularAA": false, + "m_SpecularOcclusionMode": 0, + "m_OverrideBakedGI": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3631.0, + "y": -3810.0, + "width": 230.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "e364823e158a407fb48dd7b630c79973" + }, + { + "m_Id": "703396865b6e4990a0cf1189ea684e5c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5264.99951171875, + "y": -3142.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4146.0, + "y": -2833.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4373.0, + "y": -2715.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "b30617d78dec40a7b8aa7f72dca7f41d", + "m_Id": 0, + "m_DisplayName": "Bent Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BentNormal", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "b4c4676c68bb4752af59e21f896d9470", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5581.99951171875, + "y": -3867.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "183118ca50814141b7bc3e0cee27fb9b" + }, + { + "m_Id": "f44e4374a48a4996aa60d23d3ae1e9f9" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b911c23b90124d15924551e2730501eb", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "bc782d8e80154073b48a687a07adf60a", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BentNormal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "b30617d78dec40a7b8aa7f72dca7f41d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BentNormal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5392.0, + "y": -3867.0, + "width": 125.99999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "be58359e488f42e9b5121357d0fa526b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Metallic", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "77991fa631724e0cb32eed66ff017b23" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Metallic" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4446.0, + "y": -2347.000244140625, + "width": 222.00001525878907, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "b4c4676c68bb4752af59e21f896d9470" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "c417006ffa034c44b79da3dd323165ff", + "m_Guid": { + "m_GuidSerialized": "7a28a011-205c-4fa8-bf4f-8064aa2308b2" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c49cfb8bb96846dc87ee00c0c041a372", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4315.0, + "y": -3165.0, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6179.99951171875, + "y": -3422.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5268.0, + "y": -3261.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5747.99951171875, + "y": -3961.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4783.0, + "y": -2765.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e364823e158a407fb48dd7b630c79973", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e591df3a1eb94e259b762f2830b407e2", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "4590bfa2a0664b65b6f073bae33a071f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4144.0, + "y": -3369.0, + "width": 244.0, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4803.0, + "y": -2627.0, + "width": 165.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4957.99951171875, + "y": -3204.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3448.000244140625, + "y": -3579.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3849.999755859375, + "y": -3286.0, + "width": 193.0, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6012.99951171875, + "y": -3209.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "b911c23b90124d15924551e2730501eb" + }, + { + "m_Id": "c49cfb8bb96846dc87ee00c0c041a372" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4321.99951171875, + "y": -3246.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f44e4374a48a4996aa60d23d3ae1e9f9", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f5a8bfcec21a4dac9df63993ec53635e", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalTS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "7564379492aa4c5a927ff3501acdc70d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalTS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5254.99951171875, + "y": -3891.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4208.0, + "y": -2371.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ffb07af0bca546d8b9bc439d34aa68f5", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph.meta new file mode 100644 index 0000000..a445e27 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ca2ed216f98028c4dae6c5224a952b3c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph new file mode 100644 index 0000000..3118dd0 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph @@ -0,0 +1,11759 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "ced40c943add479a86f25f7fb5ed59da" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "469965f1c9284b7eb032d415d6295b2c" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3749.0 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3480.0 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "7cf0e63037a74dc2a9f591225c678ff4" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5722.99951171875, + "y": -3827.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData", + "m_ObjectId": "00996039d61e400a9e854ce591ac35a0", + "m_Distortion": false, + "m_DistortionMode": 0, + "m_DistortionDepthTest": true, + "m_AddPrecomputedVelocity": false, + "m_TransparentWritesMotionVec": false, + "m_DepthOffset": false, + "m_ConservativeDepthOffset": false, + "m_TransparencyFog": true, + "m_AlphaTestShadow": false, + "m_BackThenFrontRendering": false, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_TransparentPerPixelSorting": false, + "m_SupportLodCrossFade": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4824.0, + "y": -2949.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4534.0, + "y": -2747.0, + "width": 150.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5098.99951171875, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4955.0, + "y": -3487.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3284.0, + "y": -3516.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4291.99951171875, + "y": -3197.0, + "width": 124.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4311.0, + "y": -3221.0, + "width": 148.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4181.99951171875, + "y": -2415.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget", + "m_ObjectId": "29b1a6d4abc94131be838c0bc77892fc" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3350.0, + "y": -3810.0, + "width": 213.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.25, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4387.0, + "y": -2405.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData", + "m_ObjectId": "305e3be306674fcd8bb02273d27ee5b7", + "m_MaterialNeedsUpdateHash": 1, + "m_SurfaceType": 1, + "m_RenderingPass": 4, + "m_BlendMode": 0, + "m_ZTest": 4, + "m_ZWrite": false, + "m_TransparentCullMode": 2, + "m_OpaqueCullMode": 2, + "m_SortPriority": 0, + "m_AlphaTest": true, + "m_TransparentDepthPrepass": false, + "m_TransparentDepthPostpass": false, + "m_SupportLodCrossFade": false, + "m_DoubleSidedMode": 0, + "m_DOTSInstancing": false, + "m_CustomVelocity": false, + "m_Tessellation": false, + "m_TessellationMode": 0, + "m_TessellationFactorMinDistance": 20.0, + "m_TessellationFactorMaxDistance": 50.0, + "m_TessellationFactorTriangleSize": 100.0, + "m_TessellationShapeFactor": 0.75, + "m_TessellationBackFaceCullEpsilon": -0.25, + "m_TessellationMaxDisplacement": 0.009999999776482582, + "m_DebugSymbols": false, + "m_Version": 2, + "inspectorFoldoutMask": 9 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6008.99951171875, + "y": -3341.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3423.000244140625, + "y": -3516.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2803.000244140625, + "y": -3520.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 1.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5468.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4001.0, + "y": -4168.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "4590bfa2a0664b65b6f073bae33a071f", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4613.0, + "y": -2415.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "469965f1c9284b7eb032d415d6295b2c", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "ced40c943add479a86f25f7fb5ed59da" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4323.99951171875, + "y": -3498.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4310.0, + "y": -2771.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6154.99951171875, + "y": -3169.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5102.99951171875, + "y": -3427.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4005.999755859375, + "y": -2395.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5266.99951171875, + "y": -3387.0, + "width": 156.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3499.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5101.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData", + "m_ObjectId": "77ebd01f5b3149ad810a5acbffc85921", + "m_EnableShadowMatte": false, + "m_DistortionOnly": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3113.000244140625, + "y": -3468.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4961.99951171875, + "y": -3452.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7b3b88c5975841d6b6d5c3c5515055a0", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget", + "m_ObjectId": "7cf0e63037a74dc2a9f591225c678ff4", + "m_ActiveSubTarget": { + "m_Id": "29b1a6d4abc94131be838c0bc77892fc" + }, + "m_Datas": [ + { + "m_Id": "00996039d61e400a9e854ce591ac35a0" + }, + { + "m_Id": "305e3be306674fcd8bb02273d27ee5b7" + }, + { + "m_Id": "77ebd01f5b3149ad810a5acbffc85921" + } + ], + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDF_HDRPUnlitShaderGUI", + "m_SupportVFX": false, + "m_SupportLineRendering": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4959.0, + "y": -3326.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4006.000244140625, + "y": -2795.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3140.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5802.0, + "y": -3363.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3096.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8a39319405ad44cb8b7aae71c41dcd01", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5421.99951171875, + "y": -3902.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2983.000244140625, + "y": -3468.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9327cb5f5e6b46f1bd79f91ef9dca3b7", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4788.0, + "y": -2591.0, + "width": 155.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4670.00048828125, + "y": -2474.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3498.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5443.0, + "y": -3315.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4635.0, + "y": -2239.0, + "width": 167.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4160.0, + "y": -2771.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9f42c5a9bc2f45baa095a80e7b8b485a", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4606.99951171875, + "y": -2689.0, + "width": 221.99998474121095, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "dcd51c93d3b64f05a938b3334f343654" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4645.00048828125, + "y": -2285.0, + "width": 177.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3631.0, + "y": -3810.0, + "width": 230.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "f1fb18f75405424884a776bfd24e79e9" + }, + { + "m_Id": "9f42c5a9bc2f45baa095a80e7b8b485a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5264.99951171875, + "y": -3142.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4146.0, + "y": -2869.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4367.0, + "y": -2713.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5581.99951171875, + "y": -3867.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "9327cb5f5e6b46f1bd79f91ef9dca3b7" + }, + { + "m_Id": "d804b5a6c657409196addf2b39199a4f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5392.0, + "y": -3867.0, + "width": 125.99999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4446.0, + "y": -2347.0, + "width": 222.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "f68d9dee5cbc43cdb355d8fadae602d3" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4315.0, + "y": -3165.0, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "ced40c943add479a86f25f7fb5ed59da", + "m_Guid": { + "m_GuidSerialized": "af17e4ab-54fe-4482-a9c5-4e4bc9076517" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6179.99951171875, + "y": -3422.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5268.0, + "y": -3261.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d804b5a6c657409196addf2b39199a4f", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5747.99951171875, + "y": -3961.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4778.0, + "y": -2771.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "dcd51c93d3b64f05a938b3334f343654", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e591df3a1eb94e259b762f2830b407e2", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "4590bfa2a0664b65b6f073bae33a071f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4144.0, + "y": -3369.0, + "width": 244.0, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4799.0, + "y": -2625.0, + "width": 165.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4957.99951171875, + "y": -3204.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3448.000244140625, + "y": -3579.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f1fb18f75405424884a776bfd24e79e9", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3849.999755859375, + "y": -3286.0, + "width": 193.0, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6012.99951171875, + "y": -3209.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "7b3b88c5975841d6b6d5c3c5515055a0" + }, + { + "m_Id": "8a39319405ad44cb8b7aae71c41dcd01" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4321.99951171875, + "y": -3246.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "f68d9dee5cbc43cdb355d8fadae602d3", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5254.99951171875, + "y": -3891.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4208.0, + "y": -2371.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph.meta new file mode 100644 index 0000000..a2f732a --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f63d574838ccfb44f84acc05fed0af48 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader new file mode 100644 index 0000000..603df2c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader @@ -0,0 +1,258 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field - Masking" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + _MaskTex ("Mask Texture", 2D) = "white" {} + _MaskInverse ("Inverse", float) = 0 + _MaskEdgeColor ("Edge Color", Color) = (1,1,1,1) + _MaskEdgeSoftness ("Edge Softness", Range(0, 1)) = 0.01 + _MaskWipeControl ("Wipe Position", Range(0, 1)) = 0.5 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t + { + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _MaskWipeControl; + float _MaskEdgeSoftness; + fixed4 _MaskEdgeColor; + bool _MaskInverse; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, (outline * 2)))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + + // Structure for pixel shader + pixel_t output = { + vPosition, + faceColor, + outlineColor, + float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y), + half4(scale, bias - outline, bias + outline, bias), + half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)), + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4(input.texcoord0 + layerOffset, input.color.a, 0), + half2(layerScale, layerBias), + #endif + }; + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.w); + + #ifdef OUTLINE_ON + c = lerp(input.outlineColor, input.faceColor, saturate(d - input.param.z)); + c *= saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + //#if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + //#endif + + float a = abs(_MaskInverse - tex2D(_MaskTex, input.texcoord0.zw).a); + float t = a + (1 - _MaskWipeControl) * _MaskEdgeSoftness - _MaskWipeControl; + a = saturate(t / _MaskEdgeSoftness); + c.rgb = lerp(_MaskEdgeColor.rgb*c.a, c.rgb, a); + c *= a; + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta new file mode 100644 index 0000000..3cbdbbb --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: bc1ede39bf3643ee8e493720e4259791 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader new file mode 100644 index 0000000..3edca76 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader @@ -0,0 +1,252 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field Overlay" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue"="Overlay" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest Always + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, (outline * 2)))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half4(scale, bias - outline, bias + outline, bias); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord1 = float4(input.texcoord0 + layerOffset, input.color.a, 0); + output.underlayParam = half2(layerScale, layerBias); + #endif + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.w); + + #ifdef OUTLINE_ON + c = lerp(input.outlineColor, input.faceColor, saturate(d - input.param.z)); + c *= saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta new file mode 100644 index 0000000..e6b149e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: a02a7d8c237544f1962732b55a9aebf1 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader new file mode 100644 index 0000000..43b317d --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader @@ -0,0 +1,106 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field SSD" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + _MaskTex ("Mask Texture", 2D) = "white" {} + _MaskInverse ("Inverse", float) = 0 + _MaskEdgeColor ("Edge Color", Color) = (1,1,1,1) + _MaskEdgeSoftness ("Edge Softness", Range(0, 1)) = 0.01 + _MaskWipeControl ("Wipe Position", Range(0, 1)) = 0.5 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + #include "TMPro_Mobile.cginc" + + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta new file mode 100644 index 0000000..9b84c13 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c8d12adcee749c344b8117cf7c7eb912 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader new file mode 100644 index 0000000..2c8e8da --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader @@ -0,0 +1,389 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field - 2 Pass" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + // Draw Outline and Underlay + Name "Outline" + + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + const float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + const float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + //outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, outline * 2))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half4(scale, bias - outline, bias + outline, bias); + + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord1 = float4(input.texcoord0 + layerOffset, input.color.a, 0); + output.underlayParam = half2(layerScale, layerBias); + #endif + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = half4(0, 0, 0, 0); + + #if OUTLINE_ON + c = input.outlineColor * saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } + + + // Draw face + Name "Face" + + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma vertex VertShader + #pragma fragment PixShader + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half2 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + const float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half2(scale, bias); + + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.y); + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } + +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader.meta new file mode 100644 index 0000000..75bd98d --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0178fcb869bafef4690d177d31d17db8 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader new file mode 100644 index 0000000..b899d6e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader @@ -0,0 +1,250 @@ +// Simplified SDF shader: +// - No Shading Option (bevel / bump / env map) +// - No Glow Option +// - Softness is applied on both side of the outline + +Shader "TextMeshPro/Mobile/Distance Field" { + +Properties { + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineWidth ("Outline Thickness", Range(0,1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _UnderlayColor ("Border Color", Color) = (0,0,0,.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = .5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5 + _ScaleX ("Scale X", float) = 1 + _ScaleY ("Scale Y", float) = 1 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma enable_d3d11_debug_symbols + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ OUTLINE_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + + struct vertex_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 vertex : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 vertex : SV_POSITION; + fixed4 faceColor : COLOR; + fixed4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; // Texture UV, Mask UV + half4 param : TEXCOORD1; // Scale(x), BiasIn(y), BiasOut(z), Bias(w) + half4 mask : TEXCOORD2; // Position in clip space(xy), Softness(zw) + #if (UNDERLAY_ON | UNDERLAY_INNER) + float4 texcoord1 : TEXCOORD3; // Texture UV, alpha, reserved + half2 underlayParam : TEXCOORD4; // Scale(x), Bias(y) + #endif + }; + + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.vertex; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if(UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float layerScale = scale; + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + float bias = (0.5 - weight) * scale - 0.5; + float outline = _OutlineWidth * _ScaleRatioA * 0.5 * scale; + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + float opacity = input.color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + fixed4 faceColor = fixed4(input.color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + fixed4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + outlineColor = lerp(faceColor, outlineColor, sqrt(min(1.0, (outline * 2)))); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = (.5 - weight) * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 layerOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Populate structure for pixel shader + output.vertex = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.x, input.texcoord0.y, maskUV.x, maskUV.y); + output.param = half4(scale, bias - outline, bias + outline, bias); + + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord1 = float4(input.texcoord0 + layerOffset, input.color.a, 0); + output.underlayParam = half2(layerScale, layerBias); + #endif + + return output; + } + + + // PIXEL SHADER + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + half d = tex2D(_MainTex, input.texcoord0.xy).a * input.param.x; + half4 c = input.faceColor * saturate(d - input.param.w); + + #ifdef OUTLINE_ON + c = lerp(input.outlineColor, input.faceColor, saturate(d - input.param.z)); + c *= saturate(d - input.param.y); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - input.underlayParam.y) * (1 - c.a); + #endif + + #if UNDERLAY_INNER + half sd = saturate(d - input.param.z); + d = tex2D(_MainTex, input.texcoord1.xy).a * input.underlayParam.x; + c += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - input.underlayParam.y)) * sd * (1 - c.a); + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + c *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + c *= input.texcoord1.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(c.a - 0.001); + #endif + + return c; + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta new file mode 100644 index 0000000..2ac6e76 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: fe393ace9b354375a9cb14cdbbc28be4 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader new file mode 100644 index 0000000..68d0dfa --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader @@ -0,0 +1,139 @@ +// Simplified version of the SDF Surface shader : +// - No support for Bevel, Bump or envmap +// - Diffuse only lighting +// - Fully supports only 1 directional light. Other lights can affect it, but it will be per-vertex/SH. + +Shader "TextMeshPro/Mobile/Distance Field (Surface)" { + +Properties { + _FaceTex ("Fill Texture", 2D) = "white" {} + _FaceColor ("Fill Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + // Should not be directly exposed to the user + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _CullMode ("Cull Mode", Float) = 0 + //_MaskCoord ("Mask Coords", vector) = (0,0,0,0) + //_MaskSoftness ("Mask Softness", float) = 0 +} + +SubShader { + + Tags { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + LOD 300 + Cull [_CullMode] + + CGPROGRAM + #pragma surface PixShader Lambert alpha:blend vertex:VertShader noforwardadd nolightmap nodirlightmap + #pragma target 3.0 + #pragma shader_feature __ GLOW_ON + + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + half _FaceShininess; + half _OutlineShininess; + + struct Input + { + fixed4 color : COLOR; + float2 uv_MainTex; + float2 uv2_FaceTex; + float2 uv2_OutlineTex; + float2 param; // Weight, Scale + float3 viewDirEnv; + }; + + #include "TMPro_Surface.cginc" + + ENDCG + + // Pass to render object as a shadow caster + Pass + { + Name "Caster" + Tags { "LightMode" = "ShadowCaster" } + Offset 1, 1 + + Fog {Mode Off} + ZWrite On ZTest LEqual Cull Off + + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma multi_compile_shadowcaster + #include "UnityCG.cginc" + + struct v2f + { + V2F_SHADOW_CASTER; + float2 uv : TEXCOORD1; + float2 uv2 : TEXCOORD3; + float alphaClip : TEXCOORD2; + }; + + uniform float4 _MainTex_ST; + uniform float4 _OutlineTex_ST; + float _OutlineWidth; + float _FaceDilate; + float _ScaleRatioA; + + v2f vert( appdata_base v ) + { + v2f o; + TRANSFER_SHADOW_CASTER(o) + o.uv = TRANSFORM_TEX(v.texcoord, _MainTex); + o.uv2 = TRANSFORM_TEX(v.texcoord, _OutlineTex); + o.alphaClip = o.alphaClip = (1.0 - _OutlineWidth * _ScaleRatioA - _FaceDilate * _ScaleRatioA) / 2; + return o; + } + + uniform sampler2D _MainTex; + + float4 frag(v2f i) : COLOR + { + fixed4 texcol = tex2D(_MainTex, i.uv).a; + clip(texcol.a - i.alphaClip); + SHADOW_CASTER_FRAGMENT(i) + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta new file mode 100644 index 0000000..bff8b7a --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 85187c2149c549c5b33f0cdb02836b17 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader new file mode 100644 index 0000000..281e60d --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader @@ -0,0 +1,159 @@ +Shader "TextMeshPro/Distance Field (Surface)" { + +Properties { + _FaceTex ("Fill Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Fill Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _BumpMap ("Normalmap", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0.5 + _BumpFace ("Bump Face", Range(0,1)) = 0.5 + + _ReflectFaceColor ("Face Color", Color) = (0,0,0,1) + _ReflectOutlineColor ("Outline Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + _SpecColor ("Specular Color", Color) = (0,0,0,1) + + _FaceShininess ("Face Shininess", Range(0,1)) = 0 + _OutlineShininess ("Outline Shininess", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + // Should not be directly exposed to the user + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _CullMode ("Cull Mode", Float) = 0 + //_MaskCoord ("Mask Coords", vector) = (0,0,0,0) + //_MaskSoftness ("Mask Softness", float) = 0 +} + +SubShader { + + Tags { "Queue"="Transparent" "IgnoreProjector"="True" "RenderType"="Transparent" } + + LOD 300 + Cull [_CullMode] + + CGPROGRAM + #pragma surface PixShader BlinnPhong alpha:blend vertex:VertShader nolightmap nodirlightmap + #pragma target 3.0 + #pragma shader_feature __ GLOW_ON + #pragma glsl + + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + half _FaceShininess; + half _OutlineShininess; + + struct Input + { + fixed4 color : COLOR; + float2 uv_MainTex; + float2 uv2_FaceTex; + float2 uv2_OutlineTex; + float2 param; // Weight, Scale + float3 viewDirEnv; + }; + + + #define BEVEL_ON 1 + #include "TMPro_Surface.cginc" + + ENDCG + + // Pass to render object as a shadow caster + Pass + { + Name "Caster" + Tags { "LightMode" = "ShadowCaster" } + Offset 1, 1 + + Fog {Mode Off} + ZWrite On + ZTest LEqual + Cull Off + + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma multi_compile_shadowcaster + #include "UnityCG.cginc" + + struct v2f + { + V2F_SHADOW_CASTER; + float2 uv : TEXCOORD1; + float2 uv2 : TEXCOORD3; + float alphaClip : TEXCOORD2; + }; + + uniform float4 _MainTex_ST; + uniform float4 _OutlineTex_ST; + float _OutlineWidth; + float _FaceDilate; + float _ScaleRatioA; + + v2f vert( appdata_base v ) + { + v2f o; + TRANSFER_SHADOW_CASTER(o) + o.uv = TRANSFORM_TEX(v.texcoord, _MainTex); + o.uv2 = TRANSFORM_TEX(v.texcoord, _OutlineTex); + o.alphaClip = (1.0 - _OutlineWidth * _ScaleRatioA - _FaceDilate * _ScaleRatioA) / 2; + return o; + } + + uniform sampler2D _MainTex; + + float4 frag(v2f i) : COLOR + { + fixed4 texcol = tex2D(_MainTex, i.uv).a; + clip(texcol.a - i.alphaClip); + SHADOW_CASTER_FRAGMENT(i) + } + ENDCG + } +} + +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta new file mode 100644 index 0000000..26e814c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: f7ada0af4f174f0694ca6a487b8f543d +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph new file mode 100644 index 0000000..7922d39 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph @@ -0,0 +1,11932 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "59a09f50a7ca4cd3a0d248a0f3730b6a" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "7c73ccc923e744b98f19148b971a6090" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + { + "m_Id": "86e21b7b6b7a44238607e41b8a9fb9a4" + }, + { + "m_Id": "0c10df95ee1d4b0a8a00558af49ec45f" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "83c51d5b2f7b4eb785248f419181cb87" + }, + { + "m_Id": "ad3e1d26f4404555a8dd29223caaf1ef" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3749.0 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2506.000244140625, + "y": -3480.0 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "86e21b7b6b7a44238607e41b8a9fb9a4" + }, + { + "m_Id": "0c10df95ee1d4b0a8a00558af49ec45f" + }, + { + "m_Id": "e591df3a1eb94e259b762f2830b407e2" + }, + { + "m_Id": "83c51d5b2f7b4eb785248f419181cb87" + }, + { + "m_Id": "ad3e1d26f4404555a8dd29223caaf1ef" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "94300469581b4924ac7dda496811d45d" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5722.99951171875, + "y": -3827.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4813.0, + "y": -2949.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4536.00048828125, + "y": -2723.000244140625, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0801f576ce79452483b42e485405244d", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Smoothness", + "m_StageCapability": 2, + "m_Value": 0.5, + "m_DefaultValue": 0.5, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "0c10df95ee1d4b0a8a00558af49ec45f", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalTS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a0206f980dc6455f84f5a8442838c726" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalTS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5098.99951171875, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "129f271ebc77450994e18f0a30579bf5", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4955.0, + "y": -3487.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3284.0, + "y": -3516.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4292.0, + "y": -3213.000244140625, + "width": 124.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4316.0, + "y": -3247.000244140625, + "width": 148.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4181.99951171875, + "y": -2415.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3350.0, + "y": -3810.0, + "width": 213.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4387.00048828125, + "y": -2381.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6008.99951171875, + "y": -3341.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3423.000244140625, + "y": -3516.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2803.000244140625, + "y": -3520.0, + "width": 140.0, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3ffa095f304e42d2827aa230e2ae3887", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5468.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4004.999755859375, + "y": -4173.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "4590bfa2a0664b65b6f073bae33a071f", + "m_Id": 0, + "m_DisplayName": "Emission", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Emission", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_ColorMode": 1, + "m_DefaultColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4615.00048828125, + "y": -2415.000244140625, + "width": 145.0, + "height": 130.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4308.0, + "y": -3498.000244140625, + "width": 140.0, + "height": 166.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4303.00048828125, + "y": -2771.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6154.99951171875, + "y": -3169.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "55a3403c16184e63b4e78607a6a20cd8", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5102.99951171875, + "y": -3427.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "59a09f50a7ca4cd3a0d248a0f3730b6a", + "m_Guid": { + "m_GuidSerialized": "3f9e6596-fd53-48cc-96a5-4c4f0cfbb2ba" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4008.999755859375, + "y": -2394.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5266.99951171875, + "y": -3387.0, + "width": 156.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4791.0, + "y": -3499.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5101.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "7027aaab25924266a063a05df0aa39b3", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3113.000244140625, + "y": -3468.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4961.99951171875, + "y": -3452.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7b144a976914480baf430c0f6f7f4def", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "7c73ccc923e744b98f19148b971a6090", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "59a09f50a7ca4cd3a0d248a0f3730b6a" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4959.0, + "y": -3326.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4006.999755859375, + "y": -2796.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3140.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "836f639bd89d42f9b3a0470c3094815e", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "83c51d5b2f7b4eb785248f419181cb87", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Occlusion", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "944ebbc49c8a4cddb5834e3beab965a2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Occlusion" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5800.99951171875, + "y": -3363.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4081.999755859375, + "y": -3096.0, + "width": 156.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "86e21b7b6b7a44238607e41b8a9fb9a4", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Smoothness", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "0801f576ce79452483b42e485405244d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Smoothness" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6aee1173864e58be589084897a3f35", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5421.99951171875, + "y": -3902.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2983.000244140625, + "y": -3468.0, + "width": 119.99999237060547, + "height": 149.0 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "94300469581b4924ac7dda496811d45d", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "a0b9274619da48a59f26fe58997479ee" + }, + "m_AllowMaterialOverride": false, + "m_SurfaceType": 1, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 0, + "m_AlphaClip": true, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDFShaderGUI", + "m_SupportVFX": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "944ebbc49c8a4cddb5834e3beab965a2", + "m_Id": 0, + "m_DisplayName": "Ambient Occlusion", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Occlusion", + "m_StageCapability": 2, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4778.00048828125, + "y": -2581.000244140625, + "width": 155.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4670.00048828125, + "y": -2474.000244140625 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3498.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5443.0, + "y": -3315.0, + "width": 144.99998474121095, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4635.00048828125, + "y": -2239.0, + "width": 167.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4152.0, + "y": -2771.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a0206f980dc6455f84f5a8442838c726", + "m_Id": 0, + "m_DisplayName": "Normal (Tangent Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalTS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [], + "m_Space": 3 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget", + "m_ObjectId": "a0b9274619da48a59f26fe58997479ee", + "m_WorkflowMode": 1, + "m_NormalDropOffSpace": 0, + "m_ClearCoat": false, + "m_BlendModePreserveSpecular": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4606.99951171875, + "y": -2689.0, + "width": 221.99998474121095, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "7027aaab25924266a063a05df0aa39b3" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4628.00048828125, + "y": -2283.0, + "width": 157.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3631.0, + "y": -3810.0, + "width": 230.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "129f271ebc77450994e18f0a30579bf5" + }, + { + "m_Id": "3ffa095f304e42d2827aa230e2ae3887" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "ad3e1d26f4404555a8dd29223caaf1ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Metallic", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "b46afdad84944599b00e887d2ce29cc3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Metallic" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5264.99951171875, + "y": -3142.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4142.0, + "y": -2890.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4367.0, + "y": -2713.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b467be738d0e454995e380cbf526efe3", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b46afdad84944599b00e887d2ce29cc3", + "m_Id": 0, + "m_DisplayName": "Metallic", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Metallic", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5581.99951171875, + "y": -3867.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "7b144a976914480baf430c0f6f7f4def" + }, + { + "m_Id": "836f639bd89d42f9b3a0470c3094815e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5392.0, + "y": -3867.0, + "width": 125.99999237060547, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4446.0, + "y": -2347.0, + "width": 221.99998474121095, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "8e6aee1173864e58be589084897a3f35" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4312.0, + "y": -3179.000244140625, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6179.99951171875, + "y": -3422.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5268.0, + "y": -3261.0, + "width": 159.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5747.99951171875, + "y": -3961.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4776.00048828125, + "y": -2757.000244140625, + "width": 145.0, + "height": 130.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "e591df3a1eb94e259b762f2830b407e2", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Emission", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "4590bfa2a0664b65b6f073bae33a071f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Emission" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4144.0, + "y": -3369.0, + "width": 244.0, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4778.00048828125, + "y": -2626.0, + "width": 145.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4957.99951171875, + "y": -3204.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3448.000244140625, + "y": -3579.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3849.999755859375, + "y": -3286.0, + "width": 193.0, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6012.99951171875, + "y": -3209.0, + "width": 183.99998474121095, + "height": 100.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "55a3403c16184e63b4e78607a6a20cd8" + }, + { + "m_Id": "b467be738d0e454995e380cbf526efe3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4321.0, + "y": -3281.000244140625, + "width": 153.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4600.0, + "y": -3245.0, + "width": 183.99998474121095, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5254.99951171875, + "y": -3891.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4208.0, + "y": -2371.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph.meta new file mode 100644 index 0000000..54c945e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a3d800b099a06e0478fb790c5e79057a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph new file mode 100644 index 0000000..d7d31de --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph @@ -0,0 +1,11629 @@ +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.GraphData", + "m_ObjectId": "386c36a1c4c34ea29deb680fb82cfe8b", + "m_Properties": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "4a0041116f73406db7a62ae80ff54ef4" + } + ], + "m_Keywords": [], + "m_Dropdowns": [], + "m_CategoryData": [ + { + "m_Id": "bafc3d388c1e444e820897b9a3d6029a" + } + ], + "m_Nodes": [ + { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + }, + { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + }, + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + } + ], + "m_GroupDatas": [ + { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + } + ], + "m_StickyNoteDatas": [], + "m_Edges": [ + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "007c75c776ac4f1babe9cd7ae1fc4f14" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "04dc152dd2ba4d519391577eb1156235" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "105b1ed1aa714e41bbe1ef5472bdb11f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "150533bad8e2424aaa2c74e253af8592" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "19075add867e4757b9520d18fe8de1d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1c4df61c2fea404eb3b87b270d7c59bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "1e12726617b24675958e942eb62e4b09" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "285f6a9863d54ed2a8150727ad749456" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2a552a0b828f457c911aa19561e410ae" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2db15d90c2204143b225ec4ef08d0755" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "36f1b4d96f2941c39e5cd95d9c1d2ce6" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39f2f84f30304d859fb07569e2695f60" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "163beb4431c34f538340bc0af0991e6f" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 5 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "42a586e4f6ec40eeaba891b7fd133864" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4488af8ff6a7421298a7e827f567263b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4648b46ad29a4008a80de4f8a5a5b813" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "4f194ff591484e908fc2bcdacbcf2570" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "52798bdb86f6400e86489a7a368e9f8b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "63c7cd57fc3c45a9a97b514fdae32693" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "67a519f507384ff1861df5d8d5b486be" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7444469eb9884253819add9ef96baa25" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7984fd094e1147bdabb4e26fbd3d31c8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "65c8e64a7535466e933eed08a2f77532" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "319916a5921343f7b7eef0e50dc93def" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "7e0fadb2533f496192c1ad3e78642010" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8135ca333f8f4ea78163743e6ec1f55c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "85b5940eb77e4625812ded7215bab8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "44317f2e371447e2a8d894f8a021a235" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9147636b0cfa466a9b37a013d8f693bf" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3e231021af7b47ba97f2871e7f25d0fe" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "91890fe48ebe4717aea61ecaf3ad4861" + }, + "m_SlotId": 4 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "95928bcb6a284b8d88105a84c2e1d3ce" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9c228fac287d446296b91a4acf5cec59" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7a80e8839f0e4a1d9a6c0814f8793ee6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d7696aa6d184b4fb9c316a9dec37aee" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9d3c3383d5934a17bf9efbb7fd9e9043" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e6e50a71d9843b49b62ebe1cf7d3d59" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9e87ce9607e14015a3790c528ca5dfda" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a535f3bcbeb14622bb177eb6f46e76f4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2ac79705aa9e415dbb74ec215233fd1b" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aa87c72ac0e64469acc34f936f00b3d0" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 4 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 5 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "acd0cd5a177f4a97bf23db7219305e3f" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "51378bae98a94c309785d14cd5cbb453" + }, + "m_SlotId": 7 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "aef5c44f84e04c3185e0b93e95e34204" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b1188549725543d485436c2e921ffbb2" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "7d78a616c2754cc28d1f32cf66ade611" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b163c9f1666644b0bba62cf0e12df7bc" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9f0de188085746d5a19073da1de85ddb" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b571db753a1948d5a6f1de4e7d0c7238" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "bc9afcb18afa4ccc82d2cdc34d3f4641" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c234e5216678436195ee1a5914bc79da" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c7ddee91dc5b48dc828309c77fdb0b88" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9d7f0dbae7d422985a1cc87c025e76b" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 6 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "88253223d2c34ecfab92b0c344048f94" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "d4df208fc23b42f2b52364124f1b661c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dbcb748279484a4590e53518c49122b8" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "dff7a66b353a4023b29c9d937da77960" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "cdddee3a537c464697357f11b966f9b8" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec184d6d9fb2494897774c9e7d279e6d" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "a455bd79094c4413a7b7dd80ca8b9368" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "ec1f2e8bc9fd4ae38b133c60ee6c49b8" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f23a8b2b7c85478388ff7a8c8a6de740" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "aa3e347d733e48f7b65d8a8847370eec" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f383b24f0bc6434dafe44b3e3d338a63" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "85a1ad8e741e41759002e8cdc8cd0b96" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3d31c1f18d8491a8ecf5cbc37e4b7db" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e818605f8f5a4f01bf61caaa33693581" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f814deb543c24fbbafbcdb5071d96022" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "4abff6ff92fa4a05b203f10580988335" + }, + "m_SlotId": 3 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "109f638d1f9b49d4991d6d21a86d4eb7" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "56c25395796e4d2fbe5c892d428d1620" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "6b2f65c1463f4f7bad16c54a95d2fe75" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "faace8101df943d8956faa31728cb004" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b4a40cb6acd441acb83cfe0240bf910d" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fdb77c3e92ee497b88ca5dc46dc45350" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "59bd90a849624124bae6464ee3669aa6" + }, + "m_SlotId": 1 + } + } + ], + "m_VertexContext": { + "m_Position": { + "x": -2624.000244140625, + "y": -3709.000244140625 + }, + "m_Blocks": [ + { + "m_Id": "48390d02257d41bf98eace1deaa4c539" + }, + { + "m_Id": "f4ecc442a2d246759f7c2c0412953d28" + }, + { + "m_Id": "7f2e6b5f15364ed9835d67d0cf4f8f65" + } + ] + }, + "m_FragmentContext": { + "m_Position": { + "x": -2624.000244140625, + "y": -3424.000244140625 + }, + "m_Blocks": [ + { + "m_Id": "aca823a8188948c782eddaf0f45e1868" + }, + { + "m_Id": "6e8946a245e842b38231d4a241bfb3ef" + }, + { + "m_Id": "cb7117ecb1d047a8b2cb00ed552cb181" + }, + { + "m_Id": "3c50439118b2496f9e390021b0964606" + } + ] + }, + "m_PreviewData": { + "serializedMesh": { + "m_SerializedMesh": "{\"mesh\":{\"fileID\":10210,\"guid\":\"0000000000000000e000000000000000\",\"type\":0}}", + "m_Guid": "" + }, + "preventRotation": false + }, + "m_Path": "TextMeshPro/SRP", + "m_GraphPrecision": 0, + "m_PreviewMode": 2, + "m_OutputNode": { + "m_Id": "" + }, + "m_ActiveTargets": [ + { + "m_Id": "94300469581b4924ac7dda496811d45d" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "007c75c776ac4f1babe9cd7ae1fc4f14", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5868.0, + "y": -3787.000244140625, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1356dc7cbdfa4199a6535d3bbf4cd536" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "013228b0fdf1424097798f0973a9a4fb", + "m_Title": "Face Texture", + "m_Position": { + "x": -4779.494140625, + "y": -2948.97265625 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "02559cbe5ad441a3904ccb75ded2b2c5", + "m_Id": 5, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "03182b3263304258b265266325c21f65", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "045c4f6b050549c7a0efb208e6349779", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "04dc152dd2ba4d519391577eb1156235", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4500.0, + "y": -2747.0, + "width": 151.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "3d04f5ba6e7b40d281f22eb424145acd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "04dfcc9ff13a4bf282ed46faec39d15c", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "05805bc6fcc941fd889922555c6c86d7", + "m_Guid": { + "m_GuidSerialized": "fe84e680-4cee-4ca5-be86-2e293a9ba093" + }, + "m_Name": "Ambient Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_05805bc6fcc941fd889922555c6c86d7", + "m_OverrideReferenceName": "_Ambient", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "0580d4b7e3a049049569f4508643a724", + "m_Guid": { + "m_GuidSerialized": "eefb88c5-7665-45dc-b3c2-7cf98b9990d6" + }, + "m_Name": "Softness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_D64EC33D", + "m_OverrideReferenceName": "_Softness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "068ae649e00b40e198ec5a30ad741fab", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0699eea947fc426cbfeb8744cf120222", + "m_Id": 1, + "m_DisplayName": "Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "07946387933e416db576b677f0711e5f", + "m_Guid": { + "m_GuidSerialized": "21d612fb-8153-41f8-9e2f-9de044c19fbf" + }, + "m_Name": "_FaceTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1A08AD4A", + "m_OverrideReferenceName": "_FaceTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "082e9706dffc4c188270980d4e44ce0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0848ba750e0341198cf0bbd413e0efe4", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "09b1b86c1c074337a4c439d3a308dd2e", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0a67ca5280214bd794dc0ad66b5710a9", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0b57f2d35157477ab2b29a5aac14ae8b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0ba4932e164847878ddb7b7bcff96985", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0c4dc51f26484c26ad88a3fe4002abcd", + "m_Id": 2, + "m_DisplayName": "Color (1)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0d6a57754b824f6db9cefa6953bc06a9", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "0d7878dd226d4cfb81a991dc312309fc", + "m_Id": 0, + "m_DisplayName": "Underlay Dilate", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 2, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget", + "m_ObjectId": "0eeb5490760e492f8c9691086fa00929" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "0f7ffb6d2de4447f9736780cbcee8e07", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "0fac35636fca4474a6afaefc3c757775", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "105b1ed1aa714e41bbe1ef5472bdb11f", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -4233.0, + "width": 158.99998474121095, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "8a08179f99d649d289b8053d5fa0ad22" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "109f638d1f9b49d4991d6d21a86d4eb7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5068.0, + "y": -3182.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "880bb02c6c6b49b18aa6ebc66dc566a0" + }, + { + "m_Id": "1b9cd8f5f4004e2eaf8afbaab803bc04" + }, + { + "m_Id": "b224a1cf80604103ad085c799995f3c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "10a99c07aad742349d258db16838c129", + "m_Id": 1, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1196ae398cc348349ab0c1a23fdab4bd", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1356dc7cbdfa4199a6535d3bbf4cd536", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "14ad19bf20a140dd88d58452d7df688b", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "150533bad8e2424aaa2c74e253af8592", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4923.99951171875, + "y": -3486.666259765625, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "72fb5a0d7796446b9e2b929cb32facdc" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "163beb4431c34f538340bc0af0991e6f", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3415.000244140625, + "y": -3462.0, + "width": 120.00000762939453, + "height": 149.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "4c334de01ecd429baa7652fc6002536b" + }, + { + "m_Id": "e2d28f29bbac4983a401574480b5ca28" + }, + { + "m_Id": "6a7af6143e114a538663e71f56731a21" + }, + { + "m_Id": "3e25be96bb3747738c238cf3a741d5df" + }, + { + "m_Id": "4907352322c644ebacdf2ca30f2994fd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "19075add867e4757b9520d18fe8de1d0", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4261.33349609375, + "y": -3197.33349609375, + "width": 124.66650390625, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "4c28ee9109014fa086e5de7a3993341d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "0580d4b7e3a049049569f4508643a724" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1b9cd8f5f4004e2eaf8afbaab803bc04", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1bdde3efd3b7464b8934c555be0f8a48", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "1be90d4f96a841748b0c95219b12ad27", + "m_Guid": { + "m_GuidSerialized": "4c91c146-43bb-4de8-948a-fbf8b1da10e1" + }, + "m_Name": "Bevel Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_97690701", + "m_OverrideReferenceName": "_BevelOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": -0.5, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "1c4df61c2fea404eb3b87b270d7c59bc", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4280.0, + "y": -3221.33349609375, + "width": 145.3330078125, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "f864c900600e427ba7793f00c715e971" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "1d35fa1fb5004f96a65ace54fbe4f1ad", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1d7d96a5770b4f8ebb162bdbde020bca", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1db37082bf844442804487b4944352de", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "1df58cfa4dad4c449d01ee1c5ea05f2e", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "1e12726617b24675958e942eb62e4b09", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4772.0, + "y": -4404.0, + "width": 145.00001525878907, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "0848ba750e0341198cf0bbd413e0efe4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "1f247658c7ba45fb93c41f51e21acb0d", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1f46181633594ae0a1fb2adb76b42981", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "200245fc8bbe4826b209ab5f7ffe074c", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "204dacb5a95b424facf11cb6f65bd188", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "215a82c127204988b751de7d3a39b955", + "m_Id": 6, + "m_DisplayName": "Outline", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Outline", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "215b30ae27784ec3a13360a9029af283", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "21a7a380e66d42e780e2a2a1baa630d5", + "m_Guid": { + "m_GuidSerialized": "b2d0099f-e605-49f5-9959-e7cacae37aa3" + }, + "m_Name": "Bevel Type", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_21a7a380e66d42e780e2a2a1baa630d5", + "m_OverrideReferenceName": "_BevelType", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e", + "m_Guid": { + "m_GuidSerialized": "cd167d3a-7465-4d5a-86fc-0f22dc0ef908" + }, + "m_Name": "Outline Color 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_5550EB71", + "m_OverrideReferenceName": "_OutlineColor1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "232b1aa09e67479abae141d3c76d3c5b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "256d41e89a204d22951450de1c38051d", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "26e48352a08441bfa694dcea54c06e36", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "281bcee4777040f8a31ee0e10344e98d", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "285f6a9863d54ed2a8150727ad749456", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4145.0, + "y": -2406.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "b42e6dbfbc864097af182cbff5c0c1fb" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.IsFrontFaceNode", + "m_ObjectId": "2a552a0b828f457c911aa19561e410ae", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Is Front Face", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4282.0, + "y": -3681.3330078125, + "width": 121.99999237060547, + "height": 77.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "2ef1d888dc9d49e59d6a6950897ddc93" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "2ac79705aa9e415dbb74ec215233fd1b", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Composite (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3277.3330078125, + "y": -3841.33349609375, + "width": 218.666748046875, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "a75f7ac601c446469802fe7754c1f279" + }, + { + "m_Id": "8c38a5d8327f456e9783740c05382619" + }, + { + "m_Id": "facc84930f544fd7a0205a6176b18ac0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Composite", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2b01ea3023e34c94af1754e4dcea8f2e", + "m_Id": 0, + "m_DisplayName": "Face Color", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2bf5f2fdd2984599b7323d10cfb1d240", + "m_Id": 1, + "m_DisplayName": "Filter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Filter", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "2c10b97b92c947ceb307a93759c0228b", + "m_Guid": { + "m_GuidSerialized": "6be0b8ff-a766-4c6b-a6e4-3a72758ac95f" + }, + "m_Name": "Bevel Amount", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B01DD93E", + "m_OverrideReferenceName": "_BevelAmount", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "2c7a9460724b47daad8df1be144de7c6", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "2d0a269511e34bd1ba9056d2c939dff2", + "m_Guid": { + "m_GuidSerialized": "edbe73dc-53ab-4bc1-9d64-ab36e0e05f03" + }, + "m_Name": "_FaceUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_3A8E0F13", + "m_OverrideReferenceName": "_FaceUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "2db15d90c2204143b225ec4ef08d0755", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4350.0, + "y": -2396.0, + "width": 163.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "def8e0b9d8384982bc5b4c32d877e458" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "2e4eb1ef08bb44178c82e53872485e0f", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "2ef1d888dc9d49e59d6a6950897ddc93", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 2, + "m_Value": true, + "m_DefaultValue": true +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "30ca940fe2794c949f2a1d4d2caaa446", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "319916a5921343f7b7eef0e50dc93def", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4760.0, + "y": -3245.000244140625, + "width": 184.0, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "d219977210094c0082c517d8dc00c8bb" + }, + { + "m_Id": "f48f04ad45d046a8b88e71731ed506e7" + }, + { + "m_Id": "e6e80c6b0db545cda26b079a9a78fbb3" + }, + { + "m_Id": "c6bdb985bc16435fa72f5a3c81bb633c" + }, + { + "m_Id": "d1a17e42e7a04dc38984e3c01149445b" + }, + { + "m_Id": "fb15d0ba56d54a6192f11e107aeb5fa8" + }, + { + "m_Id": "c35312edaa2344788b1964ee2f63a236" + }, + { + "m_Id": "c88fcbaeea954a5f9c68c339fa8b604d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "34a67e0fef884f9399e674d9eeaf720c", + "m_Id": 6, + "m_DisplayName": "Color3", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color3", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "34a72a5ebb04402384a4fd3748111a37", + "m_Id": 0, + "m_DisplayName": "Alpha Clip Threshold", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AlphaClipThreshold", + "m_StageCapability": 2, + "m_Value": 0.0010000000474974514, + "m_DefaultValue": 0.5, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3535ae87c6dd4769b52b20d9eca61069", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "35cbea6373dd4e4f8d0fea36e8add392", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36a0c473c4c04c3a930dd38f3920d410", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "36f1b4d96f2941c39e5cd95d9c1d2ce6", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6314.6669921875, + "y": -3285.3330078125, + "width": 144.6669921875, + "height": 129.33348083496095 + } + }, + "m_Slots": [ + { + "m_Id": "65b3dc13b2b6484283ffe5abfe87a06a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "373f1de8db6c429c9d46c781f741d7a4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3802c81c3be24823aa1d7c9997a33c29", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "3915c1927ffe49f8967304321cfbe497", + "m_Id": 4, + "m_DisplayName": "Atlas", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Atlas", + "m_StageCapability": 3, + "m_BareResource": true, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "39a382d661e2484da71f04c43f48e55f", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "39f2f84f30304d859fb07569e2695f60", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3554.000244140625, + "y": -3462.0, + "width": 116.00000762939453, + "height": 94.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "4b2d9ea03bf64fa19dcae1511d2581da" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "3c50439118b2496f9e390021b0964606", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.AlphaClipThreshold", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3028.0, + "y": -3054.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "34a72a5ebb04402384a4fd3748111a37" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.AlphaClipThreshold" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "3d04f5ba6e7b40d281f22eb424145acd", + "m_Id": 0, + "m_DisplayName": "Face Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "3db1608e927e4102a3c3a88e9fcab39a", + "m_Id": 3, + "m_DisplayName": "Transform", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Transform", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3dccd64e7f324bc1a75c1479d7a67c51", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "3e231021af7b47ba97f2871e7f25d0fe", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2934.000244140625, + "y": -3466.0, + "width": 141.33349609375, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "6ccaced3889e4503a9414d808ec33981" + }, + { + "m_Id": "7f3d71a6c96847c099da45f95aafbecb" + }, + { + "m_Id": "d8edec16956c4f15b7d51d6ec10753f4" + }, + { + "m_Id": "39a382d661e2484da71f04c43f48e55f" + }, + { + "m_Id": "8764669016f6442f8152593c18a649d7" + }, + { + "m_Id": "26e48352a08441bfa694dcea54c06e36" + }, + { + "m_Id": "3e94a0d106064bdb864c960512ef4026" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "3e25be96bb3747738c238cf3a741d5df", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "3e372195f4bd4845852a37839e5b602d", + "m_Guid": { + "m_GuidSerialized": "60abd046-2a1a-48cd-a0af-2f702f7f53ab" + }, + "m_Name": "_MainTex", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_90CBF488", + "m_OverrideReferenceName": "_MainTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":28684132378477856,\"guid\":\"8f586378b4e144a9851e7b34d9b748ee\",\"type\":2}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "3e94a0d106064bdb864c960512ef4026", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "3ec4797e381747829ef4712c85fcf7a1", + "m_Guid": { + "m_GuidSerialized": "020d65cc-50a8-4b8a-a624-90d7b489f549" + }, + "m_Name": "Specular Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_3ec4797e381747829ef4712c85fcf7a1", + "m_OverrideReferenceName": "_SpecularPower", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 4.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "3fdf4b7bc5d4426492dcc057603ef4a6", + "m_Guid": { + "m_GuidSerialized": "675d2567-3fca-4da6-9462-dfa4924950f1" + }, + "m_Name": "_OutlineUVSpeed", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_D66D89E6", + "m_OverrideReferenceName": "_OutlineUVSpeed", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "400d0b6c95dd4540ad3da3e8cb7e50b2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "41986ac6400d46709d0ef043a67f6b34", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "41b9b79b3859472882bcea393703eec0", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "424dbeeb009344efa29c304c4979e3d6", + "m_Guid": { + "m_GuidSerialized": "314c37de-c6f2-4463-866d-8588f6fc119e" + }, + "m_Name": "Diffuse Shadow", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_424dbeeb009344efa29c304c4979e3d6", + "m_OverrideReferenceName": "_Diffuse", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.30000001192092898, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "42a586e4f6ec40eeaba891b7fd133864", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4934.0, + "y": -4442.99951171875, + "width": 133.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "da7a06d393a44089842070d51d2aa0a6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "42cadae0923e4969b50bbc3f78185934", + "m_Title": "Face + 3 Outlines + Underlay", + "m_Position": { + "x": -5437.0, + "y": -3558.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4328cdbf78b94c038fd614c59bfe1cac", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "44317f2e371447e2a8d894f8a021a235", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Layer1 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4004.999755859375, + "y": -4173.0, + "width": 191.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "10a99c07aad742349d258db16838c129" + }, + { + "m_Id": "b85d677872b44421bf5536f42ba0267c" + }, + { + "m_Id": "75aba700d74d4b2687bf3166cf1da3e2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer1", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "44806230fa384c1e95f9c5918a14f056", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4488af8ff6a7421298a7e827f567263b", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4109.0, + "width": 158.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "66f69ef16eac4eb48357bde804cf3c39" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "4648b46ad29a4008a80de4f8a5a5b813", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4576.0, + "y": -2437.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "b2baf44eae52473cb6cda7b1debece01" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "46fbf3eeb0ea4470869cba7443249295", + "m_Guid": { + "m_GuidSerialized": "be87c5a3-e361-4b95-89c8-911c39a51c0d" + }, + "m_Name": "Outline Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_A0B54237", + "m_OverrideReferenceName": "_OutlineTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "47d020251e9841a5b1f0fd64396026a1", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "48390d02257d41bf98eace1deaa4c539", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "8036d0e6090b456e9b4ea87227868236" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Position" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "484b51c50485473b819c4f05087b32d7", + "m_Title": "Underlay", + "m_Position": { + "x": -5253.0, + "y": -4542.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4907352322c644ebacdf2ca30f2994fd", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "49dabfd48a78475882e664526b483ce1", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "49e7c3ad55ce458797f0e60c950cb965", + "m_Guid": { + "m_GuidSerialized": "31b55db9-0da1-4ec4-af2b-d83747ed5bc4" + }, + "m_Name": "Underlay Offset", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_CE9DEDB3", + "m_OverrideReferenceName": "_UnderlayOffset", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "4a0041116f73406db7a62ae80ff54ef4", + "m_Guid": { + "m_GuidSerialized": "a2d96028-f92f-4076-8376-42249ca40935" + }, + "m_Name": "_ScaleRatioA", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "_ScaleRatioA", + "m_DefaultReferenceName": "_ScaleRatioA", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4a66dcbe712a4d40bd8f355b834594b5", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "4abff6ff92fa4a05b203f10580988335", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4293.3330078125, + "y": -3497.99951171875, + "width": 140.66648864746095, + "height": 166.0 + } + }, + "m_Slots": [ + { + "m_Id": "b015d1b7e4134c59baf6851e7649802c" + }, + { + "m_Id": "d9dc4839ee2847999110bdb234d6041a" + }, + { + "m_Id": "91d6a9a5fbc04ea49075cb51835e7264" + }, + { + "m_Id": "f42ad06b3c6a45d3ab33de904c063412" + }, + { + "m_Id": "ed6c215a65584deeaefad1d2c7743044" + }, + { + "m_Id": "edbee7a8952b46529ac5ad0365775774" + }, + { + "m_Id": "70337a74f6ad4b7bb6befc825219bab1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4b2d9ea03bf64fa19dcae1511d2581da", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4bda5c294e1949138d033640e1d385b4", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "4c28ee9109014fa086e5de7a3993341d", + "m_Id": 0, + "m_DisplayName": "Softness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c334de01ecd429baa7652fc6002536b", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4d1cb1a475df49f9a148195a65f5453a", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "4d9ce48719d143748f9f8e22da6f9ddc", + "m_Id": 5, + "m_DisplayName": "TextureWidth", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureWidth", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4e64dac49ddc47c3b5b1e27b17a08304", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "4e90ca54c0cc46a18ea600be7c80413a", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "4eb3c00a1ca44e10be833b7ca61ff059", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "4f194ff591484e908fc2bcdacbcf2570", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4255.0, + "y": -2771.0, + "width": 134.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "2b01ea3023e34c94af1754e4dcea8f2e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "509e6f38505b4b0695b263706a55028f", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "51378bae98a94c309785d14cd5cbb453", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "GetSurfaceNormal (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4067.333251953125, + "y": -3881.99951171875, + "width": 263.9999694824219, + "height": 189.99998474121095 + } + }, + "m_Slots": [ + { + "m_Id": "5b0077c23eae443887872f84227deccc" + }, + { + "m_Id": "3915c1927ffe49f8967304321cfbe497" + }, + { + "m_Id": "4d9ce48719d143748f9f8e22da6f9ddc" + }, + { + "m_Id": "ebd6d75abcb84108bcadbfe7ee5f6244" + }, + { + "m_Id": "ef9738ec7e894772a14e9dce441c16c6" + }, + { + "m_Id": "9eeec1a9713045af8845cea263d5ea48" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GetSurfaceNormal", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "51f76f8a53ad43a4ad028426548ce9ba", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "52798bdb86f6400e86489a7a368e9f8b", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6460.6669921875, + "y": -3113.333251953125, + "width": 135.33349609375, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "1df58cfa4dad4c449d01ee1c5ea05f2e" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "53073e5ea924459fa6681a4943e9f947", + "m_Guid": { + "m_GuidSerialized": "5fdac24e-2d58-4471-80ce-79c3ab9a2564" + }, + "m_Name": "Outline Color 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_DBAB5AEC", + "m_OverrideReferenceName": "_OutlineColor2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.009433984756469727, + "g": 0.02534518577158451, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "54d7a93ffec5490aa4591da23a21b693", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "55ffa45ec3654d5e88089fb40d2b0465", + "m_Id": 4, + "m_DisplayName": "AnimSpeed", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "AnimSpeed", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "56c25395796e4d2fbe5c892d428d1620", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5071.99951171875, + "y": -3427.0, + "width": 129.99998474121095, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "9eb8137a6c2e41bbafdc8b0732dd47a3" + }, + { + "m_Id": "36a0c473c4c04c3a930dd38f3920d410" + }, + { + "m_Id": "068ae649e00b40e198ec5a30ad741fab" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "57abc172afd449e2a4d567f93432507b", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "582d6e289dbe4fdca7cf0307273eaa2f", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "59bd90a849624124bae6464ee3669aa6", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3972.0, + "y": -2385.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "2e4eb1ef08bb44178c82e53872485e0f" + }, + { + "m_Id": "8695190a5e614f2d90081871a8a06fc2" + }, + { + "m_Id": "81bdb47901ef48e5a588c6724b1b0142" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "59cea37675824d99995b370f09cef20a", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "5b0077c23eae443887872f84227deccc", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5b3ff4ee364f4d7a923b530ad60d8762", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5bd258837c514ff7ab0bf7027e762c18", + "m_Guid": { + "m_GuidSerialized": "2d8f3ee9-1307-4b58-a60d-526e86b07109" + }, + "m_Name": "Bevel Roundness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_AB6A015F", + "m_OverrideReferenceName": "_BevelRoundness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5da82bf481f8489ebd05e997f617f51b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": 4.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "5e42524569844befad16fda5a94eb9cb", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "5fbe253f3e444f2aa8ac717f9c856619", + "m_Guid": { + "m_GuidSerialized": "0a61c93f-6430-4aa6-af07-79bc3b411ccd" + }, + "m_Name": "Bevel Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_B50BBFCC", + "m_OverrideReferenceName": "_BevelWidth", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 0.5 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61133d79a89048c195f54939b2a1d30a", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "61a6ac5f29344d109411f26850ab0a96", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6271438664e74b3fbf723bd6a1f50f8b", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "62bc551cea604e88b7858cc37d96a98a", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "636180f6e0504f2baaa5cc086980cb47", + "m_Guid": { + "m_GuidSerialized": "c1223e37-093d-4d5a-b2b0-cd9cc3e4f88e" + }, + "m_Name": "Outline Offset 1", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector2_636180f6e0504f2baaa5cc086980cb47", + "m_OverrideReferenceName": "_OutlineOffset1", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "63c7cd57fc3c45a9a97b514fdae32693", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5235.99951171875, + "y": -3386.999755859375, + "width": 141.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c422a9a9ff824176aad2241f58c44d0b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "641eda269d7b4da9acb65f8d50035ea9", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "65b3dc13b2b6484283ffe5abfe87a06a", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "65c8e64a7535466e933eed08a2f77532", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4759.99951171875, + "y": -3498.666259765625, + "width": 186.0, + "height": 251.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "256d41e89a204d22951450de1c38051d" + }, + { + "m_Id": "0a67ca5280214bd794dc0ad66b5710a9" + }, + { + "m_Id": "ebbd94a7102a4457a48ac492de3bff14" + }, + { + "m_Id": "6271438664e74b3fbf723bd6a1f50f8b" + }, + { + "m_Id": "c9b722d107ce4cd6a748c883472b9b0f" + }, + { + "m_Id": "74cf69e61bef44589521f1bf2bf3c59a" + }, + { + "m_Id": "6e532f83d1c44e839bcfc5845d3b01d6" + }, + { + "m_Id": "cb5e9f9567e84f8fa5463efc0e256e19" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "66f69ef16eac4eb48357bde804cf3c39", + "m_Id": 0, + "m_DisplayName": "_UnderlayColor", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "67a519f507384ff1861df5d8d5b486be", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4278.0, + "y": -3939.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "c3e6d7c20c184bf39fd8822130e693e7" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "68ec7c31365549d6a8ce883edfc02de2", + "m_Id": 4, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6a7af6143e114a538663e71f56731a21", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "6b2f65c1463f4f7bad16c54a95d2fe75", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5070.0, + "y": -3301.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "1d35fa1fb5004f96a65ace54fbe4f1ad" + }, + { + "m_Id": "fa6de3be9f5b4411b5081b49e645f424" + }, + { + "m_Id": "400d0b6c95dd4540ad3da3e8cb7e50b2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6ccaced3889e4503a9414d808ec33981", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "6dfc1177dd0541a7a780fbf911ad1956", + "m_Id": 0, + "m_DisplayName": "_OutlineTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "6e13f3cd573c467a94379f45d96cb690", + "m_Id": 2, + "m_DisplayName": "SSR", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "6e532f83d1c44e839bcfc5845d3b01d6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "6e8946a245e842b38231d4a241bfb3ef", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.BaseColor", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3026.0, + "y": -3110.0, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "ef0b93f78372439696f50711eaf57d90" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.BaseColor" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6fbdcc5a972b4fa883dc5f21e525a376", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "70337a74f6ad4b7bb6befc825219bab1", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "712da461f71a454db59d349f752d41ee", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "71dd947935b64ce38f0d25406dde447b", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "724e17584e97443e9e285dfa7253c8e3", + "m_Id": 0, + "m_DisplayName": "Alpha", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 2, + "m_Value": 0.15000000596046449, + "m_DefaultValue": 1.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "72fb5a0d7796446b9e2b929cb32facdc", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "7444469eb9884253819add9ef96baa25", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4298.0, + "y": -3809.99951171875, + "width": 144.66648864746095, + "height": 129.33323669433595 + } + }, + "m_Slots": [ + { + "m_Id": "03182b3263304258b265266325c21f65" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "748c31bbcecc4b30bec2e42c0612175b", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "74b41464cbed4e9e8e23af5ab9be40cf", + "m_Guid": { + "m_GuidSerialized": "41afbdcb-f3ae-4340-8973-1c1998c992a2" + }, + "m_Name": "Outline Offset 2", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset2", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "74cf69e61bef44589521f1bf2bf3c59a", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "757174b6f25040fdbb20355a21752222", + "m_Id": 0, + "m_DisplayName": "Outline Offset 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "75aba700d74d4b2687bf3166cf1da3e2", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "75c5657544c648058b20cea090f48dbf", + "m_Id": 0, + "m_DisplayName": "_OutlineUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "767769f736d5478cba5f10a415e28e7f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "773b90134e894e429203c0c83e80b9de", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "77e28f3e930b4c249145630ec961af95", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "79147f6986644769b58d9ed64fe771e1", + "m_Id": 0, + "m_DisplayName": "OutlineMode", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7984fd094e1147bdabb4e26fbd3d31c8", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3244.000244140625, + "y": -3414.0, + "width": 130.0, + "height": 118.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "082e9706dffc4c188270980d4e44ce0f" + }, + { + "m_Id": "f2a351a5375c441b8d9ab7e2c9545a77" + }, + { + "m_Id": "41986ac6400d46709d0ef043a67f6b34" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "7a046f410ce64aa88438b0bfd412c045", + "m_Guid": { + "m_GuidSerialized": "d47271f5-5a84-47bf-a09e-c825d2aeb013" + }, + "m_Name": "Outline Color 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_551702C5", + "m_OverrideReferenceName": "_OutlineColor3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "7a0f504e4175406dbd8134250f4e350b", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7a80e8839f0e4a1d9a6c0814f8793ee6", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4931.0, + "y": -3452.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "6fbdcc5a972b4fa883dc5f21e525a376" + }, + { + "m_Id": "0ba4932e164847878ddb7b7bcff96985" + }, + { + "m_Id": "9178663316db43d582f1c4a127d307c6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7acfafd73b8c4dfab8c55c18a887e087", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "7b8a19bd115e4167a25b59cb3218a817", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c27ccb2c2dc4ca59c5438c3358630ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "7d7696aa6d184b4fb9c316a9dec37aee", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4928.0, + "y": -3326.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "4d1cb1a475df49f9a148195a65f5453a" + }, + { + "m_Id": "47d020251e9841a5b1f0fd64396026a1" + }, + { + "m_Id": "62bc551cea604e88b7858cc37d96a98a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "7d78a616c2754cc28d1f32cf66ade611", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3973.0, + "y": -2796.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "d9bcb754db834583b6518c5ed5152114" + }, + { + "m_Id": "861d4258049a4a3e8164f7297090f88e" + }, + { + "m_Id": "a7c06457d7454693a8bc3dc95257b2c2" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "7e0fadb2533f496192c1ad3e78642010", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4188.0, + "width": 173.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d48c3871e3064027a10ae9f4babd3be0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "7f2e6b5f15364ed9835d67d0cf4f8f65", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Tangent", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2586.0, + "y": -3592.0, + "width": 200.0, + "height": 41.0 + } + }, + "m_Slots": [ + { + "m_Id": "85ff8667d72947edada4e9fb4ff60559" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Tangent" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "7f3d71a6c96847c099da45f95aafbecb", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", + "m_ObjectId": "8036d0e6090b456e9b4ea87227868236", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "80e665a5eeb64730a51742f698bf0d48", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "8135ca333f8f4ea78163743e6ec1f55c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4050.666259765625, + "y": -3139.99951171875, + "width": 121.99999237060547, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "d6a6a119394e4082a11bc024a6e42ef8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "81bdb47901ef48e5a588c6724b1b0142", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "81e8ed0534534674a74263e6161a2a1a", + "m_Guid": { + "m_GuidSerialized": "78aab961-c4a8-41f3-b203-1239c3b33b13" + }, + "m_Name": "Underlay Dilate", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_D48690B9", + "m_OverrideReferenceName": "_UnderlayDilate", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "82af2db1018543d7832af96c1cfc981f", + "m_Guid": { + "m_GuidSerialized": "37906c7b-9a3a-454b-a62a-9aa097e64bde" + }, + "m_Name": "Light Angle", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_82af2db1018543d7832af96c1cfc981f", + "m_OverrideReferenceName": "_LightAngle", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 6.28000020980835 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "82d5443fe54d4a3b9420f8745d00a632", + "m_Id": 5, + "m_DisplayName": "Softness", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Softness", + "m_StageCapability": 3, + "m_Value": 8.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "849275cac05e4ca8bd0b38ab7ae43bf8", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "84dc74cdbd8c45e1b189e4fd9a69942d", + "m_Id": 0, + "m_DisplayName": "Outline Offset 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "85a1ad8e741e41759002e8cdc8cd0b96", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "ScreenSpaceRatio (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6112.0, + "y": -3308.0, + "width": 258.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "6e13f3cd573c467a94379f45d96cb690" + }, + { + "m_Id": "8e6ed600f6504f4083092f5b511e44c4" + }, + { + "m_Id": "93b161cce4504cb79c97b6d8db178de7" + }, + { + "m_Id": "2bf5f2fdd2984599b7323d10cfb1d240" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ScreenSpaceRatio", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "85b5940eb77e4625812ded7215bab8d7", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4050.666259765625, + "y": -3095.99951171875, + "width": 121.99999237060547, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "ada023d617104472b8ab75a81558c0a1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot", + "m_ObjectId": "85ff8667d72947edada4e9fb4ff60559", + "m_Id": 0, + "m_DisplayName": "Tangent", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tangent", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "861d4258049a4a3e8164f7297090f88e", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "867a4ae13c0d4a028c71bc1063824c14", + "m_Guid": { + "m_GuidSerialized": "d483c212-0a30-4f6d-b94d-9abbc83a6522" + }, + "m_Name": "Outline Width", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_C68C9E14", + "m_OverrideReferenceName": "_IsoPerimeter", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 2, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "8695190a5e614f2d90081871a8a06fc2", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8764669016f6442f8152593c18a649d7", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "880bb02c6c6b49b18aa6ebc66dc566a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "88253223d2c34ecfab92b0c344048f94", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "ComputeSDF (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4226.0, + "y": -4323.0, + "width": 227.99998474121095, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "c52a1744a9a14989b0ae452ad6de6061" + }, + { + "m_Id": "a03db80c558b4f87a330c5ae0a9443a5" + }, + { + "m_Id": "8f1b1d1e8ff24b3284993e52354e54fa" + }, + { + "m_Id": "5da82bf481f8489ebd05e997f617f51b" + }, + { + "m_Id": "82d5443fe54d4a3b9420f8745d00a632" + }, + { + "m_Id": "61133d79a89048c195f54939b2a1d30a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8902cb30b1684db8b996562e0140cb18", + "m_Id": 0, + "m_DisplayName": "UV_1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV_1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8a08179f99d649d289b8053d5fa0ad22", + "m_Id": 0, + "m_DisplayName": "Underlay Offset", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8a5d204e1abd4f6894607d1a497f6e69", + "m_Id": 3, + "m_DisplayName": "Texel Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8b66f4e6bc9d4662b3218ac33a69839f", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "8c38a5d8327f456e9783740c05382619", + "m_Id": 3, + "m_DisplayName": "Color2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color2", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8cbd81814903479ea1d3151c1f38183e", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "8cf8aae64c1d443f9303126886b40f17", + "m_Guid": { + "m_GuidSerialized": "8d78c9a5-aaef-41fb-af68-2358e401d7ac" + }, + "m_Name": "_UnderlayColor", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_2F5FE804", + "m_OverrideReferenceName": "_UnderlayColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "8e6ed600f6504f4083092f5b511e44c4", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "8ed907a2cc7949b68a283ae243ea1977", + "m_Guid": { + "m_GuidSerialized": "36803443-a9bc-4f3c-a4f2-7d66a5417ac1" + }, + "m_Name": "Outline Offset 3", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "", + "m_OverrideReferenceName": "_OutlineOffset3", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "8f1b1d1e8ff24b3284993e52354e54fa", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9147636b0cfa466a9b37a013d8f693bf", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5567.0, + "y": -3862.000244140625, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a4f471e3221c4134b291bd9d2ba22db6" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9178663316db43d582f1c4a127d307c6", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SplitNode", + "m_ObjectId": "91890fe48ebe4717aea61ecaf3ad4861", + "m_Group": { + "m_Id": "ecf16c34d46f4502ac601f0c38c7576b" + }, + "m_Name": "Split", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3114.000244140625, + "y": -3414.0, + "width": 120.00000762939453, + "height": 149.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "3dccd64e7f324bc1a75c1479d7a67c51" + }, + { + "m_Id": "e444f2c81d1e48329fa2c91005277e8d" + }, + { + "m_Id": "b2c26292b7434733878a9b042f44de89" + }, + { + "m_Id": "964fea1fd4b24f4daf5bef84c4b45118" + }, + { + "m_Id": "deac82280a2b43078e0e40863e2d974c" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "91d6a9a5fbc04ea49075cb51835e7264", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "928621a3ca2d41c89a10336bbbc81ddc", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "93b161cce4504cb79c97b6d8db178de7", + "m_Id": 3, + "m_DisplayName": "TextureSize", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureSize", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget", + "m_ObjectId": "94300469581b4924ac7dda496811d45d", + "m_Datas": [], + "m_ActiveSubTarget": { + "m_Id": "0eeb5490760e492f8c9691086fa00929" + }, + "m_AllowMaterialOverride": false, + "m_SurfaceType": 1, + "m_ZTestMode": 4, + "m_ZWriteControl": 0, + "m_AlphaMode": 0, + "m_RenderFace": 0, + "m_AlphaClip": true, + "m_CastShadows": true, + "m_ReceiveShadows": true, + "m_AdditionalMotionVectorMode": 0, + "m_AlembicMotionVectors": false, + "m_SupportsLODCrossFade": false, + "m_CustomEditorGUI": "TMPro.EditorUtilities.TMP_SDFShaderGUI", + "m_SupportVFX": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "945b45993dd84a979755b98c48138f72", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "952d0fa5cd744df0b434cd38e9a90b93", + "m_Guid": { + "m_GuidSerialized": "ce395871-ddeb-47c3-a31d-07855800c197" + }, + "m_Name": "_UnderlaySoftness", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_F2B9E3EF", + "m_OverrideReferenceName": "_UnderlaySoftness", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "95928bcb6a284b8d88105a84c2e1d3ce", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4744.0, + "y": -2591.0, + "width": 155.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "d880558893fb442b9320cf55885d1117" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "964fea1fd4b24f4daf5bef84c4b45118", + "m_Id": 3, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "98934a69591249d5b8b92b39045359a3", + "m_Title": "Outline1 Texture", + "m_Position": { + "x": -4746.0, + "y": -2497.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "998db5e5901e45b29040eb2099370071", + "m_Guid": { + "m_GuidSerialized": "6f383614-f2ad-4269-be8f-87b0ecb03cf0" + }, + "m_Name": "Bevel Clamp", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_5BD7E808", + "m_OverrideReferenceName": "_BevelClamp", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "9c228fac287d446296b91a4acf5cec59", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4569.0, + "y": -3498.000244140625, + "width": 184.0, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "582d6e289dbe4fdca7cf0307273eaa2f" + }, + { + "m_Id": "1db37082bf844442804487b4944352de" + }, + { + "m_Id": "8b66f4e6bc9d4662b3218ac33a69839f" + }, + { + "m_Id": "4a66dcbe712a4d40bd8f355b834594b5" + }, + { + "m_Id": "a0285c9c381a49cba194709efa0a7c85" + }, + { + "m_Id": "b2728d0dd3ce40678867c94a7d977916" + }, + { + "m_Id": "e141833aa78b4fd59ecad949beb43a78" + }, + { + "m_Id": "51f76f8a53ad43a4ad028426548ce9ba" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "9c26fdddba244d36a854298c00473247", + "m_Id": 3, + "m_DisplayName": "SDR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SDR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "9d3c3383d5934a17bf9efbb7fd9e9043", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5412.0, + "y": -3315.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "232b1aa09e67479abae141d3c76d3c5b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e6e50a71d9843b49b62ebe1cf7d3d59", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4486.0, + "y": -3865.99951171875, + "width": 135.3330078125, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "3535ae87c6dd4769b52b20d9eca61069" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "9e87ce9607e14015a3790c528ca5dfda", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4598.0, + "y": -2251.0, + "width": 167.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "75c5657544c648058b20cea090f48dbf" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "9eb8137a6c2e41bbafdc8b0732dd47a3", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "9eeec1a9713045af8845cea263d5ea48", + "m_Id": 6, + "m_DisplayName": "IsFront", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "IsFront", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9f0de188085746d5a19073da1de85ddb", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4118.0, + "y": -2771.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "7c27ccb2c2dc4ca59c5438c3358630ca" + }, + { + "m_Id": "373f1de8db6c429c9d46c781f741d7a4" + }, + { + "m_Id": "fd0b096ed5b74f9e9ec51327be200731" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a0285c9c381a49cba194709efa0a7c85", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a03db80c558b4f87a330c5ae0a9443a5", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a161b772c7564eee804e3d58f6cb9944", + "m_Id": 4, + "m_DisplayName": "Texel Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Texel Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "a3f8b6e8ae7f48e2989a029904401502", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 1, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "a455bd79094c4413a7b7dd80ca8b9368", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4573.0, + "y": -2689.0, + "width": 222.0, + "height": 142.0 + } + }, + "m_Slots": [ + { + "m_Id": "4e90ca54c0cc46a18ea600be7c80413a" + }, + { + "m_Id": "2c7a9460724b47daad8df1be144de7c6" + }, + { + "m_Id": "55ffa45ec3654d5e88089fb40d2b0465" + }, + { + "m_Id": "e495a9f7a11f4eb89334e83be154ceb9" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateShaderProperty", + "m_ObjectId": "a4ad98d8828c424384229c344ebe2ed0", + "m_Guid": { + "m_GuidSerialized": "f98fc1a2-bb81-4bd1-a207-23d3a90d518e" + }, + "m_Name": "SamplerState", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "SamplerState_a4ad98d8828c424384229c344ebe2ed0", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": false, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_filter": 0, + "m_wrap": 1, + "m_anisotropic": 0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a4f471e3221c4134b291bd9d2ba22db6", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a535f3bcbeb14622bb177eb6f46e76f4", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4608.0, + "y": -2293.0, + "width": 177.00001525878907, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "6dfc1177dd0541a7a780fbf911ad1956" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "a6bbb32e8d884be9bb36db91fe4b81b1", + "m_Guid": { + "m_GuidSerialized": "6aa76edf-7b80-46ac-add4-406cf1d85493" + }, + "m_Name": "_GradientScale", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_EAE27356", + "m_OverrideReferenceName": "_GradientScale", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 1, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 10.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "a6c38edd2e8743a9b057ba8452b9f129", + "m_Guid": { + "m_GuidSerialized": "9fc942ee-4a1d-4ced-a5a6-81893e3ddb63" + }, + "m_Name": "Light Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_a6c38edd2e8743a9b057ba8452b9f129", + "m_OverrideReferenceName": "_SpecularColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "a75f7ac601c446469802fe7754c1f279", + "m_Id": 0, + "m_DisplayName": "Color1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a7942746b5564dc7bbbae1deb2403022", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "a7c06457d7454693a8bc3dc95257b2c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "aa2794b8f0e24bf281d22e0fef0647be", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "aa3e347d733e48f7b65d8a8847370eec", + "m_Group": { + "m_Id": "" + }, + "m_Name": "EvaluateLight (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3633.000244140625, + "y": -3805.000244140625, + "width": 179.00001525878907, + "height": 118.00000762939453 + } + }, + "m_Slots": [ + { + "m_Id": "0699eea947fc426cbfeb8744cf120222" + }, + { + "m_Id": "0c4dc51f26484c26ad88a3fe4002abcd" + }, + { + "m_Id": "d5173cc3c6cd4f1998550f3187a3e9c8" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "EvaluateLight", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aa87c72ac0e64469acc34f936f00b3d0", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4225.0, + "width": 193.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "0d7878dd226d4cfb81a991dc312309fc" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "abd59150589b436cadf8c9e6f43ccb8e", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "aca823a8188948c782eddaf0f45e1868", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.NormalOS", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2542.0, + "y": -3404.000244140625, + "width": 200.0, + "height": 40.66650390625 + } + }, + "m_Slots": [ + { + "m_Id": "e386b183a18245a796b024022f7f3074" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.NormalOS" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "acd0cd5a177f4a97bf23db7219305e3f", + "m_Group": { + "m_Id": "d258902c6ec74942afdb9ebf8c1d07f8" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4348.0, + "y": -3905.99951171875, + "width": 185.33299255371095, + "height": 101.33324432373047 + } + }, + "m_Slots": [ + { + "m_Id": "945b45993dd84a979755b98c48138f72" + }, + { + "m_Id": "e51a636b2621440eb94cc802c1cf4bfc" + }, + { + "m_Id": "1bdde3efd3b7464b8934c555be0f8a48" + }, + { + "m_Id": "8a5d204e1abd4f6894607d1a497f6e69" + }, + { + "m_Id": "a161b772c7564eee804e3d58f6cb9944" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ada023d617104472b8ab75a81558c0a1", + "m_Id": 0, + "m_DisplayName": "Outline Color 3", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "aef5c44f84e04c3185e0b93e95e34204", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5233.99951171875, + "y": -3141.999755859375, + "width": 143.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "84dc74cdbd8c45e1b189e4fd9a69942d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b000f852aa984e9dae25b125a4607f4e", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b015d1b7e4134c59baf6851e7649802c", + "m_Id": 0, + "m_DisplayName": "R", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "b0b352c4503a43d083a64e57352b29a0", + "m_Guid": { + "m_GuidSerialized": "01cfcc78-60aa-4f71-a1e3-8d8df6dae253" + }, + "m_Name": "Reflectivity Power", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector1_b0b352c4503a43d083a64e57352b29a0", + "m_OverrideReferenceName": "_Reflectivity", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 5.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 5.0, + "y": 15.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.VertexColorNode", + "m_ObjectId": "b1188549725543d485436c2e921ffbb2", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Vertex Color", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4108.0, + "y": -2890.0, + "width": 116.0, + "height": 94.0 + } + }, + "m_Slots": [ + { + "m_Id": "281bcee4777040f8a31ee0e10344e98d" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 2, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "b163c9f1666644b0bba62cf0e12df7bc", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4333.0, + "y": -2713.0, + "width": 180.0, + "height": 180.0 + } + }, + "m_Slots": [ + { + "m_Id": "cce40479b6284b6fa3174db9f09d0ac9" + }, + { + "m_Id": "80e665a5eeb64730a51742f698bf0d48" + }, + { + "m_Id": "1f46181633594ae0a1fb2adb76b42981" + }, + { + "m_Id": "8cbd81814903479ea1d3151c1f38183e" + }, + { + "m_Id": "cfaf3f3a5a1146e194cddad30c95aada" + }, + { + "m_Id": "b43489e37a5c4df88f15844292a55ec7" + }, + { + "m_Id": "cd7281fb41aa4e61ac0fdf71d4f4bd46" + }, + { + "m_Id": "f01d52cdcb1647aab35782b4af535efd" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 1, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "b224a1cf80604103ad085c799995f3c2", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b2728d0dd3ce40678867c94a7d977916", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b2baf44eae52473cb6cda7b1debece01", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b2c26292b7434733878a9b042f44de89", + "m_Id": 2, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b42e6dbfbc864097af182cbff5c0c1fb", + "m_Id": 0, + "m_DisplayName": "Outline Color 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "b43489e37a5c4df88f15844292a55ec7", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"fileID\":-2362172177983852347,\"guid\":\"dda5bcb0d1e9515498f6e4e038bbefe6\",\"type\":2}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b4a40cb6acd441acb83cfe0240bf910d", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4750.99951171875, + "y": -4274.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "d0b10e52e21941b183f5f635894c76c8" + }, + { + "m_Id": "0d6a57754b824f6db9cefa6953bc06a9" + }, + { + "m_Id": "773b90134e894e429203c0c83e80b9de" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "b571db753a1948d5a6f1de4e7d0c7238", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5727.0, + "y": -3827.000244140625, + "width": 184.0, + "height": 101.0 + } + }, + "m_Slots": [ + { + "m_Id": "5b3ff4ee364f4d7a923b530ad60d8762" + }, + { + "m_Id": "c183b5bd9bbe45089f93996e73110918" + }, + { + "m_Id": "1196ae398cc348349ab0c1a23fdab4bd" + }, + { + "m_Id": "1d7d96a5770b4f8ebb162bdbde020bca" + }, + { + "m_Id": "49dabfd48a78475882e664526b483ce1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b691728a389a417d9b4f2d02541209c2", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b7f9ac55517141868bfb9d2ad6429792", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "b85d677872b44421bf5536f42ba0267c", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CategoryData", + "m_ObjectId": "bafc3d388c1e444e820897b9a3d6029a", + "m_Name": "", + "m_ChildObjectList": [ + { + "m_Id": "dc75c4e3a1bc4bb0a128086c2b0679a5" + }, + { + "m_Id": "867a4ae13c0d4a028c71bc1063824c14" + }, + { + "m_Id": "22b7f3c2bb7b48c0a7fdeb50e33e7d5e" + }, + { + "m_Id": "53073e5ea924459fa6681a4943e9f947" + }, + { + "m_Id": "7a046f410ce64aa88438b0bfd412c045" + }, + { + "m_Id": "636180f6e0504f2baaa5cc086980cb47" + }, + { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + }, + { + "m_Id": "8ed907a2cc7949b68a283ae243ea1977" + }, + { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + }, + { + "m_Id": "0580d4b7e3a049049569f4508643a724" + }, + { + "m_Id": "c9ec735d1a1046769e5601b2c97c849a" + }, + { + "m_Id": "2d0a269511e34bd1ba9056d2c939dff2" + }, + { + "m_Id": "07946387933e416db576b677f0711e5f" + }, + { + "m_Id": "46fbf3eeb0ea4470869cba7443249295" + }, + { + "m_Id": "ec79eb447dfd47a9b3380344c6a60f43" + }, + { + "m_Id": "3fdf4b7bc5d4426492dcc057603ef4a6" + }, + { + "m_Id": "8cf8aae64c1d443f9303126886b40f17" + }, + { + "m_Id": "49e7c3ad55ce458797f0e60c950cb965" + }, + { + "m_Id": "81e8ed0534534674a74263e6161a2a1a" + }, + { + "m_Id": "952d0fa5cd744df0b434cd38e9a90b93" + }, + { + "m_Id": "21a7a380e66d42e780e2a2a1baa630d5" + }, + { + "m_Id": "2c10b97b92c947ceb307a93759c0228b" + }, + { + "m_Id": "1be90d4f96a841748b0c95219b12ad27" + }, + { + "m_Id": "5fbe253f3e444f2aa8ac717f9c856619" + }, + { + "m_Id": "5bd258837c514ff7ab0bf7027e762c18" + }, + { + "m_Id": "998db5e5901e45b29040eb2099370071" + }, + { + "m_Id": "a6c38edd2e8743a9b057ba8452b9f129" + }, + { + "m_Id": "82af2db1018543d7832af96c1cfc981f" + }, + { + "m_Id": "3ec4797e381747829ef4712c85fcf7a1" + }, + { + "m_Id": "b0b352c4503a43d083a64e57352b29a0" + }, + { + "m_Id": "424dbeeb009344efa29c304c4979e3d6" + }, + { + "m_Id": "05805bc6fcc941fd889922555c6c86d7" + }, + { + "m_Id": "a4ad98d8828c424384229c344ebe2ed0" + }, + { + "m_Id": "3e372195f4bd4845852a37839e5b602d" + }, + { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + }, + { + "m_Id": "4a0041116f73406db7a62ae80ff54ef4" + } + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CombineNode", + "m_ObjectId": "bc9afcb18afa4ccc82d2cdc34d3f4641", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Combine", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -5537.0, + "y": -3827.000244140625, + "width": 126.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "5e42524569844befad16fda5a94eb9cb" + }, + { + "m_Id": "54d7a93ffec5490aa4591da23a21b693" + }, + { + "m_Id": "aa2794b8f0e24bf281d22e0fef0647be" + }, + { + "m_Id": "200245fc8bbe4826b209ab5f7ffe074c" + }, + { + "m_Id": "fc2e62201c5847e798fd939314413fcd" + }, + { + "m_Id": "fe11fa80cc1847a5a37f6757d521cf25" + }, + { + "m_Id": "de0c6f7f7af94defa6c3dbc6433de9d4" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c183b5bd9bbe45089f93996e73110918", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "c234e5216678436195ee1a5914bc79da", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "GenerateUV (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4409.0, + "y": -2338.0, + "width": 222.0, + "height": 142.00001525878907 + } + }, + "m_Slots": [ + { + "m_Id": "8902cb30b1684db8b996562e0140cb18" + }, + { + "m_Id": "3db1608e927e4102a3c3a88e9fcab39a" + }, + { + "m_Id": "0f7ffb6d2de4447f9736780cbcee8e07" + }, + { + "m_Id": "d4954b7bbbb0412cbc997bcbe7dfa808" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "GenerateUV", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "c35312edaa2344788b1964ee2f63a236", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "c3e6d7c20c184bf39fd8822130e693e7", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "c422a9a9ff824176aad2241f58c44d0b", + "m_Id": 0, + "m_DisplayName": "Outline Offset 1", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "c478c32c45884c57a62f7b2aa8ddc3b0", + "m_Id": 2, + "m_DisplayName": "Alpha", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Alpha", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c52a1744a9a14989b0ae452ad6de6061", + "m_Id": 0, + "m_DisplayName": "SSR", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SSR", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c6bdb985bc16435fa72f5a3c81bb633c", + "m_Id": 6, + "m_DisplayName": "B", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c7d4094601ac4bc1aead609c72b1f1c1", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c7ddee91dc5b48dc828309c77fdb0b88", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4444.0, + "y": -4266.0, + "width": 153.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "a7942746b5564dc7bbbae1deb2403022" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "c88fcbaeea954a5f9c68c339fa8b604d", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "c9b722d107ce4cd6a748c883472b9b0f", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "c9d7f0dbae7d422985a1cc87c025e76b", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4284.0, + "y": -3165.0, + "width": 144.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "79147f6986644769b58d9ed64fe771e1" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "cb3c0c3f08654b068bea44c4ffb15f4a" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.Texture2DShaderProperty", + "m_ObjectId": "c9ec735d1a1046769e5601b2c97c849a", + "m_Guid": { + "m_GuidSerialized": "281a9526-c332-4471-a44e-ece4a1e95ef6" + }, + "m_Name": "Face Texture", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Texture2D_75569DEA", + "m_OverrideReferenceName": "_FaceTex", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "isMainTexture": false, + "useTilingAndOffset": false, + "m_Modifiable": true, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ca2a1083dc014f39ab8af0cdf140866b", + "m_Id": 0, + "m_DisplayName": "_FaceTex_ST", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "cb3c0c3f08654b068bea44c4ffb15f4a", + "m_Guid": { + "m_GuidSerialized": "21009d12-8d94-4273-b0d0-a8ee0608ddcf" + }, + "m_Name": "OutlineMode", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Boolean_cb3c0c3f08654b068bea44c4ffb15f4a", + "m_OverrideReferenceName": "_OutlineMode", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cb5e9f9567e84f8fa5463efc0e256e19", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "cb7117ecb1d047a8b2cb00ed552cb181", + "m_Group": { + "m_Id": "" + }, + "m_Name": "SurfaceDescription.Alpha", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3032.66650390625, + "y": -3029.33349609375, + "width": 200.0, + "height": 41.33349609375 + } + }, + "m_Slots": [ + { + "m_Id": "724e17584e97443e9e285dfa7253c8e3" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "SurfaceDescription.Alpha" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cc88101667c9488f9c5a716e851c1b21", + "m_Id": 3, + "m_DisplayName": "Color0", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Color0", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "cce40479b6284b6fa3174db9f09d0ac9", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "cd7281fb41aa4e61ac0fdf71d4f4bd46", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "cda5e3b4c1054bf3a65c0b7ec6bc778a", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "cdddee3a537c464697357f11b966f9b8", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4420.0, + "y": -4483.0, + "width": 156.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "41b9b79b3859472882bcea393703eec0" + }, + { + "m_Id": "c7d4094601ac4bc1aead609c72b1f1c1" + }, + { + "m_Id": "767769f736d5478cba5f10a415e28e7f" + }, + { + "m_Id": "b691728a389a417d9b4f2d02541209c2" + }, + { + "m_Id": "045c4f6b050549c7a0efb208e6349779" + }, + { + "m_Id": "509e6f38505b4b0695b263706a55028f" + }, + { + "m_Id": "204dacb5a95b424facf11cb6f65bd188" + }, + { + "m_Id": "35cbea6373dd4e4f8d0fea36e8add392" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "cfaf3f3a5a1146e194cddad30c95aada", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d0a791a544614667962a9a9a9ce0c68a", + "m_Title": "Screen Space Ratio", + "m_Position": { + "x": -6485.591796875, + "y": -3365.3779296875 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d0b10e52e21941b183f5f635894c76c8", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d1a17e42e7a04dc38984e3c01149445b", + "m_Id": 7, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d219977210094c0082c517d8dc00c8bb", + "m_Id": 0, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "d258902c6ec74942afdb9ebf8c1d07f8", + "m_Title": "Generate Normal", + "m_Position": { + "x": -4511.33349609375, + "y": -3999.3330078125 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "d30452ac6b244ecca03df4d7b4de9f81", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d48c3871e3064027a10ae9f4babd3be0", + "m_Id": 0, + "m_DisplayName": "_UnderlaySoftness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d4954b7bbbb0412cbc997bcbe7dfa808", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "d4df208fc23b42f2b52364124f1b661c", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5236.99951171875, + "y": -3260.999755859375, + "width": 143.99998474121095, + "height": 33.999996185302737 + } + }, + "m_Slots": [ + { + "m_Id": "757174b6f25040fdbb20355a21752222" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "74b41464cbed4e9e8e23af5ab9be40cf" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "d5173cc3c6cd4f1998550f3187a3e9c8", + "m_Id": 0, + "m_DisplayName": "Normal", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Normal", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "d6a6a119394e4082a11bc024a6e42ef8", + "m_Id": 0, + "m_DisplayName": "Outline Color 2", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "d880558893fb442b9320cf55885d1117", + "m_Id": 0, + "m_DisplayName": "_FaceUVSpeed", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d8edec16956c4f15b7d51d6ec10753f4", + "m_Id": 2, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d9bcb754db834583b6518c5ed5152114", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d9dc4839ee2847999110bdb234d6041a", + "m_Id": 1, + "m_DisplayName": "G", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "da7a06d393a44089842070d51d2aa0a6", + "m_Id": 0, + "m_DisplayName": "_MainTex", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "daaf032a109749a88c9b8ff8e1f8b541", + "m_Title": "Offset Scale", + "m_Position": { + "x": -5893.0, + "y": -3921.000244140625 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVNode", + "m_ObjectId": "dbcb748279484a4590e53518c49122b8", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "UV", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4744.0, + "y": -2762.0, + "width": 145.0, + "height": 130.0 + } + }, + "m_Slots": [ + { + "m_Id": "7a0f504e4175406dbd8134250f4e350b" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_OutputChannel": 1 +} + +{ + "m_SGVersion": 3, + "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", + "m_ObjectId": "dc75c4e3a1bc4bb0a128086c2b0679a5", + "m_Guid": { + "m_GuidSerialized": "85cd941f-2fd2-43a3-b0fa-9f728bfb4220" + }, + "m_Name": "Face Color", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Color_99AFBB3D", + "m_OverrideReferenceName": "_FaceColor", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "isMainColor": false, + "m_ColorMode": 1 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "de0c6f7f7af94defa6c3dbc6433de9d4", + "m_Id": 6, + "m_DisplayName": "RG", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RG", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "deac82280a2b43078e0e40863e2d974c", + "m_Id": 4, + "m_DisplayName": "A", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot", + "m_ObjectId": "def8e0b9d8384982bc5b4c32d877e458", + "m_Id": 0, + "m_DisplayName": "Outline Texture", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "dff7a66b353a4023b29c9d937da77960", + "m_Group": { + "m_Id": "484b51c50485473b819c4f05087b32d7" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4602.0, + "y": -4298.0, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "7b8a19bd115e4167a25b59cb3218a817" + }, + { + "m_Id": "0b57f2d35157477ab2b29a5aac14ae8b" + }, + { + "m_Id": "e9e06fcb161e44ba8cc9f6f60264df78" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "e141833aa78b4fd59ecad949beb43a78", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e2d28f29bbac4983a401574480b5ca28", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", + "m_ObjectId": "e386b183a18245a796b024022f7f3074", + "m_Id": 0, + "m_DisplayName": "Normal (Object Space)", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "NormalOS", + "m_StageCapability": 2, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_Space": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e444f2c81d1e48329fa2c91005277e8d", + "m_Id": 1, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "e495a9f7a11f4eb89334e83be154ceb9", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e51a636b2621440eb94cc802c1cf4bfc", + "m_Id": 2, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "e6e80c6b0db545cda26b079a9a78fbb3", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "e818605f8f5a4f01bf61caaa33693581", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "ComputeSDF44 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4113.0, + "y": -3368.999755859375, + "width": 243.99998474121095, + "height": 214.0 + } + }, + "m_Slots": [ + { + "m_Id": "641eda269d7b4da9acb65f8d50035ea9" + }, + { + "m_Id": "f6823778a3cf42d5bbe8a83e5f9c9fa3" + }, + { + "m_Id": "9c26fdddba244d36a854298c00473247" + }, + { + "m_Id": "f684c5678e9e4f078157a3ab7ef5057b" + }, + { + "m_Id": "14ad19bf20a140dd88d58452d7df688b" + }, + { + "m_Id": "215a82c127204988b751de7d3a39b955" + }, + { + "m_Id": "c478c32c45884c57a62f7b2aa8ddc3b0" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "ComputeSDF44", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "e9e06fcb161e44ba8cc9f6f60264df78", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebbd94a7102a4457a48ac492de3bff14", + "m_Id": 5, + "m_DisplayName": "G", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "G", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ebd6d75abcb84108bcadbfe7ee5f6244", + "m_Id": 7, + "m_DisplayName": "TextureHeight", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "TextureHeight", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "ec184d6d9fb2494897774c9e7d279e6d", + "m_Group": { + "m_Id": "013228b0fdf1424097798f0973a9a4fb" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4754.0, + "y": -2625.0, + "width": 145.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ca2a1083dc014f39ab8af0cdf140866b" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "07946387933e416db576b677f0711e5f" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "ec1f2e8bc9fd4ae38b133c60ee6c49b8", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4927.0, + "y": -3204.0, + "width": 130.0, + "height": 117.99999237060547 + } + }, + "m_Slots": [ + { + "m_Id": "748c31bbcecc4b30bec2e42c0612175b" + }, + { + "m_Id": "4bda5c294e1949138d033640e1d385b4" + }, + { + "m_Id": "4e64dac49ddc47c3b5b1e27b17a08304" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector4ShaderProperty", + "m_ObjectId": "ec79eb447dfd47a9b3380344c6a60f43", + "m_Guid": { + "m_GuidSerialized": "54c77f8b-0534-4b35-a3f0-83ab2ebe6c1f" + }, + "m_Name": "_OutlineTex_ST", + "m_DefaultRefNameVersion": 0, + "m_RefNameGeneratedByDisplayName": "", + "m_DefaultReferenceName": "Vector4_1774DE83", + "m_OverrideReferenceName": "_OutlineTex_ST", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "ecf16c34d46f4502ac601f0c38c7576b", + "m_Title": "Vertex Color", + "m_Position": { + "x": -3614.000244140625, + "y": -3549.000244140625 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ed1d1f1613334c3bb904dd08161cd7e5", + "m_Id": 0, + "m_DisplayName": "_GradientScale", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ed6c215a65584deeaefad1d2c7743044", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "edbee7a8952b46529ac5ad0365775774", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", + "m_ObjectId": "ef0b93f78372439696f50711eaf57d90", + "m_Id": 0, + "m_DisplayName": "Base Color", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "BaseColor", + "m_StageCapability": 2, + "m_Value": { + "x": 0.7353569269180298, + "y": 0.7353569269180298, + "z": 0.7353569269180298 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [ + "X", + "Y", + "Z" + ], + "m_ColorMode": 0, + "m_DefaultColor": { + "r": 0.5, + "g": 0.5, + "b": 0.5, + "a": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef9738ec7e894772a14e9dce441c16c6", + "m_Id": 2, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [ + "X", + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot", + "m_ObjectId": "f01d52cdcb1647aab35782b4af535efd", + "m_Id": 3, + "m_DisplayName": "Sampler", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Sampler", + "m_StageCapability": 3, + "m_BareResource": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.CustomFunctionNode", + "m_ObjectId": "f23a8b2b7c85478388ff7a8c8a6de740", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Layer4 (Custom Function)", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3819.0, + "y": -3286.0, + "width": 193.0, + "height": 190.0 + } + }, + "m_Slots": [ + { + "m_Id": "0fac35636fca4474a6afaefc3c757775" + }, + { + "m_Id": "cc88101667c9488f9c5a716e851c1b21" + }, + { + "m_Id": "68ec7c31365549d6a8ce883edfc02de2" + }, + { + "m_Id": "02559cbe5ad441a3904ccb75ded2b2c5" + }, + { + "m_Id": "34a67e0fef884f9399e674d9eeaf720c" + }, + { + "m_Id": "3802c81c3be24823aa1d7c9997a33c29" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SourceType": 0, + "m_FunctionName": "Layer4", + "m_FunctionSource": "96de908384869cd409c75efa351d5edf", + "m_FunctionBody": "Enter function body here..." +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f2903158b3624759bca1fcd843698078", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f2a351a5375c441b8d9ab7e2c9545a77", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DPropertiesNode", + "m_ObjectId": "f383b24f0bc6434dafe44b3e3d338a63", + "m_Group": { + "m_Id": "d0a791a544614667962a9a9a9ce0c68a" + }, + "m_Name": "Texel Size", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -6318.6669921875, + "y": -3153.3330078125, + "width": 185.33348083496095, + "height": 101.33348846435547 + } + }, + "m_Slots": [ + { + "m_Id": "fb5e1e2a67c14602808358686bb75091" + }, + { + "m_Id": "712da461f71a454db59d349f752d41ee" + }, + { + "m_Id": "b000f852aa984e9dae25b125a4607f4e" + }, + { + "m_Id": "849275cac05e4ca8bd0b38ab7ae43bf8" + }, + { + "m_Id": "59cea37675824d99995b370f09cef20a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "f3d31c1f18d8491a8ecf5cbc37e4b7db", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4291.33349609375, + "y": -3246.0, + "width": 154.0, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "ed1d1f1613334c3bb904dd08161cd7e5" + } + ], + "synonyms": [], + "m_Precision": 1, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "a6bbb32e8d884be9bb36db91fe4b81b1" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f42ad06b3c6a45d3ab33de904c063412", + "m_Id": 3, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "f48f04ad45d046a8b88e71731ed506e7", + "m_Id": 4, + "m_DisplayName": "R", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "R", + "m_StageCapability": 2, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BlockNode", + "m_ObjectId": "f4ecc442a2d246759f7c2c0412953d28", + "m_Group": { + "m_Id": "" + }, + "m_Name": "VertexDescription.Normal", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": 0.0, + "y": 0.0, + "width": 0.0, + "height": 0.0 + } + }, + "m_Slots": [ + { + "m_Id": "a3f8b6e8ae7f48e2989a029904401502" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_SerializedDescriptor": "VertexDescription.Normal" +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f6823778a3cf42d5bbe8a83e5f9c9fa3", + "m_Id": 1, + "m_DisplayName": "SD", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "SD", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f684c5678e9e4f078157a3ab7ef5057b", + "m_Id": 4, + "m_DisplayName": "Isoperimeter", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Isoperimeter", + "m_StageCapability": 3, + "m_Value": { + "x": 3.0, + "y": 2.0, + "z": 1.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "f814deb543c24fbbafbcdb5071d96022", + "m_Group": { + "m_Id": "42cadae0923e4969b50bbc3f78185934" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4569.0, + "y": -3245.000244140625, + "width": 184.0, + "height": 253.0 + } + }, + "m_Slots": [ + { + "m_Id": "abd59150589b436cadf8c9e6f43ccb8e" + }, + { + "m_Id": "7acfafd73b8c4dfab8c55c18a887e087" + }, + { + "m_Id": "928621a3ca2d41c89a10336bbbc81ddc" + }, + { + "m_Id": "b7f9ac55517141868bfb9d2ad6429792" + }, + { + "m_Id": "09b1b86c1c074337a4c439d3a308dd2e" + }, + { + "m_Id": "1f247658c7ba45fb93c41f51e21acb0d" + }, + { + "m_Id": "d30452ac6b244ecca03df4d7b4de9f81" + }, + { + "m_Id": "215b30ae27784ec3a13360a9029af283" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "f864c900600e427ba7793f00c715e971", + "m_Id": 0, + "m_DisplayName": "Outline Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fa6de3be9f5b4411b5081b49e645f424", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "faace8101df943d8956faa31728cb004", + "m_Group": { + "m_Id": "daaf032a109749a88c9b8ff8e1f8b541" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -5400.0, + "y": -3851.000244140625, + "width": 130.0, + "height": 118.0 + } + }, + "m_Slots": [ + { + "m_Id": "77e28f3e930b4c249145630ec961af95" + }, + { + "m_Id": "f2903158b3624759bca1fcd843698078" + }, + { + "m_Id": "30ca940fe2794c949f2a1d4d2caaa446" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "facc84930f544fd7a0205a6176b18ac0", + "m_Id": 2, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", + "m_ObjectId": "fb15d0ba56d54a6192f11e107aeb5fa8", + "m_Id": 1, + "m_DisplayName": "Texture", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Texture", + "m_StageCapability": 3, + "m_BareResource": false, + "m_Texture": { + "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}", + "m_Guid": "" + }, + "m_DefaultType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "fb5e1e2a67c14602808358686bb75091", + "m_Id": 0, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "X" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "fc2e62201c5847e798fd939314413fcd", + "m_Id": 4, + "m_DisplayName": "RGBA", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGBA", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "fd0b096ed5b74f9e9ec51327be200731", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode", + "m_ObjectId": "fdb77c3e92ee497b88ca5dc46dc45350", + "m_Group": { + "m_Id": "98934a69591249d5b8b92b39045359a3" + }, + "m_Name": "Sample Texture 2D", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -4171.0, + "y": -2362.0, + "width": 180.0, + "height": 181.0 + } + }, + "m_Slots": [ + { + "m_Id": "4328cdbf78b94c038fd614c59bfe1cac" + }, + { + "m_Id": "04dfcc9ff13a4bf282ed46faec39d15c" + }, + { + "m_Id": "71dd947935b64ce38f0d25406dde447b" + }, + { + "m_Id": "61a6ac5f29344d109411f26850ab0a96" + }, + { + "m_Id": "44806230fa384c1e95f9c5918a14f056" + }, + { + "m_Id": "4eb3c00a1ca44e10be833b7ca61ff059" + }, + { + "m_Id": "57abc172afd449e2a4d567f93432507b" + }, + { + "m_Id": "cda5e3b4c1054bf3a65c0b7ec6bc778a" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": false, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_TextureType": 0, + "m_NormalMapSpace": 0, + "m_EnableGlobalMipBias": true, + "m_MipSamplingMode": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "fe11fa80cc1847a5a37f6757d521cf25", + "m_Id": 5, + "m_DisplayName": "RGB", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "RGB", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph.meta new file mode 100644 index 0000000..248825c --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 124c112a6e8f1a54e8b0870e881b56d8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF.shader b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader new file mode 100644 index 0000000..bbcfd11 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader @@ -0,0 +1,326 @@ +Shader "TextMeshPro/Distance Field" { + +Properties { + _FaceTex ("Face Texture", 2D) = "white" {} + _FaceUVSpeedX ("Face UV Speed X", Range(-5, 5)) = 0.0 + _FaceUVSpeedY ("Face UV Speed Y", Range(-5, 5)) = 0.0 + _FaceColor ("Face Color", Color) = (1,1,1,1) + _FaceDilate ("Face Dilate", Range(-1,1)) = 0 + + _OutlineColor ("Outline Color", Color) = (0,0,0,1) + _OutlineTex ("Outline Texture", 2D) = "white" {} + _OutlineUVSpeedX ("Outline UV Speed X", Range(-5, 5)) = 0.0 + _OutlineUVSpeedY ("Outline UV Speed Y", Range(-5, 5)) = 0.0 + _OutlineWidth ("Outline Thickness", Range(0, 1)) = 0 + _OutlineSoftness ("Outline Softness", Range(0,1)) = 0 + + _Bevel ("Bevel", Range(0,1)) = 0.5 + _BevelOffset ("Bevel Offset", Range(-0.5,0.5)) = 0 + _BevelWidth ("Bevel Width", Range(-.5,0.5)) = 0 + _BevelClamp ("Bevel Clamp", Range(0,1)) = 0 + _BevelRoundness ("Bevel Roundness", Range(0,1)) = 0 + + _LightAngle ("Light Angle", Range(0.0, 6.2831853)) = 3.1416 + _SpecularColor ("Specular", Color) = (1,1,1,1) + _SpecularPower ("Specular", Range(0,4)) = 2.0 + _Reflectivity ("Reflectivity", Range(5.0,15.0)) = 10 + _Diffuse ("Diffuse", Range(0,1)) = 0.5 + _Ambient ("Ambient", Range(1,0)) = 0.5 + + _BumpMap ("Normal map", 2D) = "bump" {} + _BumpOutline ("Bump Outline", Range(0,1)) = 0 + _BumpFace ("Bump Face", Range(0,1)) = 0 + + _ReflectFaceColor ("Reflection Color", Color) = (0,0,0,1) + _ReflectOutlineColor("Reflection Color", Color) = (0,0,0,1) + _Cube ("Reflection Cubemap", Cube) = "black" { /* TexGen CubeReflect */ } + _EnvMatrixRotation ("Texture Rotation", vector) = (0, 0, 0, 0) + + + _UnderlayColor ("Border Color", Color) = (0,0,0, 0.5) + _UnderlayOffsetX ("Border OffsetX", Range(-1,1)) = 0 + _UnderlayOffsetY ("Border OffsetY", Range(-1,1)) = 0 + _UnderlayDilate ("Border Dilate", Range(-1,1)) = 0 + _UnderlaySoftness ("Border Softness", Range(0,1)) = 0 + + _GlowColor ("Color", Color) = (0, 1, 0, 0.5) + _GlowOffset ("Offset", Range(-1,1)) = 0 + _GlowInner ("Inner", Range(0,1)) = 0.05 + _GlowOuter ("Outer", Range(0,1)) = 0.05 + _GlowPower ("Falloff", Range(1, 0)) = 0.75 + + _WeightNormal ("Weight Normal", float) = 0 + _WeightBold ("Weight Bold", float) = 0.5 + + _ShaderFlags ("Flags", float) = 0 + _ScaleRatioA ("Scale RatioA", float) = 1 + _ScaleRatioB ("Scale RatioB", float) = 1 + _ScaleRatioC ("Scale RatioC", float) = 1 + + _MainTex ("Font Atlas", 2D) = "white" {} + _TextureWidth ("Texture Width", float) = 512 + _TextureHeight ("Texture Height", float) = 512 + _GradientScale ("Gradient Scale", float) = 5.0 + _ScaleX ("Scale X", float) = 1.0 + _ScaleY ("Scale Y", float) = 1.0 + _PerspectiveFilter ("Perspective Correction", Range(0, 1)) = 0.875 + _Sharpness ("Sharpness", Range(-1,1)) = 0 + + _VertexOffsetX ("Vertex OffsetX", float) = 0 + _VertexOffsetY ("Vertex OffsetY", float) = 0 + + _MaskCoord ("Mask Coordinates", vector) = (0, 0, 32767, 32767) + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + _MaskSoftnessX ("Mask SoftnessX", float) = 0 + _MaskSoftnessY ("Mask SoftnessY", float) = 0 + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 +} + +SubShader { + + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + ZWrite Off + Lighting Off + Fog { Mode Off } + ZTest [unity_GUIZTestMode] + Blend One OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass { + CGPROGRAM + #pragma target 3.0 + #pragma vertex VertShader + #pragma fragment PixShader + #pragma shader_feature __ BEVEL_ON + #pragma shader_feature __ UNDERLAY_ON UNDERLAY_INNER + #pragma shader_feature __ GLOW_ON + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + #include "TMPro_Properties.cginc" + #include "TMPro.cginc" + + struct vertex_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + fixed4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; + }; + + struct pixel_t + { + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + fixed4 color : COLOR; + float2 atlas : TEXCOORD0; // Atlas + float4 param : TEXCOORD1; // alphaClip, scale, bias, weight + float4 mask : TEXCOORD2; // Position in object space(xy), pixel Size(zw) + float3 viewDir : TEXCOORD3; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 texcoord2 : TEXCOORD4; // u,v, scale, bias + fixed4 underlayColor : COLOR1; + #endif + + float4 textures : TEXCOORD5; + }; + + // Used by Unity internally to handle Texture Tiling and Offset. + float4 _FaceTex_ST; + float4 _OutlineTex_ST; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + pixel_t VertShader(vertex_t input) + { + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input,output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float2 pixelSize = vPosition.w; + pixelSize /= float2(_ScaleX, _ScaleY) * abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(input.texcoord0.w) * _GradientScale * (_Sharpness + 1); + if (UNITY_MATRIX_P[3][3] == 0) scale = lerp(abs(scale) * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(input.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + float bias =(.5 - weight) + (.5 / scale); + + float alphaClip = (1.0 - _OutlineWidth * _ScaleRatioA - _OutlineSoftness * _ScaleRatioA); + + #if GLOW_ON + alphaClip = min(alphaClip, 1.0 - _GlowOffset * _ScaleRatioB - _GlowOuter * _ScaleRatioB); + #endif + + alphaClip = alphaClip / 2.0 - ( .5 / scale) - weight; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float bScale = scale; + bScale /= 1 + ((_UnderlaySoftness*_ScaleRatioC) * bScale); + float bBias = (0.5 - weight) * bScale - 0.5 - ((_UnderlayDilate * _ScaleRatioC) * 0.5 * bScale); + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + float2 bOffset = float2(x, y); + #endif + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + // Support for texture tiling and offset + float2 textureUV = input.texcoord1; + float2 faceUV = TRANSFORM_TEX(textureUV, _FaceTex); + float2 outlineUV = TRANSFORM_TEX(textureUV, _OutlineTex); + + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + input.color.rgb = UIGammaToLinear(input.color.rgb); + } + output.position = vPosition; + output.color = input.color; + output.atlas = input.texcoord0; + output.param = float4(alphaClip, scale, bias, weight); + const half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + output.mask = half4(vert.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * maskSoftness + pixelSize.xy)); + output.viewDir = mul((float3x3)_EnvMatrix, _WorldSpaceCameraPos.xyz - mul(unity_ObjectToWorld, vert).xyz); + #if (UNDERLAY_ON || UNDERLAY_INNER) + output.texcoord2 = float4(input.texcoord0 + bOffset, bScale, bBias); + output.underlayColor = underlayColor; + #endif + output.textures = float4(faceUV, outlineUV); + + return output; + } + + + fixed4 PixShader(pixel_t input) : SV_Target + { + UNITY_SETUP_INSTANCE_ID(input); + + float c = tex2D(_MainTex, input.atlas).a; + + #ifndef UNDERLAY_ON + clip(c - input.param.x); + #endif + + float scale = input.param.y; + float bias = input.param.z; + float weight = input.param.w; + float sd = (bias - c) * scale; + + float outline = (_OutlineWidth * _ScaleRatioA) * scale; + float softness = (_OutlineSoftness * _ScaleRatioA) * scale; + + half4 faceColor = _FaceColor; + half4 outlineColor = _OutlineColor; + + faceColor.rgb *= input.color.rgb; + + faceColor *= tex2D(_FaceTex, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y); + outlineColor *= tex2D(_OutlineTex, input.textures.zw + float2(_OutlineUVSpeedX, _OutlineUVSpeedY) * _Time.y); + + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + + #if BEVEL_ON + float3 dxy = float3(0.5 / _TextureWidth, 0.5 / _TextureHeight, 0); + float3 n = GetSurfaceNormal(input.atlas, weight, dxy); + + float3 bump = UnpackNormal(tex2D(_BumpMap, input.textures.xy + float2(_FaceUVSpeedX, _FaceUVSpeedY) * _Time.y)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + n = normalize(n- bump); + + float3 light = normalize(float3(sin(_LightAngle), cos(_LightAngle), -1.0)); + + float3 col = GetSpecular(n, light); + faceColor.rgb += col*faceColor.a; + faceColor.rgb *= 1-(dot(n, light)*_Diffuse); + faceColor.rgb *= lerp(_Ambient, 1, n.z*n.z); + + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDir, -n)); + faceColor.rgb += reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; + #endif + + #if UNDERLAY_ON + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * saturate(d - input.texcoord2.w) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float d = tex2D(_MainTex, input.texcoord2.xy).a * input.texcoord2.z; + faceColor += input.underlayColor * (1 - saturate(d - input.texcoord2.w)) * saturate(1 - sd) * (1 - faceColor.a); + #endif + + #if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + faceColor.rgb += glowColor.rgb * glowColor.a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness. + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * input.mask.zw); + faceColor *= m.x * m.y; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor * input.color.a; + } + ENDCG + } +} + +Fallback "TextMeshPro/Mobile/Distance Field" +CustomEditor "TMPro.EditorUtilities.TMP_SDFShaderGUI" +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta new file mode 100644 index 0000000..e1cf3f3 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 68e6db2ebdc24f95958faec2be5558d6 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader new file mode 100644 index 0000000..4012a08 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader @@ -0,0 +1,131 @@ +Shader "TextMeshPro/Sprite" +{ + Properties + { + _MainTex ("Sprite Texture", 2D) = "white" {} + _Color ("Tint", Color) = (1,1,1,1) + + _StencilComp ("Stencil Comparison", Float) = 8 + _Stencil ("Stencil ID", Float) = 0 + _StencilOp ("Stencil Operation", Float) = 0 + _StencilWriteMask ("Stencil Write Mask", Float) = 255 + _StencilReadMask ("Stencil Read Mask", Float) = 255 + + _CullMode ("Cull Mode", Float) = 0 + _ColorMask ("Color Mask", Float) = 15 + _ClipRect ("Clip Rect", vector) = (-32767, -32767, 32767, 32767) + + [Toggle(UNITY_UI_ALPHACLIP)] _UseUIAlphaClip ("Use Alpha Clip", Float) = 0 + } + + SubShader + { + Tags + { + "Queue"="Transparent" + "IgnoreProjector"="True" + "RenderType"="Transparent" + "PreviewType"="Plane" + "CanUseSpriteAtlas"="True" + } + + Stencil + { + Ref [_Stencil] + Comp [_StencilComp] + Pass [_StencilOp] + ReadMask [_StencilReadMask] + WriteMask [_StencilWriteMask] + } + + Cull [_CullMode] + Lighting Off + ZWrite Off + ZTest [unity_GUIZTestMode] + Blend SrcAlpha OneMinusSrcAlpha + ColorMask [_ColorMask] + + Pass + { + Name "Default" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + #pragma target 2.0 + + #include "UnityCG.cginc" + #include "UnityUI.cginc" + + #pragma multi_compile __ UNITY_UI_CLIP_RECT + #pragma multi_compile __ UNITY_UI_ALPHACLIP + + struct appdata_t + { + float4 vertex : POSITION; + float4 color : COLOR; + float2 texcoord : TEXCOORD0; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f + { + float4 vertex : SV_POSITION; + fixed4 color : COLOR; + float2 texcoord : TEXCOORD0; + float4 worldPosition : TEXCOORD1; + float4 mask : TEXCOORD2; + UNITY_VERTEX_OUTPUT_STEREO + }; + + sampler2D _MainTex; + fixed4 _Color; + fixed4 _TextureSampleAdd; + float4 _ClipRect; + float4 _MainTex_ST; + float _UIMaskSoftnessX; + float _UIMaskSoftnessY; + int _UIVertexColorAlwaysGammaSpace; + + v2f vert(appdata_t v) + { + v2f OUT; + UNITY_SETUP_INSTANCE_ID(v); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(OUT); + float4 vPosition = UnityObjectToClipPos(v.vertex); + OUT.worldPosition = v.vertex; + OUT.vertex = vPosition; + + float2 pixelSize = vPosition.w; + pixelSize /= abs(mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy)); + + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + OUT.texcoord = TRANSFORM_TEX(v.texcoord, _MainTex); + OUT.mask = half4(v.vertex.xy * 2 - clampedRect.xy - clampedRect.zw, 0.25 / (0.25 * half2(_UIMaskSoftnessX, _UIMaskSoftnessY) + abs(pixelSize.xy))); + + if (_UIVertexColorAlwaysGammaSpace && !IsGammaSpace()) + { + v.color.rgb = UIGammaToLinear(v.color.rgb); + } + OUT.color = v.color * _Color; + return OUT; + } + + fixed4 frag(v2f IN) : SV_Target + { + half4 color = (tex2D(_MainTex, IN.texcoord) + _TextureSampleAdd) * IN.color; + + #if UNITY_UI_CLIP_RECT + half2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(IN.mask.xy)) * IN.mask.zw); + color *= m.x * m.y; + #endif + + #ifdef UNITY_UI_ALPHACLIP + clip (color.a - 0.001); + #endif + + return color; + } + ENDCG + } + } +} diff --git a/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta new file mode 100644 index 0000000..50ba195 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: cf81c85f95fe47e1a27f6ae460cf182c +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro.cginc b/Assets/TextMesh Pro/Shaders/TMPro.cginc new file mode 100644 index 0000000..5898130 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro.cginc @@ -0,0 +1,84 @@ +float2 UnpackUV(float uv) +{ + float2 output; + output.x = floor(uv / 4096); + output.y = uv - 4096 * output.x; + + return output * 0.001953125; +} + +fixed4 GetColor(half d, fixed4 faceColor, fixed4 outlineColor, half outline, half softness) +{ + half faceAlpha = 1-saturate((d - outline * 0.5 + softness * 0.5) / (1.0 + softness)); + half outlineAlpha = saturate((d + outline * 0.5)) * sqrt(min(1.0, outline)); + + faceColor.rgb *= faceColor.a; + outlineColor.rgb *= outlineColor.a; + + faceColor = lerp(faceColor, outlineColor, outlineAlpha); + + faceColor *= faceAlpha; + + return faceColor; +} + +float3 GetSurfaceNormal(float4 h, float bias) +{ + bool raisedBevel = step(1, fmod(_ShaderFlags, 2)); + + h += bias+_BevelOffset; + + float bevelWidth = max(.01, _OutlineWidth+_BevelWidth); + + // Track outline + h -= .5; + h /= bevelWidth; + h = saturate(h+.5); + + if(raisedBevel) h = 1 - abs(h*2.0 - 1.0); + h = lerp(h, sin(h*3.141592/2.0), _BevelRoundness); + h = min(h, 1.0-_BevelClamp); + h *= _Bevel * bevelWidth * _GradientScale * -2.0; + + float3 va = normalize(float3(1.0, 0.0, h.y - h.x)); + float3 vb = normalize(float3(0.0, -1.0, h.w - h.z)); + + return cross(va, vb); +} + +float3 GetSurfaceNormal(float2 uv, float bias, float3 delta) +{ + // Read "height field" + float4 h = {tex2D(_MainTex, uv - delta.xz).a, + tex2D(_MainTex, uv + delta.xz).a, + tex2D(_MainTex, uv - delta.zy).a, + tex2D(_MainTex, uv + delta.zy).a}; + + return GetSurfaceNormal(h, bias); +} + +float3 GetSpecular(float3 n, float3 l) +{ + float spec = pow(max(0.0, dot(n, l)), _Reflectivity); + return _SpecularColor.rgb * spec * _SpecularPower; +} + +float4 GetGlowColor(float d, float scale) +{ + float glow = d - (_GlowOffset*_ScaleRatioB) * 0.5 * scale; + float t = lerp(_GlowInner, (_GlowOuter * _ScaleRatioB), step(0.0, glow)) * 0.5 * scale; + glow = saturate(abs(glow/(1.0 + t))); + glow = 1.0-pow(glow, _GlowPower); + glow *= sqrt(min(1.0, t)); // Fade off glow thinner than 1 screen pixel + return float4(_GlowColor.rgb, saturate(_GlowColor.a * glow * 2)); +} + +float4 BlendARGB(float4 overlying, float4 underlying) +{ + overlying.rgb *= overlying.a; + underlying.rgb *= underlying.a; + float3 blended = overlying.rgb + ((1-overlying.a)*underlying.rgb); + float alpha = underlying.a + (1-underlying.a)*overlying.a; + return float4(blended, alpha); +} + diff --git a/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta new file mode 100644 index 0000000..f21163e --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 407bc68d299748449bbf7f48ee690f8d +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: Version 2.0 + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc new file mode 100644 index 0000000..d145a77 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc @@ -0,0 +1,165 @@ +struct vertex_t +{ + UNITY_VERTEX_INPUT_INSTANCE_ID + float4 position : POSITION; + float3 normal : NORMAL; + float4 color : COLOR; + float4 texcoord0 : TEXCOORD0; + float2 texcoord1 : TEXCOORD1; +}; + +struct pixel_t +{ + UNITY_VERTEX_INPUT_INSTANCE_ID + UNITY_VERTEX_OUTPUT_STEREO + float4 position : SV_POSITION; + float4 faceColor : COLOR; + float4 outlineColor : COLOR1; + float4 texcoord0 : TEXCOORD0; + float4 param : TEXCOORD1; // x = weight, y = no longer used + float2 mask : TEXCOORD2; + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 texcoord2 : TEXCOORD3; + float4 underlayColor : COLOR2; + #endif +}; + +float4 SRGBToLinear(float4 rgba) +{ + return float4(lerp(rgba.rgb / 12.92f, pow((rgba.rgb + 0.055f) / 1.055f, 2.4f), step(0.04045f, rgba.rgb)), rgba.a); +} + +float _UIMaskSoftnessX; +float _UIMaskSoftnessY; + +pixel_t VertShader(vertex_t input) +{ + pixel_t output; + + UNITY_INITIALIZE_OUTPUT(pixel_t, output); + UNITY_SETUP_INSTANCE_ID(input); + UNITY_TRANSFER_INSTANCE_ID(input, output); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float bold = step(input.texcoord0.w, 0); + + float4 vert = input.position; + vert.x += _VertexOffsetX; + vert.y += _VertexOffsetY; + + float4 vPosition = UnityObjectToClipPos(vert); + + float weight = lerp(_WeightNormal, _WeightBold, bold) / 4.0; + weight = (weight + _FaceDilate) * _ScaleRatioA * 0.5; + + // Generate UV for the Masking Texture + float4 clampedRect = clamp(_ClipRect, -2e10, 2e10); + float2 maskUV = (vert.xy - clampedRect.xy) / (clampedRect.zw - clampedRect.xy); + + float4 color = input.color; + #if (FORCE_LINEAR && !UNITY_COLORSPACE_GAMMA) + color = SRGBToLinear(input.color); + #endif + + float opacity = color.a; + #if (UNDERLAY_ON | UNDERLAY_INNER) + opacity = 1.0; + #endif + + float4 faceColor = float4(color.rgb, opacity) * _FaceColor; + faceColor.rgb *= faceColor.a; + + float4 outlineColor = _OutlineColor; + outlineColor.a *= opacity; + outlineColor.rgb *= outlineColor.a; + + output.position = vPosition; + output.faceColor = faceColor; + output.outlineColor = outlineColor; + output.texcoord0 = float4(input.texcoord0.xy, maskUV.xy); + output.param = float4(0.5 - weight, 0, _OutlineWidth * _ScaleRatioA * 0.5, 0); + + float2 mask = float2(0, 0); + #if UNITY_UI_CLIP_RECT + mask = vert.xy * 2 - clampedRect.xy - clampedRect.zw; + #endif + output.mask = mask; + + #if (UNDERLAY_ON || UNDERLAY_INNER) + float4 underlayColor = _UnderlayColor; + underlayColor.rgb *= underlayColor.a; + + float x = -(_UnderlayOffsetX * _ScaleRatioC) * _GradientScale / _TextureWidth; + float y = -(_UnderlayOffsetY * _ScaleRatioC) * _GradientScale / _TextureHeight; + + output.texcoord2 = float4(input.texcoord0 + float2(x, y), input.color.a, 0); + output.underlayColor = underlayColor; + #endif + + return output; +} + +float4 PixShader(pixel_t input) : SV_Target +{ + UNITY_SETUP_INSTANCE_ID(input); + + float d = tex2D(_MainTex, input.texcoord0.xy).a; + + float pixelSize = abs(ddx(input.texcoord0.y)) + abs(ddy(input.texcoord0.y)); + pixelSize *= _TextureHeight * 0.75; + float scale = 1 / pixelSize * _GradientScale * (_Sharpness + 1); + + #if (UNDERLAY_ON | UNDERLAY_INNER) + float layerScale = scale; + layerScale /= 1 + ((_UnderlaySoftness * _ScaleRatioC) * layerScale); + float layerBias = input.param.x * layerScale - .5 - ((_UnderlayDilate * _ScaleRatioC) * .5 * layerScale); + #endif + + scale /= 1 + (_OutlineSoftness * _ScaleRatioA * scale); + + float4 faceColor = input.faceColor * saturate((d - input.param.x) * scale + 0.5); + + #if OUTLINE_ON + float4 outlineColor = lerp(input.faceColor, input.outlineColor, sqrt(min(1.0, input.param.z * scale * 2))); + faceColor = lerp(outlineColor, input.faceColor, saturate((d - input.param.x - input.param.z) * scale + 0.5)); + faceColor *= saturate((d - input.param.x + input.param.z) * scale + 0.5); + #endif + + #if UNDERLAY_ON + d = tex2D(_MainTex, input.texcoord2.xy).a * layerScale; + faceColor += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * saturate(d - layerBias) * (1 - faceColor.a); + #endif + + #if UNDERLAY_INNER + float bias = input.param.x * scale - 0.5; + float sd = saturate(d * scale - bias - input.param.z); + d = tex2D(_MainTex, input.texcoord2.xy).a * layerScale; + faceColor += float4(_UnderlayColor.rgb * _UnderlayColor.a, _UnderlayColor.a) * (1 - saturate(d - layerBias)) * sd * (1 - faceColor.a); + #endif + + #if MASKING + float a = abs(_MaskInverse - tex2D(_MaskTex, input.texcoord0.zw).a); + float t = a + (1 - _MaskWipeControl) * _MaskEdgeSoftness - _MaskWipeControl; + a = saturate(t / _MaskEdgeSoftness); + faceColor.rgb = lerp(_MaskEdgeColor.rgb * faceColor.a, faceColor.rgb, a); + faceColor *= a; + #endif + + // Alternative implementation to UnityGet2DClipping with support for softness + #if UNITY_UI_CLIP_RECT + half2 maskSoftness = half2(max(_UIMaskSoftnessX, _MaskSoftnessX), max(_UIMaskSoftnessY, _MaskSoftnessY)); + float2 maskZW = 0.25 / (0.25 * maskSoftness + 1 / scale); + float2 m = saturate((_ClipRect.zw - _ClipRect.xy - abs(input.mask.xy)) * maskZW); + faceColor *= m.x * m.y; + #endif + + #if (UNDERLAY_ON | UNDERLAY_INNER) + faceColor *= input.texcoord2.z; + #endif + + #if UNITY_UI_ALPHACLIP + clip(faceColor.a - 0.001); + #endif + + return faceColor; +} diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta new file mode 100644 index 0000000..4415e50 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: c334973cef89a9840b0b0c507e0377ab +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc new file mode 100644 index 0000000..b806b4f --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc @@ -0,0 +1,80 @@ +// UI Editable properties +uniform sampler2D _FaceTex; // Alpha : Signed Distance +uniform float _FaceUVSpeedX; +uniform float _FaceUVSpeedY; +uniform fixed4 _FaceColor; // RGBA : Color + Opacity +uniform float _FaceDilate; // v[ 0, 1] +uniform float _OutlineSoftness; // v[ 0, 1] + +uniform sampler2D _OutlineTex; // RGBA : Color + Opacity +uniform float _OutlineUVSpeedX; +uniform float _OutlineUVSpeedY; +uniform fixed4 _OutlineColor; // RGBA : Color + Opacity +uniform float _OutlineWidth; // v[ 0, 1] + +uniform float _Bevel; // v[ 0, 1] +uniform float _BevelOffset; // v[-1, 1] +uniform float _BevelWidth; // v[-1, 1] +uniform float _BevelClamp; // v[ 0, 1] +uniform float _BevelRoundness; // v[ 0, 1] + +uniform sampler2D _BumpMap; // Normal map +uniform float _BumpOutline; // v[ 0, 1] +uniform float _BumpFace; // v[ 0, 1] + +uniform samplerCUBE _Cube; // Cube / sphere map +uniform fixed4 _ReflectFaceColor; // RGB intensity +uniform fixed4 _ReflectOutlineColor; +//uniform float _EnvTiltX; // v[-1, 1] +//uniform float _EnvTiltY; // v[-1, 1] +uniform float3 _EnvMatrixRotation; +uniform float4x4 _EnvMatrix; + +uniform fixed4 _SpecularColor; // RGB intensity +uniform float _LightAngle; // v[ 0,Tau] +uniform float _SpecularPower; // v[ 0, 1] +uniform float _Reflectivity; // v[ 5, 15] +uniform float _Diffuse; // v[ 0, 1] +uniform float _Ambient; // v[ 0, 1] + +uniform fixed4 _UnderlayColor; // RGBA : Color + Opacity +uniform float _UnderlayOffsetX; // v[-1, 1] +uniform float _UnderlayOffsetY; // v[-1, 1] +uniform float _UnderlayDilate; // v[-1, 1] +uniform float _UnderlaySoftness; // v[ 0, 1] + +uniform fixed4 _GlowColor; // RGBA : Color + Intesity +uniform float _GlowOffset; // v[-1, 1] +uniform float _GlowOuter; // v[ 0, 1] +uniform float _GlowInner; // v[ 0, 1] +uniform float _GlowPower; // v[ 1, 1/(1+4*4)] + +// API Editable properties +uniform float _ShaderFlags; +uniform float _WeightNormal; +uniform float _WeightBold; + +uniform float _ScaleRatioA; +uniform float _ScaleRatioB; +uniform float _ScaleRatioC; + +uniform float _VertexOffsetX; +uniform float _VertexOffsetY; + +//uniform float _UseClipRect; +uniform float _MaskID; +uniform sampler2D _MaskTex; +uniform float4 _MaskCoord; +uniform float4 _ClipRect; // bottom left(x,y) : top right(z,w) +uniform float _MaskSoftnessX; +uniform float _MaskSoftnessY; + +// Font Atlas properties +uniform sampler2D _MainTex; +uniform float _TextureWidth; +uniform float _TextureHeight; +uniform float _GradientScale; +uniform float _ScaleX; +uniform float _ScaleY; +uniform float _PerspectiveFilter; +uniform float _Sharpness; diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta new file mode 100644 index 0000000..7b37f2f --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 3997e2241185407d80309a82f9148466 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc new file mode 100644 index 0000000..2153a9a --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc @@ -0,0 +1,99 @@ +void VertShader(inout appdata_full v, out Input data) +{ + v.vertex.x += _VertexOffsetX; + v.vertex.y += _VertexOffsetY; + + UNITY_INITIALIZE_OUTPUT(Input, data); + + float bold = step(v.texcoord.w, 0); + + // Generate normal for backface + float3 view = ObjSpaceViewDir(v.vertex); + v.normal *= sign(dot(v.normal, view)); + +#if USE_DERIVATIVE + data.param.y = 1; +#else + float4 vert = v.vertex; + float4 vPosition = UnityObjectToClipPos(vert); + float2 pixelSize = vPosition.w; + + pixelSize /= float2(_ScaleX, _ScaleY) * mul((float2x2)UNITY_MATRIX_P, _ScreenParams.xy); + float scale = rsqrt(dot(pixelSize, pixelSize)); + scale *= abs(v.texcoord.w) * _GradientScale * (_Sharpness + 1); + scale = lerp(scale * (1 - _PerspectiveFilter), scale, abs(dot(UnityObjectToWorldNormal(v.normal.xyz), normalize(WorldSpaceViewDir(vert))))); + data.param.y = scale; +#endif + + data.param.x = (lerp(_WeightNormal, _WeightBold, bold) / 4.0 + _FaceDilate) * _ScaleRatioA * 0.5; // + data.viewDirEnv = mul((float3x3)_EnvMatrix, WorldSpaceViewDir(v.vertex)); +} + +void PixShader(Input input, inout SurfaceOutput o) +{ + +#if USE_DERIVATIVE + float2 pixelSize = float2(ddx(input.uv_MainTex.y), ddy(input.uv_MainTex.y)); + pixelSize *= _TextureWidth * .75; + float scale = rsqrt(dot(pixelSize, pixelSize)) * _GradientScale * (_Sharpness + 1); +#else + float scale = input.param.y; +#endif + + // Signed distance + float c = tex2D(_MainTex, input.uv_MainTex).a; + float sd = (.5 - c - input.param.x) * scale + .5; + float outline = _OutlineWidth*_ScaleRatioA * scale; + float softness = _OutlineSoftness*_ScaleRatioA * scale; + + // Color & Alpha + float4 faceColor = _FaceColor; + float4 outlineColor = _OutlineColor; + faceColor *= input.color; + outlineColor.a *= input.color.a; + faceColor *= tex2D(_FaceTex, float2(input.uv2_FaceTex.x + _FaceUVSpeedX * _Time.y, input.uv2_FaceTex.y + _FaceUVSpeedY * _Time.y)); + outlineColor *= tex2D(_OutlineTex, float2(input.uv2_OutlineTex.x + _OutlineUVSpeedX * _Time.y, input.uv2_OutlineTex.y + _OutlineUVSpeedY * _Time.y)); + faceColor = GetColor(sd, faceColor, outlineColor, outline, softness); + faceColor.rgb /= max(faceColor.a, 0.0001); + +#if BEVEL_ON + float3 delta = float3(1.0 / _TextureWidth, 1.0 / _TextureHeight, 0.0); + + float4 smp4x = {tex2D(_MainTex, input.uv_MainTex - delta.xz).a, + tex2D(_MainTex, input.uv_MainTex + delta.xz).a, + tex2D(_MainTex, input.uv_MainTex - delta.zy).a, + tex2D(_MainTex, input.uv_MainTex + delta.zy).a }; + + // Face Normal + float3 n = GetSurfaceNormal(smp4x, input.param.x); + + // Bumpmap + float3 bump = UnpackNormal(tex2D(_BumpMap, input.uv2_FaceTex.xy)).xyz; + bump *= lerp(_BumpFace, _BumpOutline, saturate(sd + outline * 0.5)); + bump = lerp(float3(0, 0, 1), bump, faceColor.a); + n = normalize(n - bump); + + // Cubemap reflection + fixed4 reflcol = texCUBE(_Cube, reflect(input.viewDirEnv, mul((float3x3)unity_ObjectToWorld, n))); + float3 emission = reflcol.rgb * lerp(_ReflectFaceColor.rgb, _ReflectOutlineColor.rgb, saturate(sd + outline * 0.5)) * faceColor.a; +#else + float3 n = float3(0, 0, -1); + float3 emission = float3(0, 0, 0); +#endif + +#if GLOW_ON + float4 glowColor = GetGlowColor(sd, scale); + glowColor.a *= input.color.a; + emission += glowColor.rgb*glowColor.a; + faceColor = BlendARGB(glowColor, faceColor); + faceColor.rgb /= max(faceColor.a, 0.0001); +#endif + + // Set Standard output structure + o.Albedo = faceColor.rgb; + o.Normal = -n; + o.Emission = emission; + o.Specular = lerp(_FaceShininess, _OutlineShininess, saturate(sd + outline * 0.5)); + o.Gloss = 1; + o.Alpha = faceColor.a; +} diff --git a/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta new file mode 100644 index 0000000..41ef4b1 --- /dev/null +++ b/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: d930090c0cd643c7b55f19a38538c162 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites.meta b/Assets/TextMesh Pro/Sprites.meta new file mode 100644 index 0000000..8b699e5 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d0603b6d5186471b96c778c3949c7ce2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt new file mode 100644 index 0000000..384180a --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt @@ -0,0 +1,3 @@ +This sample of beautiful emojis are provided by EmojiOne https://www.emojione.com/ + +Please visit their website to view the complete set of their emojis and review their licensing terms. \ No newline at end of file diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta new file mode 100644 index 0000000..0d30e65 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 381dcb09d5029d14897e55f98031fca5 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.json b/Assets/TextMesh Pro/Sprites/EmojiOne.json new file mode 100644 index 0000000..6c4e50b --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.json @@ -0,0 +1,156 @@ +{"frames": [ + +{ + "filename": "1f60a.png", + "frame": {"x":0,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f60b.png", + "frame": {"x":128,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f60d.png", + "frame": {"x":256,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f60e.png", + "frame": {"x":384,"y":0,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f600.png", + "frame": {"x":0,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f601.png", + "frame": {"x":128,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f602.png", + "frame": {"x":256,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f603.png", + "frame": {"x":384,"y":128,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f604.png", + "frame": {"x":0,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f605.png", + "frame": {"x":128,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f606.png", + "frame": {"x":256,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f609.png", + "frame": {"x":384,"y":256,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f618.png", + "frame": {"x":0,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "1f923.png", + "frame": {"x":128,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "263a.png", + "frame": {"x":256,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}, +{ + "filename": "2639.png", + "frame": {"x":384,"y":384,"w":128,"h":128}, + "rotated": false, + "trimmed": false, + "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, + "sourceSize": {"w":128,"h":128}, + "pivot": {"x":0.5,"y":0.5} +}], +"meta": { + "app": "http://www.codeandweb.com/texturepacker", + "version": "1.0", + "image": "EmojiOne.png", + "format": "RGBA8888", + "size": {"w":512,"h":512}, + "scale": "1", + "smartupdate": "$TexturePacker:SmartUpdate:196a26a2e149d875b91ffc8fa3581e76:fc928c7e275404b7e0649307410475cb:424723c3774975ddb2053fd5c4b85f6e$" +} +} diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta b/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta new file mode 100644 index 0000000..762cf15 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8f05276190cf498a8153f6cbe761d4e6 +timeCreated: 1480316860 +licenseType: Pro +TextScriptImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.png b/Assets/TextMesh Pro/Sprites/EmojiOne.png new file mode 100644 index 0000000..63e49d0 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a87b965a701de3dc31d7401e542b1fc946587f912c51d7a26e46ade9f098bd1a +size 112319 diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta b/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta new file mode 100644 index 0000000..c9fa1a7 --- /dev/null +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta @@ -0,0 +1,431 @@ +fileFormatVersion: 2 +guid: dffef66376be4fa480fb02b19edbe903 +TextureImporter: + fileIDToRecycleName: + 21300000: EmojiOne_0 + 21300002: EmojiOne_1 + 21300004: EmojiOne_2 + 21300006: EmojiOne_3 + 21300008: EmojiOne_4 + 21300010: EmojiOne_6 + 21300012: EmojiOne_7 + 21300014: EmojiOne_8 + 21300016: EmojiOne_9 + 21300018: EmojiOne_10 + 21300020: EmojiOne_11 + 21300022: EmojiOne_12 + 21300024: EmojiOne_13 + 21300026: EmojiOne_5 + 21300028: EmojiOne_14 + externalObjects: {} + serializedVersion: 5 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + 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 + isReadable: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: -1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: -1 + aniso: -1 + mipBias: -1 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 2 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spritePixelsToUnits: 100 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 0 + textureShape: 1 + singleChannelComponent: 0 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + platformSettings: + - serializedVersion: 2 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Standalone + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: iPhone + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + - serializedVersion: 2 + buildTarget: Android + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + spriteSheet: + serializedVersion: 2 + sprites: + - serializedVersion: 2 + name: EmojiOne_0 + rect: + serializedVersion: 2 + x: 0 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 4bcc36da2108f2c4ba3de5c921d25c3c + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_1 + rect: + serializedVersion: 2 + x: 128 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: e9eea8093eaeaee4d901c4553f572c22 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_2 + rect: + serializedVersion: 2 + x: 256 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 49451da35411dcc42a3692e39b0fde70 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_3 + rect: + serializedVersion: 2 + x: 384 + y: 384 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f65709664b924904790c850a50ca82bc + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_4 + rect: + serializedVersion: 2 + x: 0 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 5b92c568a5ec9ad4b9ed90e271f1c9a8 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_6 + rect: + serializedVersion: 2 + x: 256 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b10f2b48b7281594bb8a24a6511a35af + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_7 + rect: + serializedVersion: 2 + x: 384 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 10a600f9329dc2246a897e89f4d283cd + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_8 + rect: + serializedVersion: 2 + x: 0 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 66cffa363b90ab14787d8a5b90cf4502 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_9 + rect: + serializedVersion: 2 + x: 128 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 55cf3d409c9b89349b1e1bdc1cc224ad + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_10 + rect: + serializedVersion: 2 + x: 256 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2a9e58eaf96feef42bcefa1cf257193f + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_11 + rect: + serializedVersion: 2 + x: 384 + y: 128 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 2489120affc155840ae6a7be2e93ce19 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_12 + rect: + serializedVersion: 2 + x: 0 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: 412349a150598d14da4d7140df5c0286 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_13 + rect: + serializedVersion: 2 + x: 128 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0.5, y: 0.5} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: a937464b42bb3634782dea34c6becb6c + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_5 + rect: + serializedVersion: 2 + x: 256 + y: 0 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: b0f933b217682124dbfc5e6b89abe3d0 + vertices: [] + indices: + edges: [] + weights: [] + - serializedVersion: 2 + name: EmojiOne_14 + rect: + serializedVersion: 2 + x: 128 + y: 256 + width: 128 + height: 128 + alignment: 0 + pivot: {x: 0, y: 0} + border: {x: 0, y: 0, z: 0, w: 0} + outline: [] + physicsShape: [] + tessellationDetail: 0 + bones: [] + spriteID: f7235c763afe4434e8bb666750a41096 + vertices: [] + indices: + edges: [] + weights: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 3e32d8f5477abfc43b19066e8ad5032e + vertices: [] + indices: + edges: [] + weights: [] + spritePackingTag: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Packages/manifest.json b/Packages/manifest.json new file mode 100644 index 0000000..764a38d --- /dev/null +++ b/Packages/manifest.json @@ -0,0 +1,52 @@ +{ + "dependencies": { + "com.unity.2d.sprite": "1.0.0", + "com.unity.2d.tilemap": "1.0.0", + "com.unity.2d.tilemap.extras": "6.0.3", + "com.unity.ai.navigation": "2.0.14", + "com.unity.collab-proxy": "2.13.6", + "com.unity.ide.rider": "3.0.40", + "com.unity.ide.visualstudio": "2.0.26", + "com.unity.inputsystem": "1.20.0", + "com.unity.multiplayer.center": "1.0.1", + "com.unity.render-pipelines.universal": "17.3.0", + "com.unity.test-framework": "1.6.0", + "com.unity.timeline": "1.8.13", + "com.unity.ugui": "2.0.0", + "com.unity.visualscripting": "1.9.12", + "com.unity.modules.accessibility": "1.0.0", + "com.unity.modules.adaptiveperformance": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vectorgraphics": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } +} diff --git a/Packages/packages-lock.json b/Packages/packages-lock.json new file mode 100644 index 0000000..7b65c23 --- /dev/null +++ b/Packages/packages-lock.json @@ -0,0 +1,498 @@ +{ + "dependencies": { + "com.unity.2d.sprite": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.2d.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.uielements": "1.0.0" + } + }, + "com.unity.2d.tilemap.extras": { + "version": "6.0.3", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.2d.tilemap": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ai.navigation": { + "version": "2.0.14", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.ai": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.burst": { + "version": "1.8.30", + "depth": 2, + "source": "registry", + "dependencies": { + "com.unity.mathematics": "1.2.1", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.collab-proxy": { + "version": "2.13.6", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.collections": { + "version": "2.6.8", + "depth": 2, + "source": "registry", + "dependencies": { + "com.unity.burst": "1.8.29", + "com.unity.mathematics": "1.3.2", + "com.unity.test-framework": "1.4.6", + "com.unity.nuget.mono-cecil": "1.11.6", + "com.unity.test-framework.performance": "3.0.3" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "2.0.5", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, + "com.unity.ide.rider": { + "version": "3.0.40", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.26", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.33" + }, + "url": "https://packages.unity.com" + }, + "com.unity.inputsystem": { + "version": "1.20.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.mathematics": { + "version": "1.3.3", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.multiplayer.center": { + "version": "1.0.1", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + } + }, + "com.unity.nuget.mono-cecil": { + "version": "1.11.6", + "depth": 3, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.render-pipelines.core": { + "version": "17.3.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.burst": "1.8.14", + "com.unity.mathematics": "1.3.2", + "com.unity.ugui": "2.0.0", + "com.unity.collections": "2.4.3", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.render-pipelines.universal": { + "version": "17.3.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.3.0", + "com.unity.shadergraph": "17.3.0", + "com.unity.render-pipelines.universal-config": "17.0.3" + } + }, + "com.unity.render-pipelines.universal-config": { + "version": "17.0.3", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.0.3" + } + }, + "com.unity.searcher": { + "version": "4.9.5", + "depth": 2, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.shadergraph": { + "version": "17.3.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.render-pipelines.core": "17.3.0", + "com.unity.searcher": "4.9.5" + } + }, + "com.unity.test-framework": { + "version": "1.6.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.ext.nunit": "2.0.3", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.test-framework.performance": { + "version": "3.5.0", + "depth": 3, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.33", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.8.13", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "2.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.visualscripting": { + "version": "1.9.12", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "2.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.modules.accessibility": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.adaptiveperformance": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.subsystems": "1.0.0" + } + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.hierarchycore": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.hierarchycore": "1.0.0", + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vectorgraphics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/ProjectSettings/AudioManager.asset b/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..b19c873 --- /dev/null +++ b/ProjectSettings/AudioManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeedeb3243f07b61dbbe854aa08b5ef6f0b5274dd9852ad9f6129dde3e105a31 +size 413 diff --git a/ProjectSettings/ClusterInputManager.asset b/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..53b8289 --- /dev/null +++ b/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40e65dd214bf254955d2c8829ca8ce2130fd3510485560ce012e9a1ddd93e623 +size 114 diff --git a/ProjectSettings/DynamicsManager.asset b/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..104a796 --- /dev/null +++ b/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7c9a9dc08b98990109d4346f68745e15e238de400f96c583e53e1c83c743a78 +size 1254 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..ff99440 --- /dev/null +++ b/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a2aabd3aedadd8f798201a66537bbe8704ac83cbd52cc0fea889c494d7d06f0 +size 401 diff --git a/ProjectSettings/EditorSettings.asset b/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..ed42e15 --- /dev/null +++ b/ProjectSettings/EditorSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32d6a9be4c9aa9795a96bd951820a2d9be1bfefab82ed05a5db111af0863938f +size 1585 diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..e1b67fb --- /dev/null +++ b/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6736f33dc62c35b0e7a88e275242080bc7a1d94c91154d18fceb332b661a6bce +size 2615 diff --git a/ProjectSettings/InputManager.asset b/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..f002ee5 --- /dev/null +++ b/ProjectSettings/InputManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a1bb836a1008d26d0860d143e9d9df7ca41731d30a72901b518063819c62df2 +size 9731 diff --git a/ProjectSettings/MemorySettings.asset b/ProjectSettings/MemorySettings.asset new file mode 100644 index 0000000..cd6af44 --- /dev/null +++ b/ProjectSettings/MemorySettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e8379a461b10ae09f3f696911088c16875d63e87ed5f2d95df9e1892703f9fd +size 1192 diff --git a/ProjectSettings/MultiplayerManager.asset b/ProjectSettings/MultiplayerManager.asset new file mode 100644 index 0000000..a241e60 --- /dev/null +++ b/ProjectSettings/MultiplayerManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aba89fd1a1ddad182727ad82727e536d27372e90328a8196da2a4560398983dd +size 157 diff --git a/ProjectSettings/NavMeshAreas.asset b/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..c788824 --- /dev/null +++ b/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80106cfa7e6181a1928b142c075f3e510d527441e3d79bc83590e4ac91e7cd66 +size 1308 diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..7658c79 --- /dev/null +++ b/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dabba589abe7fc2b45bd3d3fba3fe9be97043492703f716da2d9131c13a807 +size 1003 diff --git a/ProjectSettings/Physics2DSettings.asset b/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..36189c0 --- /dev/null +++ b/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3cbdbf0be15244b7b67d2f07bdb8e8981911c11a8c7fe8035f5261272fec658 +size 2028 diff --git a/ProjectSettings/PresetManager.asset b/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..f781dbe --- /dev/null +++ b/ProjectSettings/PresetManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29c125923fe6e29f90190d4fce1c82d660e7051546e2c9d02908d18c9cf2436c +size 146 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..683a3b9 --- /dev/null +++ b/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3474c92d3689d224b8cdfe4b7341a28ce9e55bbc0d15ee67db0628b7f60e30c9 +size 25628 diff --git a/ProjectSettings/ProjectVersion.txt b/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..d670d0d --- /dev/null +++ b/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 6000.3.24f1 +m_EditorVersionWithRevision: 6000.3.24f1 (4e7b9b5b6244) diff --git a/ProjectSettings/QualitySettings.asset b/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..1b536a9 --- /dev/null +++ b/ProjectSettings/QualitySettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6814d6cc3eb850dd7d2a069a8b17ba9f7591deba8b1758a855978bd9c8627643 +size 3662 diff --git a/ProjectSettings/SceneTemplateSettings.json b/ProjectSettings/SceneTemplateSettings.json new file mode 100644 index 0000000..ede5887 --- /dev/null +++ b/ProjectSettings/SceneTemplateSettings.json @@ -0,0 +1,121 @@ +{ + "templatePinStates": [], + "dependencyTypeInfos": [ + { + "userAdded": false, + "type": "UnityEngine.AnimationClip", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.Animations.AnimatorController", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.AnimatorOverrideController", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.Audio.AudioMixerController", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.ComputeShader", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.Cubemap", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.GameObject", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.LightingDataAsset", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.LightingSettings", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Material", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.MonoScript", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.PhysicsMaterial", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.PhysicsMaterial2D", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Rendering.VolumeProfile", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEditor.SceneAsset", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.Shader", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.ShaderVariantCollection", + "defaultInstantiationMode": 1 + }, + { + "userAdded": false, + "type": "UnityEngine.Texture", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Texture2D", + "defaultInstantiationMode": 0 + }, + { + "userAdded": false, + "type": "UnityEngine.Timeline.TimelineAsset", + "defaultInstantiationMode": 0 + } + ], + "defaultDependencyTypeInfo": { + "userAdded": false, + "type": "", + "defaultInstantiationMode": 1 + }, + "newSceneOverride": 0 +} \ No newline at end of file diff --git a/ProjectSettings/ShaderGraphSettings.asset b/ProjectSettings/ShaderGraphSettings.asset new file mode 100644 index 0000000..30d0e44 --- /dev/null +++ b/ProjectSettings/ShaderGraphSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdba1e5d65bcf6e3269d76ed3e60b6c21f98322002996642c9d74f1eb89f6b91 +size 556 diff --git a/ProjectSettings/TagManager.asset b/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..6d49bef --- /dev/null +++ b/ProjectSettings/TagManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23fc56b484aa3d7edf5914cd3591f7a823ccef5e3f3496f8a51f30388ead63dc +size 657 diff --git a/ProjectSettings/TimeManager.asset b/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..38794bf --- /dev/null +++ b/ProjectSettings/TimeManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a83e54adbbda7c9f4851103a0c6ab7f6448a3343d4ea5b7620452fa08416ecd +size 202 diff --git a/ProjectSettings/URPProjectSettings.asset b/ProjectSettings/URPProjectSettings.asset new file mode 100644 index 0000000..8160870 --- /dev/null +++ b/ProjectSettings/URPProjectSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c317fe22b9488785c0611f0642429922e5d324430d929bffb41648130f30c218 +size 461 diff --git a/ProjectSettings/UnityConnectSettings.asset b/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..ec5284e --- /dev/null +++ b/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7dd1e8290598f5ce86919ba1c98b42b766c8c42191a30fa2c4d12195c4ecd00 +size 1063 diff --git a/ProjectSettings/VFXManager.asset b/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..e0b8a4e --- /dev/null +++ b/ProjectSettings/VFXManager.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f066c6483919961332415ee64204f74fe52f38c02e82892eb02b7a5b2e381f0e +size 308 diff --git a/ProjectSettings/VersionControlSettings.asset b/ProjectSettings/VersionControlSettings.asset new file mode 100644 index 0000000..6e1e402 --- /dev/null +++ b/ProjectSettings/VersionControlSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7bda45bf7a394745fee1316e6c71fa676004d591ad1f3aa247fd3e4ceb86071 +size 188 diff --git a/ProjectSettings/XRSettings.asset b/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..bfefb85 --- /dev/null +++ b/ProjectSettings/XRSettings.asset @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edd2beb4a2e388312b4b7da241aa51070434005d82c59363f1237dd2e567585f +size 158