diff --git a/Assets/AddressableAssetsData/AssetGroups/Drawing.asset b/Assets/AddressableAssetsData/AssetGroups/Drawing.asset index 5296ca3..a0626bf 100644 --- a/Assets/AddressableAssetsData/AssetGroups/Drawing.asset +++ b/Assets/AddressableAssetsData/AssetGroups/Drawing.asset @@ -21,6 +21,12 @@ MonoBehaviour: m_SerializedLabels: - drawing FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 14477b5d35d0be9439ecb935f1c4e64e + m_Address: Donut + m_ReadOnly: 0 + m_SerializedLabels: + - drawing + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: 2043f692673a79543afed5cb879f0e04 m_Address: Five m_ReadOnly: 0 @@ -39,6 +45,24 @@ MonoBehaviour: m_SerializedLabels: - drawing FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 4474b93704045a740ba9b8114e8a5238 + m_Address: Fish + m_ReadOnly: 0 + m_SerializedLabels: + - drawing + FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 62ae112e11b695a40b889d773a36f8bd + m_Address: Elephant + m_ReadOnly: 0 + m_SerializedLabels: + - drawing + FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: 6e36ba5d4763c694289c8ca75ee81449 + m_Address: Bus + m_ReadOnly: 0 + m_SerializedLabels: + - drawing + FlaggedDuringContentUpdateRestriction: 0 - m_GUID: 977dc7dac5ee6b543b8ed47c2299919e m_Address: Airplane m_ReadOnly: 0 @@ -63,6 +87,12 @@ MonoBehaviour: m_SerializedLabels: - drawing FlaggedDuringContentUpdateRestriction: 0 + - m_GUID: f3200c6715fea4a41bc71c0314b519cd + m_Address: Frog + m_ReadOnly: 0 + m_SerializedLabels: + - drawing + FlaggedDuringContentUpdateRestriction: 0 m_ReadOnly: 0 m_Settings: {fileID: 11400000, guid: 4a94ef317c3674edd8270e4ed15031f6, type: 2} m_SchemaSet: diff --git a/Assets/Darkmatter/Code/Core/Enums/Services/Audio/SfxId.cs b/Assets/Darkmatter/Code/Core/Enums/Services/Audio/SfxId.cs index 1bcec86..8eeaa7d 100644 --- a/Assets/Darkmatter/Code/Core/Enums/Services/Audio/SfxId.cs +++ b/Assets/Darkmatter/Code/Core/Enums/Services/Audio/SfxId.cs @@ -8,6 +8,10 @@ namespace Darkmatter.Core.Enums.Services.Audio ShapeReturn = 102, UiTap = 200, PlayButtonTap = 201, + ColorSelection = 202, LevelComplete = 300, + FireWorkLaunch = 400, + + } } diff --git a/Assets/Darkmatter/Code/Features/DrawingCatalog/Features.DrawingCatalog.asmdef b/Assets/Darkmatter/Code/Features/DrawingCatalog/Features.DrawingCatalog.asmdef index 0c2bb85..74a2220 100644 --- a/Assets/Darkmatter/Code/Features/DrawingCatalog/Features.DrawingCatalog.asmdef +++ b/Assets/Darkmatter/Code/Features/DrawingCatalog/Features.DrawingCatalog.asmdef @@ -6,7 +6,8 @@ "GUID:c1c03c0e5b2f4412b9f2be1c20d6a9b1", "GUID:b4c9f7fbf1e144933a1797dc208ece5f", "GUID:b0214a6008ed146ff8f122a6a9c2f6cc", - "GUID:f51ebe6a0ceec4240a699833d6309b23" + "GUID:f51ebe6a0ceec4240a699833d6309b23", + "GUID:6055be8ebefd69e48b49212b09b47b2f" ], "includePlatforms": [], "excludePlatforms": [], diff --git a/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogPresenter.cs b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogPresenter.cs index 4ee29cd..baf8053 100644 --- a/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogPresenter.cs +++ b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogPresenter.cs @@ -39,6 +39,8 @@ namespace Darkmatter.Features.DrawingCatalog _view.OnArtBookClicked += OnArtBookBtnClicked; _view.OnLeftPageClicked += OnLeftPageBtnClicked; _view.OnRightPageClicked += OnRightPageBtnClicked; + _view.OnPageChangedByScroll += OnPageChangedByScroll; + _view.OnPageNumberClicked += OnPageNumberClicked; _controller.ListChanged += OnListChanged; @@ -68,6 +70,18 @@ namespace Darkmatter.Features.DrawingCatalog } } + private void OnPageChangedByScroll(int page) + { + _currentPage = page; + } + + private void OnPageNumberClicked(int page) + { + if (page < 0 || page >= _totalPages || page == _currentPage) return; + _currentPage = page; + _view.SetPagination(_currentPage, _totalPages); + } + private void OnArtBookBtnClicked() { _eventBus.Publish(new OpenArtBookSignal(()=> _view.Show())); @@ -116,6 +130,8 @@ namespace Darkmatter.Features.DrawingCatalog _view.OnArtBookClicked -= OnArtBookBtnClicked; _view.OnLeftPageClicked -= OnLeftPageBtnClicked; _view.OnRightPageClicked -= OnRightPageBtnClicked; + _view.OnPageChangedByScroll -= OnPageChangedByScroll; + _view.OnPageNumberClicked -= OnPageNumberClicked; _openSubscription?.Dispose(); _cts.Cancel(); _cts.Dispose(); diff --git a/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogView.cs b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogView.cs index ae3eafe..b2cc3af 100644 --- a/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogView.cs +++ b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/DrawingCatalogView.cs @@ -20,15 +20,25 @@ namespace Darkmatter.Features.DrawingCatalog [SerializeField] private ScrollRect scrollRect; [SerializeField] private Button leftPageButton; [SerializeField] private Button rightPageButton; + + [Header("Page Numbers")] + [SerializeField] private RectTransform pageNumberContainer; + [SerializeField] private PageNumberButton pageNumberPrefab; private readonly List _buttons = new(); + private readonly List _pageButtons = new(); public event Action OnItemClicked; public event Action OnBackClicked; public event Action OnArtBookClicked; public event Action OnLeftPageClicked; public event Action OnRightPageClicked; + public event Action OnPageChangedByScroll; + public event Action OnPageNumberClicked; private Coroutine _sliderCoroutine; + private int _currentPage; + private int _totalPages = 1; + private bool _suppressScrollEvents; public void Start() { @@ -36,6 +46,7 @@ namespace Darkmatter.Features.DrawingCatalog artBookButton.onClick.AddListener(() => OnArtBookClicked?.Invoke()); leftPageButton.onClick.AddListener(() => OnLeftPageClicked?.Invoke()); rightPageButton.onClick.AddListener(() => OnRightPageClicked?.Invoke()); + scrollRect.onValueChanged.AddListener(OnScrollValueChanged); } public void Show() { @@ -69,8 +80,11 @@ namespace Darkmatter.Features.DrawingCatalog public void SetPagination(int currentPage, int totalPages) { - leftPageButton.interactable = currentPage > 0; - rightPageButton.interactable = currentPage < totalPages - 1; + _currentPage = currentPage; + _totalPages = totalPages; + BuildPageNumbers(totalPages); + UpdateArrowButtons(); + UpdateActivePageNumber(); if (totalPages <= 1) return; float pageWidth = scrollRect.viewport.rect.width; @@ -84,8 +98,65 @@ namespace Darkmatter.Features.DrawingCatalog _sliderCoroutine = StartCoroutine(SmoothScrollTo(targetPosition)); } + // Keeps the arrow buttons (and the presenter) in sync when the user scrolls manually. + private void OnScrollValueChanged(Vector2 _) + { + if (_suppressScrollEvents || _totalPages <= 1) return; + + int page = PageFromScrollPosition(); + if (page == _currentPage) return; + + _currentPage = page; + UpdateArrowButtons(); + UpdateActivePageNumber(); + OnPageChangedByScroll?.Invoke(page); + } + + private void BuildPageNumbers(int totalPages) + { + if (pageNumberPrefab == null || pageNumberContainer == null) return; + + while (_pageButtons.Count < totalPages) + { + var button = Instantiate(pageNumberPrefab, pageNumberContainer); + int pageIndex = _pageButtons.Count; + button.Initialize(pageIndex, () => OnPageNumberClicked?.Invoke(pageIndex)); + _pageButtons.Add(button); + } + + while (_pageButtons.Count > totalPages) + { + var last = _pageButtons[^1]; + _pageButtons.RemoveAt(_pageButtons.Count - 1); + Destroy(last.gameObject); + } + } + + private void UpdateActivePageNumber() + { + for (int i = 0; i < _pageButtons.Count; i++) + _pageButtons[i].SetHighlighted(i == _currentPage); + } + + private int PageFromScrollPosition() + { + float pageWidth = scrollRect.viewport.rect.width; + float maxScroll = content.rect.width - pageWidth; + if (maxScroll <= 0f) return 0; + + int page = Mathf.RoundToInt(scrollRect.horizontalNormalizedPosition * maxScroll / pageWidth); + return Mathf.Clamp(page, 0, _totalPages - 1); + } + + private void UpdateArrowButtons() + { + leftPageButton.interactable = _currentPage > 0; + rightPageButton.interactable = _currentPage < _totalPages - 1; + } + private System.Collections.IEnumerator SmoothScrollTo(float targetPosition) { + _suppressScrollEvents = true; const float duration = 0.3f; float elapsed = 0f; float startPosition = scrollRect.horizontalNormalizedPosition; @@ -96,12 +167,15 @@ namespace Darkmatter.Features.DrawingCatalog yield return null; } scrollRect.horizontalNormalizedPosition = targetPosition; + _suppressScrollEvents = false; } public void ResetScrollPosition() { + _suppressScrollEvents = true; scrollRect.horizontalNormalizedPosition = 0f; + _suppressScrollEvents = false; } } } \ No newline at end of file diff --git a/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/PageNumberButton.cs b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/PageNumberButton.cs new file mode 100644 index 0000000..926f45f --- /dev/null +++ b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/PageNumberButton.cs @@ -0,0 +1,47 @@ +using TMPro; +using UnityEngine; +using UnityEngine.UI; + +namespace Darkmatter.Features.DrawingCatalog +{ + public class PageNumberButton : MonoBehaviour + { + [SerializeField] private TMP_Text label; + [SerializeField] private Button button; + + [Header("Highlight")] + [Tooltip("Image faded for unselected pages. Use the button's color block (below) to match the disabled look.")] + [SerializeField] private Image image; + [Tooltip("When on, unselected pages use the button's Disabled Color and selected use Normal Color. " + + "When off, only the alpha below is applied.")] + [SerializeField] private bool useButtonColors = true; + [Range(0f, 1f)] + [SerializeField] private float unselectedAlpha = 0.5f; + + public int PageIndex { get; private set; } + + public void Initialize(int pageIndex, UnityEngine.Events.UnityAction onClick) + { + PageIndex = pageIndex; + if (label != null) label.text = (pageIndex + 1).ToString(); + button.onClick.RemoveAllListeners(); + button.onClick.AddListener(onClick); + } + + public void SetHighlighted(bool isActive) + { + if (image == null) return; + + if (useButtonColors) + { + var colors = button.colors; + image.color = isActive ? colors.normalColor : colors.disabledColor; + return; + } + + var c = image.color; + c.a = isActive ? 1f : unselectedAlpha; + image.color = c; + } + } +} diff --git a/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/PageNumberButton.cs.meta b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/PageNumberButton.cs.meta new file mode 100644 index 0000000..f1f02d4 --- /dev/null +++ b/Assets/Darkmatter/Code/Features/DrawingCatalog/UI/PageNumberButton.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 19495f2daba89ce44abe376a40ca313d \ No newline at end of file diff --git a/Assets/Darkmatter/Code/Features/GameplayFlow/Systems/GameplayFlowController.cs b/Assets/Darkmatter/Code/Features/GameplayFlow/Systems/GameplayFlowController.cs index 26ae360..e4fdd51 100644 --- a/Assets/Darkmatter/Code/Features/GameplayFlow/Systems/GameplayFlowController.cs +++ b/Assets/Darkmatter/Code/Features/GameplayFlow/Systems/GameplayFlowController.cs @@ -131,6 +131,7 @@ namespace Darkmatter.Features.GameplayFlow.Systems { await SaveCurrentAsync(ct); _refs.Confetti.Play(); + _sfx.Play(SfxId.FireWorkLaunch); _sfx.Play(SfxId.LevelComplete); await _coloring.PlayCompletionAnimationAsync(ct); _progression.MarkCompleted(_templateId); diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX.meta new file mode 100644 index 0000000..dc8e281 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed4a54b01b78fa1489c9baf442235e8a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK SFX.txt b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK SFX.txt new file mode 100644 index 0000000..3ee5bbf --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK SFX.txt @@ -0,0 +1,47 @@ +Congrats! Now you have the FREE CASUAL GAME SFX +This is the FREE SFX solucion for your casual games! +*designed by Matheus Klein. + +------>>>>> Do you want a GIFT? <<<<<------------ + +Subscribe here and download it: +https://lp.labmdk.com/free-gift + +------>>>>> <<<<<------------ +Leave for us your Review! + +------>>>>> <<<<<------------ +Check It out: +--> Casual-pack-SFX +https://assetstore.unity.com/packages/audio/sound-fx/casual-pack-sfx-192848?_ga=2.42343461.1670194729.1622553216-1748727751.1620872230 + +--> Casual-pack- MUSIC +https://assetstore.unity.com/packages/audio/music/casual-pack-music-193478?_ga=2.42343461.1670194729.1622553216-1748727751.1620872230 + +--> Casual-pack-COMPLETE +https://assetstore.unity.com/packages/audio/music/casual-pack-complete-196775 + +------>>>>> <<<<<------------ +--> We created this product with enthusiasm and dedication. Enjoy it! + +--> If you have any problem or if you are searching for customized assets +feel free to contact us: + +- www.labmdk.com +- contato@labmdk.com + + +-->For more, follow us: + +@matheus_klein.mk +@3dk_art + +---> Looking for an original soundtrack for your custom project? +What can I offer? + +Composing exclusive music, soundtrack, filmscore for film, video game, trailers, apps and advertisement. +Any music genre: cinematic, orchestral, Rock, metal, jazz, hip-hop, EDM, ambient, 8 bit etc. +Realistic sound. I work with virtual instruments and some real instruments. + +We're looking forward to working with you again. + diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK SFX.txt.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK SFX.txt.meta new file mode 100644 index 0000000..844eb3d --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK SFX.txt.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8dc69ef1d5b95dd48b0e5599b3de71d0 +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/(README) WELCOME_FREE CASUAL PACK + SFX.txt + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS.meta new file mode 100644 index 0000000..1b3d46d --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9b5dca4b9b9435b468d27e1d658c8b7c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav new file mode 100644 index 0000000..09e08bb Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav.meta new file mode 100644 index 0000000..5e9fb02 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: cbd5ee476a488444aaeb06b7e1fb04e0 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/10 - BONUS/Casual loop 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS.meta new file mode 100644 index 0000000..4ab4d4d --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 003fad9ceeb31b44c9618baec1eed419 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav new file mode 100644 index 0000000..697d739 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav.meta new file mode 100644 index 0000000..a0ef568 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 36a97d152a07e9f489c73b24e2870cf0 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/CAMERA CLICKS/CAMERA CLICK 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS.meta new file mode 100644 index 0000000..05a7f76 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 394f992e39409a246ad69e88caf01d6c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav new file mode 100644 index 0000000..c6b83a0 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav.meta new file mode 100644 index 0000000..76b8955 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 4b5dbd3527221224caf2fde9d72cddb7 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav new file mode 100644 index 0000000..c4cf1a6 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav.meta new file mode 100644 index 0000000..48f625b --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 4f3fe7a1f92f1e94db61865f48491057 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/CARDS/CARDS 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf new file mode 100644 index 0000000..6875884 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf.meta new file mode 100644 index 0000000..bfeefb3 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2a78ea6479568174996fe4ab6d489c16 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/CASUAL GAME SFX FREE_2.0.pdf + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN.meta new file mode 100644 index 0000000..f3d59e2 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77d40c2b43ea7704dad6d8c061256ca2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav new file mode 100644 index 0000000..f8d7d3e Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav.meta new file mode 100644 index 0000000..6067e65 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 808b1c1bb474b2e4e81f482b61c5af1f +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/COIN/COIN 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav new file mode 100644 index 0000000..60c02d6 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav.meta new file mode 100644 index 0000000..58626aa --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 2a7727b2142daf041afd5100d51c4ef1 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/COIN/COIN 3.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav new file mode 100644 index 0000000..905357a Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav.meta new file mode 100644 index 0000000..c0d7877 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: cc79351049d5005469f039d246c248ee +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/COIN/COIN 6.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN.meta new file mode 100644 index 0000000..abeaff4 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a6516cd5d7eae534484c969b20fb7534 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav new file mode 100644 index 0000000..4aee7e7 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav.meta new file mode 100644 index 0000000..d417305 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 17fb4076ff87e9941bbba996b0952fdf +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/COUNTDOWN/COUNTDOWN 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE.meta new file mode 100644 index 0000000..78c381d --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1eae7663cde4f5540997498b0e13ba0d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav new file mode 100644 index 0000000..e2c71c2 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav.meta new file mode 100644 index 0000000..b8bc9e1 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 2efd8b15056482942a2a2f445cf4f8c7 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/DICE/DICE 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav new file mode 100644 index 0000000..42f9894 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav.meta new file mode 100644 index 0000000..3632ff4 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: e1476fa3cf7ce0f48a57d6b5b0299a37 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/DICE/DICE 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT.meta new file mode 100644 index 0000000..beb4646 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0d8053c94ca017149a13acf43f5d333c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav new file mode 100644 index 0000000..3fc487a Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav.meta new file mode 100644 index 0000000..8b9b187 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 3a6cd568bbc5b4146b5763b9bf28ba85 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav new file mode 100644 index 0000000..44c6a4d Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav.meta new file mode 100644 index 0000000..8345a73 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: f9161582126b2034d8dbcbc0ad2a1dc4 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/ESPECIAL COLLECT/SPECIAL COLECT 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS.meta new file mode 100644 index 0000000..e0ee154 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1a2977bc3968b4f4e996cfc2df3e17fc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav new file mode 100644 index 0000000..170bde7 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav.meta new file mode 100644 index 0000000..8e41084 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 045114c4c20e5974fbbcd84011ff3a9e +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav new file mode 100644 index 0000000..45fee19 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav.meta new file mode 100644 index 0000000..7309b87 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 362141a08f284ab41a740893a3ad15fb +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/FIREWORKS/FIREWORKS 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN.meta new file mode 100644 index 0000000..c1c855b --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e0fc71aa3f1801a47bcf5af828523b85 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav new file mode 100644 index 0000000..0c36f7f Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav.meta new file mode 100644 index 0000000..64e1ee0 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: c4e9c46ee3ab3ae4e9a868e8b0e90497 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/HORN/CAR HORN 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP.meta new file mode 100644 index 0000000..73f7163 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88584a1bec8e1a44da5f04839a0d834a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav new file mode 100644 index 0000000..ff935d5 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav.meta new file mode 100644 index 0000000..818dddb --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 6cf2e77ce831b7e4eb2109cd94dec2e3 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 1_ 8 BIT.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav new file mode 100644 index 0000000..f51162b Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav.meta new file mode 100644 index 0000000..44cde59 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 6cccb3d3775bc9347a829a16cc69f1d4 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/JUMP/JUMP 2 .wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS.meta new file mode 100644 index 0000000..87e5805 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db6710058b4c69d449098d7378df5d4c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav new file mode 100644 index 0000000..ef5fbe7 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav.meta new file mode 100644 index 0000000..1810861 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 891c1e84913ba8147a2913c1763e7f85 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav new file mode 100644 index 0000000..a3bf37b Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav.meta new file mode 100644 index 0000000..89e6093 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 863b23d3b119ae546ac9b8891ac5bd1a +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/KEYS/KEYS 4.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav new file mode 100644 index 0000000..0544b28 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav.meta new file mode 100644 index 0000000..165ba9c --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: a67eec4c3e3fa0f4f8012440cfe9ebe0 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/KEYS/LOKING 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav new file mode 100644 index 0000000..9149c4f Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav.meta new file mode 100644 index 0000000..515b65a --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: f2e1b9cbbf5359c44b1a9b48ccc57bad +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/KEYS/OPEN 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS.meta new file mode 100644 index 0000000..b37333f --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6b8235357f3b6b548a8523df8035fb61 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav new file mode 100644 index 0000000..b44e4b5 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav.meta new file mode 100644 index 0000000..8672b68 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 92d9128629e9e7a45afd47f4eff2c461 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav new file mode 100644 index 0000000..7bec298 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav.meta new file mode 100644 index 0000000..01140b2 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 26b4ccc679daa3847ab1853c1a1ffa15 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav new file mode 100644 index 0000000..acf5a69 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav.meta new file mode 100644 index 0000000..d64f830 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 51e9205cbfc5f7440b8f731ecccf0dfc +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/MENU SOUNDS/MENU_SOUND_3.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS.meta new file mode 100644 index 0000000..4edd57e --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7999517cd333ce2498e86c2a857ece49 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav new file mode 100644 index 0000000..0451c5f Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav.meta new file mode 100644 index 0000000..f5fa2f5 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: d50066f5844c54c4c9cfba7f12b14c1e +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/OTHERS/ROLL_TIMPANI.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav new file mode 100644 index 0000000..d8660b1 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav.meta new file mode 100644 index 0000000..24e0718 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 262fddb214621db43bb76fbc3988ba23 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/OTHERS/ROULETTE WHEEL.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES.meta new file mode 100644 index 0000000..83f970d --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 04e68aed2264a90458944839575a9e85 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav new file mode 100644 index 0000000..dfc5daa Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav.meta new file mode 100644 index 0000000..0c66d1c --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: cee0ef05d1e443b438eebbc4ee35930c +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav new file mode 100644 index 0000000..1046fe0 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav.meta new file mode 100644 index 0000000..2ebf7e0 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 1e304b48b159cb6418ba5206fc97a77c +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav new file mode 100644 index 0000000..5aeed1a Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav.meta new file mode 100644 index 0000000..66a63a0 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 547472b07cea53644a3973cea637b188 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP 3.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav new file mode 100644 index 0000000..05c6286 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav.meta new file mode 100644 index 0000000..e5a9145 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 65943d5d811f80a468ba830d188eb6df +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav new file mode 100644 index 0000000..a71d2a5 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav.meta new file mode 100644 index 0000000..6c227c1 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: b79fe328e9c0e8f459c19bda4934a7c4 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP NEGATIVE 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav new file mode 100644 index 0000000..d32be2f Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav.meta new file mode 100644 index 0000000..a821ce8 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 489b52e5dcbb45e49934ee84c17b159b +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav new file mode 100644 index 0000000..8c5d6e7 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav.meta new file mode 100644 index 0000000..f64bee4 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: e39e536843340354e9b6b52e8ece4411 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POPs AND JINGLES/POP POSITIVE 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP.meta new file mode 100644 index 0000000..a4ca3a7 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7d5c70ccc6d3eb14c830581e29b0f83f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav new file mode 100644 index 0000000..aee2693 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav.meta new file mode 100644 index 0000000..972241a --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 8b1ff2e41e9deaf49bcf2292afff13a2 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav new file mode 100644 index 0000000..10b18a0 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav.meta new file mode 100644 index 0000000..d3bced1 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: d70f777959e5861449adc0031229402e +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/POWERUP/POWERUP 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH.meta new file mode 100644 index 0000000..55458b4 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c0936755ceda95647bf9df706f269938 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav new file mode 100644 index 0000000..8614cfd Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav.meta new file mode 100644 index 0000000..970927b --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 6750af2302e06a04283ea472a5321419 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/PUNCH/Punch_01.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS.meta new file mode 100644 index 0000000..06844d9 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ca80971af8333fc47bb3ff101414ff2a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav new file mode 100644 index 0000000..67fa6d1 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav.meta new file mode 100644 index 0000000..b8aa468 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 0b2dc3f8bd139b04d9328ed800a6a70c +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav new file mode 100644 index 0000000..5c40c92 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav.meta new file mode 100644 index 0000000..64ba6b2 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 9807a19b9f71ec648b75048cf115c2f6 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/SPECIAL POPS/SPECIAL POP 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK.meta new file mode 100644 index 0000000..95882a5 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0e6cb83321ca7104d811318f6343bbb9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav new file mode 100644 index 0000000..c08683c Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav.meta new file mode 100644 index 0000000..6ce5015 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 504510844ccf84e4f82525321f05078b +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav new file mode 100644 index 0000000..9a0b886 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav.meta new file mode 100644 index 0000000..559574a --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: f829e8a42c4ff334cbe95830c24132e8 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/TICKING CLOCK/TICKING CLOCK 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS.meta new file mode 100644 index 0000000..253119d --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 809562769e2ff3b439340edeef5472ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav new file mode 100644 index 0000000..d1981e5 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav.meta new file mode 100644 index 0000000..0a004e4 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: d493dd2a37bcd2142b7fcac02471c02c +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE HIT.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav new file mode 100644 index 0000000..f36c127 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav.meta new file mode 100644 index 0000000..40d02bc --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 179e9576f8fff35479e955f1ff275fd2 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/AXE SWING.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE.meta new file mode 100644 index 0000000..1af1cd1 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8ec967c23a549548b9e2820d45a8542 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav new file mode 100644 index 0000000..5961afa Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav.meta new file mode 100644 index 0000000..fd807a8 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 5f36e0d19faa9b74fa5341edb8b166cc +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/KNIFE 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav new file mode 100644 index 0000000..46d3ae7 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav.meta new file mode 100644 index 0000000..247b736 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 8f77e65f2051349469a0ee307dda2499 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/KNIFE/TAKING_KNIFE_2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD.meta new file mode 100644 index 0000000..236b9e5 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cf08d780e93d9b34a82e1209048954be +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav new file mode 100644 index 0000000..a549e6b Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav.meta new file mode 100644 index 0000000..3ed268a --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: db8828443a1445b4891c668f96df25c0 +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav new file mode 100644 index 0000000..b85a7b3 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav.meta new file mode 100644 index 0000000..fca8566 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 4e4c3c3b9f4ad354187ca70e2fe86f4f +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav new file mode 100644 index 0000000..10b2f9a Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav.meta new file mode 100644 index 0000000..af1b99f --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: 668e6c5fbd0109b4497eeca21b25dc3d +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WEAPONS/SWORD/SWORD HIT 2.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING.meta new file mode 100644 index 0000000..2c9d1b5 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2c5c31a715e1064897fabd31d48cc1c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav new file mode 100644 index 0000000..b495b68 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav.meta new file mode 100644 index 0000000..e12fa6c --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: d493f79f5cecc77479fed3e9efc11efb +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav new file mode 100644 index 0000000..9fca4c9 Binary files /dev/null and b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav differ diff --git a/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav.meta b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav.meta new file mode 100644 index 0000000..04add81 --- /dev/null +++ b/Assets/Darkmatter/Content/Audio/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav.meta @@ -0,0 +1,29 @@ +fileFormatVersion: 2 +guid: ecc5597051e99664bac4d29cebbce2eb +AudioImporter: + externalObjects: {} + serializedVersion: 6 + defaultSettings: + loadType: 0 + sampleRateSetting: 0 + sampleRateOverride: 44100 + compressionFormat: 1 + quality: 1 + conversionMode: 0 + platformSettingOverrides: {} + forceToMono: 0 + normalize: 1 + preloadAudioData: 1 + loadInBackground: 0 + ambisonic: 0 + 3D: 1 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 197054 + packageName: FREE CASUAL PACK SFX + packageVersion: 2.0 + assetPath: Assets/1.1 - FREE CASUAL PACK SFX/WRITING/WRITING SOFT 1.wav + uploadId: 550051 diff --git a/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/Frog/Frog Refrerence.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/Frog/Frog Refrerence.png.meta index 29a9fe3..02e9745 100644 --- a/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/Frog/Frog Refrerence.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/Frog/Frog Refrerence.png.meta @@ -43,7 +43,7 @@ TextureImporter: nPOTScale: 0 lightmap: 0 compressionQuality: 50 - spriteMode: 2 + spriteMode: 1 spriteExtrude: 1 spriteMeshType: 1 alignment: 0 diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite.meta similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite.meta diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/aeroplane.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/aeroplane.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/aeroplane.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/aeroplane.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/aeroplane.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/aeroplane.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/aeroplane.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/aeroplane.png.meta index 0aac24c..526c17a 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/aeroplane.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/aeroplane.png.meta @@ -3,7 +3,7 @@ guid: 61ae4c8a348e341429c5aff11799569a TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -369,6 +388,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -380,6 +400,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -389,22 +410,23 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - aeroplane_8: -1570112390 - aeroplane_1: 1962978268 - aeroplane_5: 1594771839 - aeroplane_2: 566539196 - aeroplane_10: -1023356826 - aeroplane_6: 2002614837 - aeroplane_4: 1457096383 - aeroplane_7: 818399593 aeroplane_0: 981116548 - aeroplane_3: -1602854127 - aeroplane_9: -1528270650 + aeroplane_1: 1962978268 + aeroplane_10: -1023356826 aeroplane_11: -1502981283 - spritePackingTag: + aeroplane_2: 566539196 + aeroplane_3: -1602854127 + aeroplane_4: 1457096383 + aeroplane_5: 1594771839 + aeroplane_6: 2002614837 + aeroplane_7: 818399593 + aeroplane_8: -1570112390 + aeroplane_9: -1528270650 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/ball.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/ball.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/ball.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/ball.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/ball.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/ball.png.meta similarity index 95% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/ball.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/ball.png.meta index 7395ce4..14b174f 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/ball.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/ball.png.meta @@ -67,7 +67,7 @@ TextureImporter: swizzle: 50462976 cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -80,7 +80,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -93,7 +93,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -106,7 +106,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -119,8 +119,8 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -132,7 +132,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: WebGL maxTextureSize: 2048 resizeAlgorithm: 0 @@ -159,6 +159,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +181,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +203,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +225,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +247,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +269,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +291,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +313,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -317,6 +325,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -326,6 +335,8 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: ball_0: -1097588712 ball_1: 809345179 diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/banana.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/banana.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/banana.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/banana.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/banana.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/banana.png.meta similarity index 90% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/banana.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/banana.png.meta index 85e455d..a77f863 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/banana.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/banana.png.meta @@ -3,7 +3,7 @@ guid: 9a4ddb0a680dabc458704d1cd4e8b577 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -212,6 +224,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -221,14 +234,15 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: banana_0: -288797759 + banana_1: 203546920 banana_2: -456557800 banana_3: -1766274543 - banana_1: 203546920 - spritePackingTag: + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/boat.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/boat.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/boat.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/boat.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/boat.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/boat.png.meta similarity index 90% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/boat.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/boat.png.meta index a66d260..44c48dc 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/boat.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/boat.png.meta @@ -3,7 +3,7 @@ guid: 698b3596dac341a488ce8b9a6fd2c695 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -233,6 +246,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -242,15 +256,16 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - boat_1: -279399808 boat_0: -1087248773 - boat_3: -1566889675 + boat_1: -279399808 boat_2: 1569842682 + boat_3: -1566889675 boat_4: 1291326851 - spritePackingTag: + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/books.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/books.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/books.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/books.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/books.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/books.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/books.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/books.png.meta index 2d16b0d..36df5e1 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/books.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/books.png.meta @@ -3,7 +3,7 @@ guid: b80fad62a0cc9734a935f53431262795 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -359,6 +378,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -368,21 +388,22 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - books_4: 187805480 - books_7: 1333788405 - books_3: 1906515684 - books_9: 1718881354 - books_5: -952069111 - books_10: 1212174454 books_0: -1181294504 - books_2: -218450200 - books_8: 718858476 - books_6: 737300432 books_1: 16171480 - spritePackingTag: + books_10: 1212174454 + books_2: -218450200 + books_3: 1906515684 + books_4: 187805480 + books_5: -952069111 + books_6: 737300432 + books_7: 1333788405 + books_8: 718858476 + books_9: 1718881354 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/bus.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/bus.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/bus.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/bus.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/bus.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/bus.png.meta similarity index 95% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/bus.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/bus.png.meta index e968ea8..e864478 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/bus.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/bus.png.meta @@ -67,7 +67,7 @@ TextureImporter: swizzle: 50462976 cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -80,7 +80,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -93,7 +93,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -106,7 +106,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -119,8 +119,8 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -132,7 +132,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: WebGL maxTextureSize: 2048 resizeAlgorithm: 0 @@ -159,6 +159,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +181,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +203,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +225,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +247,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +269,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +291,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +313,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +335,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -338,6 +347,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -347,6 +357,8 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: bus_0: 1491531508 bus_1: 1205850232 diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/car.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/car.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/car.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/car.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/car.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/car.png.meta similarity index 95% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/car.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/car.png.meta index 7bbec56..4bfb174 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/car.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/car.png.meta @@ -67,7 +67,7 @@ TextureImporter: swizzle: 50462976 cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -80,7 +80,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -93,7 +93,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -106,7 +106,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -119,8 +119,8 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -132,7 +132,7 @@ TextureImporter: ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: WebGL maxTextureSize: 2048 resizeAlgorithm: 0 @@ -159,6 +159,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +181,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +203,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +225,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +247,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +269,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +291,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +313,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +335,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +357,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -369,6 +379,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -380,6 +391,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -389,6 +401,8 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: car_0: 1964697417 car_1: -698082715 diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/dog.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/dog.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/dog.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/dog.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/dog.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/dog.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/dog.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/dog.png.meta index 75b6566..c82f3f9 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/dog.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/dog.png.meta @@ -3,7 +3,7 @@ guid: 18287700216c1924aab76324151c6e73 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -317,6 +334,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -326,19 +344,20 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - dog_8: 1735762730 - dog_2: -1761720413 dog_0: 1793593727 - dog_6: 1469203311 dog_1: -1910927989 + dog_2: -1761720413 dog_3: 1027602837 dog_4: -2124861009 - dog_7: 735149223 dog_5: -385779637 - spritePackingTag: + dog_6: 1469203311 + dog_7: 735149223 + dog_8: 1735762730 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/duck.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/duck.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/duck.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/duck.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/duck.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/duck.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/duck.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/duck.png.meta index 2f62a9b..e3e46e4 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/duck.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/duck.png.meta @@ -3,7 +3,7 @@ guid: c25785cafc55a794b8c1cc85dc8a74d0 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -338,6 +356,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -347,20 +366,21 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: duck_0: 1007865163 - duck_9: -1070859711 - duck_5: -2032273886 - duck_2: -2100326664 - duck_8: -247097327 duck_1: 1302726089 + duck_2: -2100326664 duck_3: -60421742 - duck_7: -1846579870 - duck_6: 135496185 duck_4: -1034776682 - spritePackingTag: + duck_5: -2032273886 + duck_6: 135496185 + duck_7: -1846579870 + duck_8: -247097327 + duck_9: -1070859711 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/fish.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/fish.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/fish.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/fish.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/fish.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/fish.png.meta similarity index 93% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/fish.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/fish.png.meta index 1b00cd4..4d5855a 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/fish.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/fish.png.meta @@ -3,7 +3,7 @@ guid: d2cc77c7324e13c449cd0d4d6a14bbb1 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -369,6 +388,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -390,6 +410,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -411,6 +432,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -432,6 +454,7 @@ TextureImporter: alignment: 0 pivot: {x: 0.5, y: 0.5} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -443,6 +466,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -452,25 +476,26 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - fish_7: 807099553 - fish_13: 1759550612 - fish_3: 1103108659 - fish_5: -1724040952 - fish_14: 1012118320 - fish_1: 1309857457 - fish_9: 291725147 - fish_11: 806887632 - fish_2: 266103877 - fish_10: 542578172 - fish_6: -1810452540 - fish_12: 1101955162 - fish_8: 581843588 - fish_4: -613752758 fish_0: -881879222 - spritePackingTag: + fish_1: 1309857457 + fish_10: 542578172 + fish_11: 806887632 + fish_12: 1101955162 + fish_13: 1759550612 + fish_14: 1012118320 + fish_2: 266103877 + fish_3: 1103108659 + fish_4: -613752758 + fish_5: -1724040952 + fish_6: -1810452540 + fish_7: 807099553 + fish_8: 581843588 + fish_9: 291725147 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/hotaie-ballon.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/hotaie-ballon.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/hotaie-ballon.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/hotaie-ballon.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/hotaie-ballon.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/hotaie-ballon.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/hotaie-ballon.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/hotaie-ballon.png.meta index 2380e9c..8604491 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/hotaie-ballon.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/hotaie-ballon.png.meta @@ -3,7 +3,7 @@ guid: 883eb3eed81691d4bb51716c0391d83c TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -317,6 +334,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -326,19 +344,20 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - hotaie-ballon_7: 897647026 - hotaie-ballon_4: 1042938752 - hotaie-ballon_8: -1588736196 - hotaie-ballon_6: 775136789 - hotaie-ballon_2: 2103283262 - hotaie-ballon_3: 132926658 - hotaie-ballon_5: -1062280724 hotaie-ballon_0: 1280151922 hotaie-ballon_1: 308689177 - spritePackingTag: + hotaie-ballon_2: 2103283262 + hotaie-ballon_3: 132926658 + hotaie-ballon_4: 1042938752 + hotaie-ballon_5: -1062280724 + hotaie-ballon_6: 775136789 + hotaie-ballon_7: 897647026 + hotaie-ballon_8: -1588736196 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/kite.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/kite.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/kite.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/kite.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/kite.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/kite.png.meta similarity index 91% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/kite.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/kite.png.meta index 0f08d79..652eec9 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/kite.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/kite.png.meta @@ -3,7 +3,7 @@ guid: 2e3a111e465d6374890269b7144ce0b6 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -275,6 +290,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -284,17 +300,18 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - kite_5: 565739660 - kite_3: 36506993 + kite_0: 2055040531 kite_1: -1755714473 kite_2: -1836153728 - kite_6: 1273753999 - kite_0: 2055040531 + kite_3: 36506993 kite_4: 1830215967 - spritePackingTag: + kite_5: 565739660 + kite_6: 1273753999 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/panda.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/panda.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/panda.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/panda.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/panda.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/panda.png.meta similarity index 89% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/panda.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/panda.png.meta index 47b7168..d6510c6 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/panda.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/panda.png.meta @@ -3,7 +3,7 @@ guid: 6332ac0803565e74ea0d44f8185d313f TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -191,6 +202,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -200,13 +212,14 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: + panda_0: 991684307 panda_1: -1873126676 panda_2: 775407178 - panda_0: 991684307 - spritePackingTag: + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rocket.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rocket.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rocket.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rocket.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rocket.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rocket.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rocket.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rocket.png.meta index ede87a3..e97a5de 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rocket.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rocket.png.meta @@ -3,7 +3,7 @@ guid: 877060839a3d9c04c8fbd1b8c9f28326 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -369,6 +388,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -380,6 +400,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -389,22 +410,23 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - rocket_8: -291754299 - rocket_10: 1723626686 - rocket_2: 691253192 rocket_0: 1979838148 - rocket_6: -516455248 - rocket_5: 1265579318 rocket_1: 632023248 - rocket_4: 1866930497 + rocket_10: 1723626686 rocket_11: 2082245919 - rocket_7: 1376516682 - rocket_9: -398016269 + rocket_2: 691253192 rocket_3: 1905053147 - spritePackingTag: + rocket_4: 1866930497 + rocket_5: 1265579318 + rocket_6: -516455248 + rocket_7: 1376516682 + rocket_8: -291754299 + rocket_9: -398016269 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rugby.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rugby.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rugby.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rugby.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rugby.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rugby.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rugby.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rugby.png.meta index f832b85..41e1538 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/rugby.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/rugby.png.meta @@ -3,7 +3,7 @@ guid: 8f04ac6add163cc43ab212a7aba547bf TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -359,6 +378,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -368,21 +388,22 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - rugby_5: -979649042 - rugby_9: 762066946 - rugby_10: 325433400 - rugby_8: 753499780 - rugby_6: -1342746445 rugby_0: 1644534616 + rugby_1: -267756436 + rugby_10: 325433400 + rugby_2: -1416641707 rugby_3: -1028767424 rugby_4: -1845601932 - rugby_1: -267756436 + rugby_5: -979649042 + rugby_6: -1342746445 rugby_7: -604008026 - rugby_2: -1416641707 - spritePackingTag: + rugby_8: 753499780 + rugby_9: 762066946 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/sunflower.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/sunflower.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/sunflower.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/sunflower.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/sunflower.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/sunflower.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/sunflower.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/sunflower.png.meta index 4f8a3d2..da7d172 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/sunflower.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/sunflower.png.meta @@ -3,7 +3,7 @@ guid: cb4fedf7a750358479123e799456dd08 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -359,6 +378,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -368,21 +388,22 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - sunflower_5: -1494462808 sunflower_0: -1459706981 - sunflower_6: 1292386271 - sunflower_2: 1828925274 - sunflower_7: 603535208 - sunflower_9: 1118169202 - sunflower_10: -784125007 - sunflower_3: 1524135217 sunflower_1: 2138113280 + sunflower_10: -784125007 + sunflower_2: 1828925274 + sunflower_3: 1524135217 sunflower_4: 2053284606 + sunflower_5: -1494462808 + sunflower_6: 1292386271 + sunflower_7: 603535208 sunflower_8: -1551222714 - spritePackingTag: + sunflower_9: 1118169202 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/telephone.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/telephone.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/telephone.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/telephone.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/telephone.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/telephone.png.meta similarity index 91% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/telephone.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/telephone.png.meta index be21970..a561bf6 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/telephone.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/telephone.png.meta @@ -3,7 +3,7 @@ guid: 117d58572cc2c9c46b8f02014046f97f TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -296,6 +312,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -305,18 +322,19 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - telephone_6: 533139109 - telephone_5: -996622725 telephone_0: -1075516342 + telephone_1: 840369325 telephone_2: -1190949878 - telephone_7: 64617665 telephone_3: 666144098 telephone_4: -1626271934 - telephone_1: 840369325 - spritePackingTag: + telephone_5: -996622725 + telephone_6: 533139109 + telephone_7: 64617665 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/train.png b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/train.png similarity index 100% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/train.png rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/train.png diff --git a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/train.png.meta b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/train.png.meta similarity index 92% rename from Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/train.png.meta rename to Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/train.png.meta index 52db8d9..c92083a 100644 --- a/Assets/Darkmatter/Content/Sprites/MiniGame/DrawingGame/art Sprite/train.png.meta +++ b/Assets/Darkmatter/Content/Colorbook UI/DrawingItems/art Sprite/train.png.meta @@ -3,7 +3,7 @@ guid: 324613166ac8504468fee2898931df61 TextureImporter: internalIDToNameTable: [] externalObjects: {} - serializedVersion: 11 + serializedVersion: 13 mipmaps: mipMapMode: 0 enableMipMap: 0 @@ -20,11 +20,12 @@ TextureImporter: externalNormalMap: 0 heightScale: 0.25 normalMapFilter: 0 + flipGreenChannel: 0 isReadable: 0 streamingMipmaps: 0 streamingMipmapsPriority: 0 vTOnly: 0 - ignoreMasterTextureLimit: 0 + ignoreMipmapLimit: 0 grayScaleToAlpha: 0 generateCubemap: 6 cubemapConvolution: 0 @@ -63,8 +64,10 @@ TextureImporter: textureFormatSet: 0 ignorePngGamma: 0 applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 1 platformSettings: - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: DefaultTexturePlatform maxTextureSize: 2048 resizeAlgorithm: 0 @@ -74,9 +77,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Standalone maxTextureSize: 2048 resizeAlgorithm: 0 @@ -86,9 +90,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Server maxTextureSize: 2048 resizeAlgorithm: 0 @@ -98,9 +103,10 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 + - serializedVersion: 4 buildTarget: Android maxTextureSize: 2048 resizeAlgorithm: 0 @@ -110,10 +116,11 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 - - serializedVersion: 3 - buildTarget: iPhone + - serializedVersion: 4 + buildTarget: iOS maxTextureSize: 2048 resizeAlgorithm: 0 textureFormat: -1 @@ -122,6 +129,7 @@ TextureImporter: crunchedCompression: 0 allowsAlphaSplitting: 0 overridden: 0 + ignorePlatformSupport: 0 androidETC2FallbackOverride: 0 forceMaximumCompressionQuality_BC6H_BC7: 0 spriteSheet: @@ -138,6 +146,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -159,6 +168,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -180,6 +190,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -201,6 +212,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -222,6 +234,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -243,6 +256,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -264,6 +278,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -285,6 +300,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -306,6 +322,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -327,6 +344,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -348,6 +366,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -369,6 +388,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -390,6 +410,7 @@ TextureImporter: alignment: 0 pivot: {x: 0, y: 0} border: {x: 0, y: 0, z: 0, w: 0} + customData: outline: [] physicsShape: [] tessellationDetail: 0 @@ -401,6 +422,7 @@ TextureImporter: edges: [] weights: [] outline: [] + customData: physicsShape: [] bones: [] spriteID: 5e97eb03825dee720800000000000000 @@ -410,23 +432,24 @@ TextureImporter: edges: [] weights: [] secondaryTextures: [] + spriteCustomMetadata: + entries: [] nameFileIdTable: - train_3: -796634813 - train_8: -403535428 - train_12: 558611236 - train_5: 964934337 - train_2: -1470039669 + train_0: -465347230 + train_1: -910605856 train_10: 2126068887 train_11: -1438319541 - train_9: 1143637174 - train_1: -910605856 - train_7: 1763890142 + train_12: 558611236 + train_2: -1470039669 + train_3: -796634813 train_4: -727442064 - train_0: -465347230 + train_5: 964934337 train_6: -2008446863 - spritePackingTag: + train_7: 1763890142 + train_8: -403535428 + train_9: 1143637174 + mipmapLimitGroupName: pSDRemoveMatte: 0 - pSDShowRemoveMatteOption: 0 userData: assetBundleName: assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/Airplane Coloring.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/Airplane Coloring.prefab index 67b2808..060007d 100644 --- a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/Airplane Coloring.prefab +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/Airplane Coloring.prefab @@ -284,13 +284,13 @@ RectTransform: m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: + - {fileID: 86201234489763977} - {fileID: 109331856778429183} - {fileID: 6267056972877482867} - {fileID: 4996267931415822967} - {fileID: 3673482587419650650} - {fileID: 8874230641307267297} - {fileID: 5181108106422498748} - - {fileID: 86201234489763977} - {fileID: 5651751824541460286} m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/BusColoring.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/BusColoring.prefab new file mode 100644 index 0000000..0a35a31 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/BusColoring.prefab @@ -0,0 +1,941 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &61014841729386815 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5006140000516052083} + - component: {fileID: 5519544179131491314} + - component: {fileID: 7623567001727260941} + - component: {fileID: 8478478662663736472} + m_Layer: 5 + m_Name: Window2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5006140000516052083 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61014841729386815} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -213.4, y: 280} + m_SizeDelta: {x: 190, y: 190} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5519544179131491314 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61014841729386815} + m_CullTransparentMesh: 1 +--- !u!114 &7623567001727260941 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61014841729386815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 0385944aeb3ff1446a81d3b5a281b1b6, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8478478662663736472 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 61014841729386815} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Window2 + alphaHitThreshold: 0.5 +--- !u!1 &248487404454529734 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 420545843054554740} + - component: {fileID: 5044212943184636686} + - component: {fileID: 8984815033743377223} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &420545843054554740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 248487404454529734} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 939, y: 540} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5044212943184636686 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 248487404454529734} + m_CullTransparentMesh: 1 +--- !u!114 &8984815033743377223 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 248487404454529734} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ea71e848b4204cf45b66769881407633, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &540457417796779835 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 206521879192876477} + - component: {fileID: 620751513753683385} + - component: {fileID: 1159013980242277489} + - component: {fileID: 7251871186353274252} + m_Layer: 5 + m_Name: Tire + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &206521879192876477 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 540457417796779835} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -494.19995, y: -353} + m_SizeDelta: {x: 179, y: 178} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &620751513753683385 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 540457417796779835} + m_CullTransparentMesh: 1 +--- !u!114 &1159013980242277489 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 540457417796779835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: effce98d0ec93824ab8aa0fa6b177b15, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7251871186353274252 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 540457417796779835} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Tire + alphaHitThreshold: 0.5 +--- !u!1 &1737520945404275239 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4598905709032103712} + - component: {fileID: 3020987195835890321} + - component: {fileID: 7887979638116966369} + - component: {fileID: 704776974701257975} + m_Layer: 5 + m_Name: headlight + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4598905709032103712 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737520945404275239} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 899.4, y: -197.20001} + m_SizeDelta: {x: 29, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3020987195835890321 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737520945404275239} + m_CullTransparentMesh: 1 +--- !u!114 &7887979638116966369 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737520945404275239} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 1c435501656fc8242baa8c1118c1a269, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &704776974701257975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737520945404275239} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: headlight + alphaHitThreshold: 0.5 +--- !u!1 &3434652705870330196 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4219736225199316737} + - component: {fileID: 2431551535064674502} + - component: {fileID: 4233689875333604492} + - component: {fileID: 7052476789261578619} + m_Layer: 5 + m_Name: Window1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4219736225199316737 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3434652705870330196} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -668, y: 280} + m_SizeDelta: {x: 195, y: 190} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2431551535064674502 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3434652705870330196} + m_CullTransparentMesh: 1 +--- !u!114 &4233689875333604492 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3434652705870330196} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 55f69ddf583714043931e75b90542ddd, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7052476789261578619 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3434652705870330196} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Window1 + alphaHitThreshold: 0.5 +--- !u!1 &3513942592131047567 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4926276885604191077} + - component: {fileID: 518508701870216923} + - component: {fileID: 7074400106651861673} + - component: {fileID: 6681884377603448242} + m_Layer: 5 + m_Name: Window22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4926276885604191077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3513942592131047567} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 242.59999, y: 280} + m_SizeDelta: {x: 190, y: 190} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &518508701870216923 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3513942592131047567} + m_CullTransparentMesh: 1 +--- !u!114 &7074400106651861673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3513942592131047567} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 0385944aeb3ff1446a81d3b5a281b1b6, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &6681884377603448242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3513942592131047567} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Window22 + alphaHitThreshold: 0.5 +--- !u!1 &4538007528750545055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3023006232932200137} + - component: {fileID: 1498696091165073313} + - component: {fileID: 4210070509144935472} + - component: {fileID: 1104655427901346846} + m_Layer: 5 + m_Name: Tire (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3023006232932200137 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538007528750545055} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 518, y: -353} + m_SizeDelta: {x: 179, y: 178} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1498696091165073313 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538007528750545055} + m_CullTransparentMesh: 1 +--- !u!114 &4210070509144935472 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538007528750545055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: effce98d0ec93824ab8aa0fa6b177b15, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1104655427901346846 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4538007528750545055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Tire__1 + alphaHitThreshold: 0.5 +--- !u!1 &7264813169559892653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6845479108815324884} + - component: {fileID: 7825077430164910674} + - component: {fileID: 7714399990502153080} + - component: {fileID: 2237485104650985480} + m_Layer: 5 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6845479108815324884 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7264813169559892653} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 84.000015} + m_SizeDelta: {x: 931, y: 441} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7825077430164910674 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7264813169559892653} + m_CullTransparentMesh: 1 +--- !u!114 &7714399990502153080 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7264813169559892653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 32505e9d83293ac42b503e5c4e8eace1, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &2237485104650985480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7264813169559892653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Body + alphaHitThreshold: 0.5 +--- !u!1 &7561951831860265998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5693229947874877390} + - component: {fileID: 6393286192315251142} + m_Layer: 5 + m_Name: BusColoring + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5693229947874877390 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7561951831860265998} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6845479108815324884} + - {fileID: 206521879192876477} + - {fileID: 3023006232932200137} + - {fileID: 4598905709032103712} + - {fileID: 5368624628991933660} + - {fileID: 4219736225199316737} + - {fileID: 5006140000516052083} + - {fileID: 4926276885604191077} + - {fileID: 9124356469678477110} + - {fileID: 420545843054554740} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6393286192315251142 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7561951831860265998} + m_CullTransparentMesh: 1 +--- !u!1 &8506140409217855061 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5368624628991933660} + - component: {fileID: 5680683312430558441} + - component: {fileID: 5032288269979361086} + - component: {fileID: 1437414530546651285} + m_Layer: 5 + m_Name: BodyLine + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5368624628991933660 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8506140409217855061} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -205.20013, y: -42.000008} + m_SizeDelta: {x: 652, y: 42} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5680683312430558441 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8506140409217855061} + m_CullTransparentMesh: 1 +--- !u!114 &5032288269979361086 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8506140409217855061} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 2f405d246df8a0b41954f624bcf56848, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1437414530546651285 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8506140409217855061} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: BodyLine + alphaHitThreshold: 0.5 +--- !u!1 &9072418371592739951 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9124356469678477110} + - component: {fileID: 233456097425568569} + - component: {fileID: 1306749244105387086} + - component: {fileID: 8143833832464480859} + m_Layer: 5 + m_Name: Window3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &9124356469678477110 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072418371592739951} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5693229947874877390} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 679.19995, y: 281.6001} + m_SizeDelta: {x: 177, y: 189} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &233456097425568569 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072418371592739951} + m_CullTransparentMesh: 1 +--- !u!114 &1306749244105387086 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072418371592739951} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: df717fa999b875b46b26bd158efa5cfe, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8143833832464480859 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9072418371592739951} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Window3 + alphaHitThreshold: 0.5 diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/BusColoring.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/BusColoring.prefab.meta new file mode 100644 index 0000000..b90fe99 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/BusColoring.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 39b61120601346945bcde283b8154efe +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/DonutColoring.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/DonutColoring.prefab new file mode 100644 index 0000000..f1e06fc --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/DonutColoring.prefab @@ -0,0 +1,304 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &204407023774609963 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1791803800061154093} + - component: {fileID: 2498016676840074746} + - component: {fileID: 5478140694375792441} + - component: {fileID: 1358928920668057403} + m_Layer: 5 + m_Name: DonutLower + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1791803800061154093 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204407023774609963} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6895675114879012823} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: -208} + m_SizeDelta: {x: 436, y: 223} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2498016676840074746 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204407023774609963} + m_CullTransparentMesh: 1 +--- !u!114 &5478140694375792441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204407023774609963} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 2141515566, guid: 4cf3f806c042e374a8578e4de7b539f4, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1358928920668057403 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204407023774609963} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: DonutLower + alphaHitThreshold: 0.5 +--- !u!1 &2441179684235743201 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3333513173273572624} + - component: {fileID: 7221193984822469707} + - component: {fileID: 6437335631126350441} + - component: {fileID: 4254020829810810865} + m_Layer: 5 + m_Name: DonutUpper + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3333513173273572624 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2441179684235743201} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6895675114879012823} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 144.00012} + m_SizeDelta: {x: 432, y: 288} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7221193984822469707 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2441179684235743201} + m_CullTransparentMesh: 1 +--- !u!114 &6437335631126350441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2441179684235743201} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1356670513, guid: 4cf3f806c042e374a8578e4de7b539f4, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4254020829810810865 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2441179684235743201} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: DonutUpper + alphaHitThreshold: 0.5 +--- !u!1 &3951261677170865858 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6895675114879012823} + - component: {fileID: 8579286957572500493} + m_Layer: 5 + m_Name: DonutColoring + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6895675114879012823 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3951261677170865858} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3333513173273572624} + - {fileID: 1791803800061154093} + - {fileID: 1909001979913916972} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8579286957572500493 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3951261677170865858} + m_CullTransparentMesh: 1 +--- !u!1 &4110525332165832109 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1909001979913916972} + - component: {fileID: 6705846319826681339} + - component: {fileID: 625188889204090608} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1909001979913916972 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4110525332165832109} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 6895675114879012823} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 445, y: 445} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6705846319826681339 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4110525332165832109} + m_CullTransparentMesh: 1 +--- !u!114 &625188889204090608 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4110525332165832109} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -786678772, guid: 4cf3f806c042e374a8578e4de7b539f4, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/DonutColoring.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/DonutColoring.prefab.meta new file mode 100644 index 0000000..6eba941 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/DonutColoring.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 01160fc615a51ed408d3666c6eb5f470 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/ElephantColoring.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/ElephantColoring.prefab new file mode 100644 index 0000000..4f5ab21 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/ElephantColoring.prefab @@ -0,0 +1,577 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2862226256240853650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1775823278559303034} + - component: {fileID: 1469066732143108260} + - component: {fileID: 8056567489453767604} + - component: {fileID: 4095831494732687477} + m_Layer: 5 + m_Name: Tail2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1775823278559303034 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2862226256240853650} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 389094188378127378} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 764.1999, y: -256.80005} + m_SizeDelta: {x: 44, y: 105} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1469066732143108260 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2862226256240853650} + m_CullTransparentMesh: 1 +--- !u!114 &8056567489453767604 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2862226256240853650} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -485425681, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4095831494732687477 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2862226256240853650} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Tail2 + alphaHitThreshold: 0.5 +--- !u!1 &3267844036110204754 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5433417474387533054} + - component: {fileID: 3299780106906752706} + - component: {fileID: 5010233004024363837} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5433417474387533054 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3267844036110204754} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 389094188378127378} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -5, y: -40} + m_SizeDelta: {x: 818, y: 541} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3299780106906752706 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3267844036110204754} + m_CullTransparentMesh: 1 +--- !u!114 &5010233004024363837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3267844036110204754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 989389395, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3734032543737799512 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 158060946605389300} + - component: {fileID: 6034152515885601586} + - component: {fileID: 2524065463423770795} + - component: {fileID: 5105835538396181556} + m_Layer: 5 + m_Name: Teeth1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &158060946605389300 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3734032543737799512} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 389094188378127378} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -686.99994, y: -46.00004} + m_SizeDelta: {x: 105, y: 60} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6034152515885601586 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3734032543737799512} + m_CullTransparentMesh: 1 +--- !u!114 &2524065463423770795 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3734032543737799512} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1195131000, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &5105835538396181556 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3734032543737799512} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Teeth1 + alphaHitThreshold: 0.5 +--- !u!1 &4993434191946938937 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3664372366403347900} + - component: {fileID: 918082271504405994} + - component: {fileID: 5952497216163798020} + - component: {fileID: 5645839456667235574} + m_Layer: 5 + m_Name: Tail1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3664372366403347900 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4993434191946938937} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 389094188378127378} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 765.6001, y: -16.800035} + m_SizeDelta: {x: 40, y: 141} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &918082271504405994 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4993434191946938937} + m_CullTransparentMesh: 1 +--- !u!114 &5952497216163798020 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4993434191946938937} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1675424742, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &5645839456667235574 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4993434191946938937} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Tail1 + alphaHitThreshold: 0.5 +--- !u!1 &5260750815744919328 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5860788601535837548} + - component: {fileID: 3239001638077519853} + - component: {fileID: 5480002338647418159} + - component: {fileID: 1068242655667727489} + m_Layer: 5 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5860788601535837548 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5260750815744919328} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 389094188378127378} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -41.00006, y: -31.999989} + m_SizeDelta: {x: 774, y: 533} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3239001638077519853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5260750815744919328} + m_CullTransparentMesh: 1 +--- !u!114 &5480002338647418159 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5260750815744919328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1027046813, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1068242655667727489 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5260750815744919328} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Body + alphaHitThreshold: 0.5 +--- !u!1 &5941430379815235694 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1498232481526056696} + - component: {fileID: 8596319089710319277} + - component: {fileID: 8379945656296940443} + - component: {fileID: 7306094471635990169} + m_Layer: 5 + m_Name: Teeth2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1498232481526056696 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941430379815235694} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 389094188378127378} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -590, y: -88.000046} + m_SizeDelta: {x: 140, y: 96} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8596319089710319277 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941430379815235694} + m_CullTransparentMesh: 1 +--- !u!114 &8379945656296940443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941430379815235694} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1256696494, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7306094471635990169 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5941430379815235694} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Teeth2 + alphaHitThreshold: 0.5 +--- !u!1 &6410834243504673730 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 389094188378127378} + - component: {fileID: 3800400888420939438} + m_Layer: 5 + m_Name: ElephantColoring + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &389094188378127378 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6410834243504673730} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5860788601535837548} + - {fileID: 158060946605389300} + - {fileID: 1498232481526056696} + - {fileID: 3664372366403347900} + - {fileID: 1775823278559303034} + - {fileID: 5433417474387533054} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3800400888420939438 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6410834243504673730} + m_CullTransparentMesh: 1 diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/ElephantColoring.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/ElephantColoring.prefab.meta new file mode 100644 index 0000000..d1ec779 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/ElephantColoring.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a8185c6e543861a4eb789c869a15b5fe +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FishColoring.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FishColoring.prefab new file mode 100644 index 0000000..4b35576 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FishColoring.prefab @@ -0,0 +1,759 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &929232189499910153 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1027414579608789872} + - component: {fileID: 8700470899783395153} + - component: {fileID: 3317507776492714284} + - component: {fileID: 7423176409545934019} + m_Layer: 5 + m_Name: Eyes + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1027414579608789872 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 929232189499910153} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -462.6, y: 68.4} + m_SizeDelta: {x: 47, y: 45} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8700470899783395153 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 929232189499910153} + m_CullTransparentMesh: 1 +--- !u!114 &3317507776492714284 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 929232189499910153} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 114051177, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7423176409545934019 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 929232189499910153} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Eyes + alphaHitThreshold: 0.5 +--- !u!1 &1142701175617632950 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8502267361364018647} + - component: {fileID: 1264583429255459552} + - component: {fileID: 5520852540661631195} + - component: {fileID: 8868943380725905011} + m_Layer: 5 + m_Name: Fins2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8502267361364018647 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142701175617632950} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 196.80011, y: -216.80002} + m_SizeDelta: {x: 140, y: 78} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1264583429255459552 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142701175617632950} + m_CullTransparentMesh: 1 +--- !u!114 &5520852540661631195 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142701175617632950} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1017494566, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8868943380725905011 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142701175617632950} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Fins2 + alphaHitThreshold: 0.5 +--- !u!1 &1964528398430309046 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4577872578551638132} + - component: {fileID: 545035188036251235} + - component: {fileID: 2705903756084002860} + - component: {fileID: 3749721932108013294} + m_Layer: 5 + m_Name: Tail + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4577872578551638132 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1964528398430309046} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 490, y: -1.9998882} + m_SizeDelta: {x: 145, y: 240} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &545035188036251235 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1964528398430309046} + m_CullTransparentMesh: 1 +--- !u!114 &2705903756084002860 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1964528398430309046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1749798937, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &3749721932108013294 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1964528398430309046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Tail + alphaHitThreshold: 0.5 +--- !u!1 &2637163538870050105 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2733734855145133697} + - component: {fileID: 846842840343600263} + - component: {fileID: 3746170219351321239} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2733734855145133697 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2637163538870050105} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 638, y: 470} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &846842840343600263 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2637163538870050105} + m_CullTransparentMesh: 1 +--- !u!114 &3746170219351321239 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2637163538870050105} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1199372990, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3954618639631208291 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4335470633262443415} + - component: {fileID: 3342011410025432915} + - component: {fileID: 6368433769965257229} + - component: {fileID: 2128571532038708410} + m_Layer: 5 + m_Name: Fins1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4335470633262443415 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3954618639631208291} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -39.999977, y: 330.3999} + m_SizeDelta: {x: 207, y: 138} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3342011410025432915 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3954618639631208291} + m_CullTransparentMesh: 1 +--- !u!114 &6368433769965257229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3954618639631208291} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 277085793, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &2128571532038708410 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3954618639631208291} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Fins1 + alphaHitThreshold: 0.5 +--- !u!1 &4631451859484139943 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6944326745657498635} + - component: {fileID: 2222544365304875254} + - component: {fileID: 499560196890138376} + - component: {fileID: 8181703663727688285} + m_Layer: 5 + m_Name: Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6944326745657498635 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4631451859484139943} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -457.99994, y: 25.999931} + m_SizeDelta: {x: 178, y: 206} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2222544365304875254 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4631451859484139943} + m_CullTransparentMesh: 1 +--- !u!114 &499560196890138376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4631451859484139943} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1297287344, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &8181703663727688285 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4631451859484139943} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Head + alphaHitThreshold: 0.5 +--- !u!1 &5063334456675298251 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4504060449601664066} + - component: {fileID: 7736072287240342610} + - component: {fileID: 5665107986590526087} + - component: {fileID: 7585689170879500218} + m_Layer: 5 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4504060449601664066 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5063334456675298251} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -23.999905, y: 15.999936} + m_SizeDelta: {x: 404, y: 287} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7736072287240342610 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5063334456675298251} + m_CullTransparentMesh: 1 +--- !u!114 &5665107986590526087 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5063334456675298251} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1318590322, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7585689170879500218 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5063334456675298251} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Body + alphaHitThreshold: 0.5 +--- !u!1 &6558705316041450001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3050990081819465268} + - component: {fileID: 8862112481986475133} + m_Layer: 5 + m_Name: FishColoring + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3050990081819465268 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6558705316041450001} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6944326745657498635} + - {fileID: 4504060449601664066} + - {fileID: 1027414579608789872} + - {fileID: 4577872578551638132} + - {fileID: 4335470633262443415} + - {fileID: 8502267361364018647} + - {fileID: 3127752972247708273} + - {fileID: 2733734855145133697} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8862112481986475133 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6558705316041450001} + m_CullTransparentMesh: 1 +--- !u!1 &7028906140879112670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3127752972247708273} + - component: {fileID: 815073444530284532} + - component: {fileID: 6665756108032006278} + - component: {fileID: 7232141362620455544} + m_Layer: 5 + m_Name: Fins3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3127752972247708273 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7028906140879112670} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3050990081819465268} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -180.00005, y: -358} + m_SizeDelta: {x: 91, y: 108} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &815073444530284532 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7028906140879112670} + m_CullTransparentMesh: 1 +--- !u!114 &6665756108032006278 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7028906140879112670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 812911621, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7232141362620455544 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7028906140879112670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Fins3 + alphaHitThreshold: 0.5 diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FishColoring.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FishColoring.prefab.meta new file mode 100644 index 0000000..2b33909 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FishColoring.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8665107ae6cda374e86672d142c3179b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FrogColoring.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FrogColoring.prefab new file mode 100644 index 0000000..4aa5269 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FrogColoring.prefab @@ -0,0 +1,941 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1077634956084456640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7732931227970698859} + - component: {fileID: 708177376203988292} + - component: {fileID: 4483372835957429981} + - component: {fileID: 3799347520811889886} + m_Layer: 5 + m_Name: Tongue + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7732931227970698859 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077634956084456640} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -59.850105, y: 167.10002} + m_SizeDelta: {x: 189, y: 60} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &708177376203988292 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077634956084456640} + m_CullTransparentMesh: 1 +--- !u!114 &4483372835957429981 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077634956084456640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 309356697, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &3799347520811889886 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077634956084456640} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Tongue + alphaHitThreshold: 0.5 +--- !u!1 &1196150409111143345 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8713146880366692101} + - component: {fileID: 3776633658502274810} + - component: {fileID: 3423179506069069317} + - component: {fileID: 4886940886868084822} + m_Layer: 5 + m_Name: Head + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8713146880366692101 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196150409111143345} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -40.500084, y: 346.50003} + m_SizeDelta: {x: 413, y: 230} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3776633658502274810 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196150409111143345} + m_CullTransparentMesh: 1 +--- !u!114 &3423179506069069317 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196150409111143345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1221985980, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4886940886868084822 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1196150409111143345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Head + alphaHitThreshold: 0.5 +--- !u!1 &1415459184671655974 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4954180409987358819} + - component: {fileID: 1488762096900584886} + - component: {fileID: 439060940265053888} + - component: {fileID: 1072447526264759224} + m_Layer: 5 + m_Name: Face + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4954180409987358819 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415459184671655974} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -28.499977, y: 144.00003} + m_SizeDelta: {x: 392, y: 144} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1488762096900584886 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415459184671655974} + m_CullTransparentMesh: 1 +--- !u!114 &439060940265053888 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415459184671655974} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -322429906, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1072447526264759224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1415459184671655974} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Face + alphaHitThreshold: 0.5 +--- !u!1 &3710737284374386006 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2074612679143639871} + - component: {fileID: 2317904216087194796} + - component: {fileID: 5173042851090515429} + - component: {fileID: 6705647733323832468} + m_Layer: 5 + m_Name: Leg1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2074612679143639871 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3710737284374386006} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -323.70007, y: -262.49997} + m_SizeDelta: {x: 159, y: 308} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2317904216087194796 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3710737284374386006} + m_CullTransparentMesh: 1 +--- !u!114 &5173042851090515429 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3710737284374386006} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1124181653, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &6705647733323832468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3710737284374386006} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Leg1 + alphaHitThreshold: 0.5 +--- !u!1 &3917840421561943966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7731562155482351100} + - component: {fileID: 6757316184680174165} + - component: {fileID: 3255525086084947053} + - component: {fileID: 5953768500255848019} + m_Layer: 5 + m_Name: Hand1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7731562155482351100 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3917840421561943966} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -146.99992, y: -298.49994} + m_SizeDelta: {x: 125, y: 270} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6757316184680174165 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3917840421561943966} + m_CullTransparentMesh: 1 +--- !u!114 &3255525086084947053 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3917840421561943966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1370799833, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &5953768500255848019 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3917840421561943966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Hand1 + alphaHitThreshold: 0.5 +--- !u!1 &4834999144603659930 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2078981297556416312} + - component: {fileID: 3343804371485221108} + - component: {fileID: 6693269729500841944} + - component: {fileID: 6238187423121040782} + m_Layer: 5 + m_Name: Mouth + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2078981297556416312 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4834999144603659930} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -141.30003, y: 180.44998} + m_SizeDelta: {x: 120, y: 48} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3343804371485221108 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4834999144603659930} + m_CullTransparentMesh: 1 +--- !u!114 &6693269729500841944 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4834999144603659930} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1962598838, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &6238187423121040782 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4834999144603659930} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Mouth + alphaHitThreshold: 0.5 +--- !u!1 &4940528403607588797 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8249023168469903344} + - component: {fileID: 1299400658546600984} + m_Layer: 5 + m_Name: FrogColoring + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8249023168469903344 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4940528403607588797} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8713146880366692101} + - {fileID: 4954180409987358819} + - {fileID: 6657492457512783369} + - {fileID: 7732931227970698859} + - {fileID: 2078981297556416312} + - {fileID: 2074612679143639871} + - {fileID: 4177816259296289111} + - {fileID: 7731562155482351100} + - {fileID: 572848817225485877} + - {fileID: 461120762025483678} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1299400658546600984 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4940528403607588797} + m_CullTransparentMesh: 1 +--- !u!1 &5209577240687933159 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4177816259296289111} + - component: {fileID: 1244893065685695908} + - component: {fileID: 3329044682554623560} + - component: {fileID: 1516987774740120704} + m_Layer: 5 + m_Name: Leg2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4177816259296289111 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5209577240687933159} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 313.5, y: -268.49997} + m_SizeDelta: {x: 168, y: 326} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1244893065685695908 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5209577240687933159} + m_CullTransparentMesh: 1 +--- !u!114 &3329044682554623560 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5209577240687933159} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 319372031, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1516987774740120704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5209577240687933159} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Leg2 + alphaHitThreshold: 0.5 +--- !u!1 &5272431409641328039 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 461120762025483678} + - component: {fileID: 4696321556261320613} + - component: {fileID: 644493697499047415} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &461120762025483678 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5272431409641328039} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.5, y: 1.5, z: 1.5} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 593, y: 697} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &4696321556261320613 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5272431409641328039} + m_CullTransparentMesh: 1 +--- !u!114 &644493697499047415 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5272431409641328039} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1535771922, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &6219811306221248510 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 572848817225485877} + - component: {fileID: 837655868043895920} + - component: {fileID: 8393873273199277080} + - component: {fileID: 452412475354122915} + m_Layer: 5 + m_Name: Hand2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &572848817225485877 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6219811306221248510} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 102.600136, y: -299.7} + m_SizeDelta: {x: 134, y: 288} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &837655868043895920 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6219811306221248510} + m_CullTransparentMesh: 1 +--- !u!114 &8393873273199277080 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6219811306221248510} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 332724024, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &452412475354122915 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6219811306221248510} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Hand2 + alphaHitThreshold: 0.5 +--- !u!1 &7724272984584797090 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6657492457512783369} + - component: {fileID: 8801871774774902003} + - component: {fileID: 5780167298115559297} + - component: {fileID: 4347307454922856261} + m_Layer: 5 + m_Name: Body + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6657492457512783369 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7724272984584797090} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.4999999, y: 1.4999999, z: 1.4999999} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 8249023168469903344} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -4.50004, y: -161.99998} + m_SizeDelta: {x: 352, y: 319} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8801871774774902003 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7724272984584797090} + m_CullTransparentMesh: 1 +--- !u!114 &5780167298115559297 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7724272984584797090} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -1553512708, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &4347307454922856261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7724272984584797090} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7667901d8aea645d28b5125a2ed546ce, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Coloring::Darkmatter.Features.Coloring.UI.ColorRegionView + k__BackingField: Body + alphaHitThreshold: 0.5 diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FrogColoring.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FrogColoring.prefab.meta new file mode 100644 index 0000000..527afaf --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/ColoringPrefabs/FrogColoring.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1c5c7b9cf2cccf342b6fd892679e0087 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/BusDrawing.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/BusDrawing.prefab new file mode 100644 index 0000000..cda3ddf --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/BusDrawing.prefab @@ -0,0 +1,467 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5958588885977327045 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8597393457032412479} + - component: {fileID: 220058656792078663} + m_Layer: 5 + m_Name: BusDrawing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &8597393457032412479 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5958588885977327045} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1885853167160220244} + - {fileID: 9053634061186131119} + - {fileID: 1695350125782219791} + - {fileID: 8023892140005331143} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &220058656792078663 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5958588885977327045} + m_CullTransparentMesh: 1 +--- !u!1 &8440130454279322585 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8023892140005331143} + - component: {fileID: 7971618897734064024} + - component: {fileID: 6296213643972186608} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &8023892140005331143 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8440130454279322585} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 8597393457032412479} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 818, y: 403} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &7971618897734064024 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8440130454279322585} + m_CullTransparentMesh: 1 +--- !u!114 &6296213643972186608 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8440130454279322585} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: e961db1092951844490060244994be05, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &2676371887328705772 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 8597393457032412479} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 155.844 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 155.84 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 396 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -239.99994 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &1695350125782219791 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 2676371887328705772} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2859329305481242016 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 8597393457032412479} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: Recatngle + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 818 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 323.031 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0.0019731235 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: 79.97211 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &1885853167160220244 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 2859329305481242016} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5694676169490195532 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 8597393457032412479} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 155.844 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 155.84 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -366.00003 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -239.99994 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &9053634061186131119 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 5694676169490195532} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/BusDrawing.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/BusDrawing.prefab.meta new file mode 100644 index 0000000..8e1a7fb --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/BusDrawing.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 99d1fc2dbd73d934586f425777074054 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/DonutDrawing.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/DonutDrawing.prefab new file mode 100644 index 0000000..35d65c3 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/DonutDrawing.prefab @@ -0,0 +1,356 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6565355008961856210 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8241958127387575463} + - component: {fileID: 8730526663268684827} + - component: {fileID: 766909134526584708} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &8241958127387575463 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6565355008961856210} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 3764323147721730535} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 445, y: 445} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8730526663268684827 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6565355008961856210} + m_CullTransparentMesh: 1 +--- !u!114 &766909134526584708 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6565355008961856210} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: -786678772, guid: 4cf3f806c042e374a8578e4de7b539f4, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &7032823913612743370 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3764323147721730535} + - component: {fileID: 5399728176369577855} + m_Layer: 5 + m_Name: DonutDrawing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3764323147721730535 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032823913612743370} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7580477859075502605} + - {fileID: 1380212431425597692} + - {fileID: 8241958127387575463} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5399728176369577855 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7032823913612743370} + m_CullTransparentMesh: 1 +--- !u!1001 &2415066419437465631 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 3764323147721730535} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 264.227 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 264.228 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 7.999968 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -4.0000534 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &1380212431425597692 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 2415066419437465631} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6597827927433327342 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 3764323147721730535} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 464.088 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 464.09 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 7.999968 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -4.0000534 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &7580477859075502605 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 6597827927433327342} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/DonutDrawing.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/DonutDrawing.prefab.meta new file mode 100644 index 0000000..89ddf4e --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/DonutDrawing.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3423ca2826a04e744b9fc304b2fd2d02 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/ElephantDrawing.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/ElephantDrawing.prefab new file mode 100644 index 0000000..6353392 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/ElephantDrawing.prefab @@ -0,0 +1,1530 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &742296842112915006 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7619630049825030030} + - component: {fileID: 342279070491839104} + m_Layer: 5 + m_Name: ElephantDrawing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7619630049825030030 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 742296842112915006} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 4994450348650482775} + - {fileID: 8389420934590415344} + - {fileID: 2330328013336949585} + - {fileID: 6253141795140684095} + - {fileID: 2997075498255761918} + - {fileID: 6591104623652870645} + - {fileID: 7601899883289731245} + - {fileID: 6972506743707885195} + - {fileID: 6197303542567975413} + - {fileID: 1344939993818413471} + - {fileID: 674810978670082681} + - {fileID: 5484342192078924627} + - {fileID: 7662874926501723482} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &342279070491839104 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 742296842112915006} + m_CullTransparentMesh: 1 +--- !u!1 &5824806260797951222 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7662874926501723482} + - component: {fileID: 2177905581715469403} + - component: {fileID: 4759962141525173871} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &7662874926501723482 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5824806260797951222} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.7, y: 1.7, z: 1.7} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 7619630049825030030} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -5, y: -40} + m_SizeDelta: {x: 880, y: 627} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2177905581715469403 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5824806260797951222} + m_CullTransparentMesh: 1 +--- !u!114 &4759962141525173871 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5824806260797951222} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 0.2830189, g: 0.2830189, b: 0.2830189, a: 0.84313726} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 77dab70b3026b4d47b975bab7e33fef6, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1001 &1820158906252208812 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_SizeDelta.x + value: 588.456 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_SizeDelta.y + value: 413.851 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchoredPosition.x + value: 116.77455 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchoredPosition.y + value: -54.45857 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8177199881523649195, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Name + value: Body + objectReference: {fileID: 0} + - target: {fileID: 8177199881523649195, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 483b170ade7354414929ed6252fa552e, type: 3} +--- !u!224 &6591104623652870645 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + m_PrefabInstance: {fileID: 1820158906252208812} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2149194863485422757 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: BackLeg1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 49.681 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 124.339 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: 287.9457 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -462.34125 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &2330328013336949585 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 2149194863485422757} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2426924164782541727 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 76.842 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 152.98 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: -0.32400942 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0.00000011791383 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0.0000003554599 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: 0.94605386 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 640.49 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -198.09999 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -142.189 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Triangle + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_PreserveAspect + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &2997075498255761918 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 2426924164782541727} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3400123574289204843 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: Trunk + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 67.436 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 268.033 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: -234.74661 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -86.72107 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &1344939993818413471 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 3400123574289204843} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4322924555276515994 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 61.844 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 61.844 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -316.09998 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 243.89993 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &674810978670082681 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 4322924555276515994} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5325700383577701892 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: FrontLeg2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 95.014 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 129.092 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: 33.783672 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -458.3002 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &8389420934590415344 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 5325700383577701892} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7009489194744703692 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 276.662 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 266.553 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999998 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999998 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.38268343 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: -0.92387956 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 312.9 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: 206.49997 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -135 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Ear1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_PreserveAspect + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &7601899883289731245 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 7009489194744703692} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7251441107902445846 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 316.804 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 316.804 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -212.40002 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 201.40002 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Head + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &6197303542567975413 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 7251441107902445846} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7564564215216362730 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 276.662 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 266.553 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 1.7 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.92387956 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: 0.38268343 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: -715.5999 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: 206.49997 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 45 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Ear2 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_PreserveAspect + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &6972506743707885195 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 7564564215216362730} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7728769567936345803 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: BackLeg2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 95.014 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 169.708 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: 410.93573 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -423.77673 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &6253141795140684095 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 7728769567936345803} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8703874291148583843 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: FrontLeg1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 48.323 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 129.092 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: -88.05177 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -458.3002 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &4994450348650482775 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 8703874291148583843} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9133082146518674352 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 7619630049825030030} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 61.844 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 61.844 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 1.6999999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -139.46999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 243.89993 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &5484342192078924627 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 9133082146518674352} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/ElephantDrawing.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/ElephantDrawing.prefab.meta new file mode 100644 index 0000000..1ca573e --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/ElephantDrawing.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 72fb2132f9c2db84a9f69e0987881b4d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FishDrawing.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FishDrawing.prefab new file mode 100644 index 0000000..db01a2e --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FishDrawing.prefab @@ -0,0 +1,848 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &294159460544071015 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9197093884267873835} + - component: {fileID: 9011169269421367182} + - component: {fileID: 8660345229487451690} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &9197093884267873835 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294159460544071015} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 2469387757572773248} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -5, y: -40} + m_SizeDelta: {x: 466, y: 456} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &9011169269421367182 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294159460544071015} + m_CullTransparentMesh: 1 +--- !u!114 &8660345229487451690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 294159460544071015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 1422138014, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &830151417515138702 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2469387757572773248} + - component: {fileID: 2856628791952687124} + m_Layer: 5 + m_Name: FishDrawing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2469387757572773248 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 830151417515138702} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1060224653914720711} + - {fileID: 3409973025274235484} + - {fileID: 8816832255980452898} + - {fileID: 4637382670675397410} + - {fileID: 3950916442068918055} + - {fileID: 7024475259543639282} + - {fileID: 9197093884267873835} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &2856628791952687124 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 830151417515138702} + m_CullTransparentMesh: 1 +--- !u!1001 &472673823805784998 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2469387757572773248} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 254.2279 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 251.759 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.38268343 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: -0.92387956 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 449.0001 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -49.99995 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -135 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Tail + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &1060224653914720711 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 472673823805784998} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1819673317316012864 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2469387757572773248} + m_Modifications: + - target: {fileID: 3388453239853753565, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_Name + value: Body1 + objectReference: {fileID: 0} + - target: {fileID: 3388453239853753565, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_SizeDelta.x + value: 117.4137 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_SizeDelta.y + value: 121.2349 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_AnchoredPosition.x + value: 94.760666 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_AnchoredPosition.y + value: -53.983154 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} +--- !u!224 &8816832255980452898 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 7141417102443485026, guid: 4d7801ac4730f46b6ba82c8025ebd177, type: 3} + m_PrefabInstance: {fileID: 1819673317316012864} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2840437126384943165 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2469387757572773248} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 321.8424 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 322.68 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.38268343 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: -0.92387956 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: -19.000042 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -41.999985 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -135 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Head + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &3409973025274235484 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 2840437126384943165} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4534442509327635782 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2469387757572773248} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 119.2003 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 118.0425 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 95.600044 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -292.19995 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -180 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Body3 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &3950916442068918055 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 4534442509327635782} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5215907352532468035 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2469387757572773248} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 119.2003 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 118.0425 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: -0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 94.13203 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: 186.4603 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: -90 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Body2 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &4637382670675397410 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 5215907352532468035} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6041727266216891409 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 2469387757572773248} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 34.7414 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 34.7414 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -338.99988 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: -11.400046 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Eye + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &7024475259543639282 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 6041727266216891409} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FishDrawing.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FishDrawing.prefab.meta new file mode 100644 index 0000000..6cf18f2 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FishDrawing.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0d54e126357cbb740bf370f1c7e70e50 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FrogDrawing.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FrogDrawing.prefab new file mode 100644 index 0000000..b49349f --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FrogDrawing.prefab @@ -0,0 +1,1559 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2725976506055647732 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 23065999396848008} + - component: {fileID: 9028712484196888119} + - component: {fileID: 71397253528406778} + m_Layer: 5 + m_Name: Outline + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &23065999396848008 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2725976506055647732} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 428665110843127602} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 388, y: 465} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &9028712484196888119 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2725976506055647732} + m_CullTransparentMesh: 1 +--- !u!114 &71397253528406778 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2725976506055647732} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: e8c17b8c30e847146986743b84dab1d0, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!1 &3594252390097820856 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 428665110843127602} + - component: {fileID: 1224449749973910772} + m_Layer: 5 + m_Name: FrogDrawing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &428665110843127602 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3594252390097820856} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 5980705335490319841} + - {fileID: 3827914630025194271} + - {fileID: 4865372911218495953} + - {fileID: 4395355706141181590} + - {fileID: 7463967203059801916} + - {fileID: 2667595566792915311} + - {fileID: 5835337644252729468} + - {fileID: 8219209794829073701} + - {fileID: 3900791514933475942} + - {fileID: 1858232171101436285} + - {fileID: 7878587756149477982} + - {fileID: 23065999396848008} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1224449749973910772 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3594252390097820856} + m_CullTransparentMesh: 1 +--- !u!1001 &125969641990398600 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_SizeDelta.x + value: 300.246 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_SizeDelta.y + value: 170.242 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchoredPosition.x + value: 7.9519997 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_AnchoredPosition.y + value: 180.19994 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8177199881523649195, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Name + value: Head + objectReference: {fileID: 0} + - target: {fileID: 8177199881523649195, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9117445751559814248, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9117445751559814248, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9117445751559814248, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9117445751559814248, guid: 483b170ade7354414929ed6252fa552e, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 483b170ade7354414929ed6252fa552e, type: 3} +--- !u!224 &4865372911218495953 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4772353642633016153, guid: 483b170ade7354414929ed6252fa552e, type: 3} + m_PrefabInstance: {fileID: 125969641990398600} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &557331358927825916 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 67.971 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 69.386 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 128.80002 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 392.5999 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Eyes + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &3827914630025194271 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 557331358927825916} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3128508227793992094 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 24.076 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 24.076 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -32.799995 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 247.59991 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &1858232171101436285 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 3128508227793992094} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3259725330792461070 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 74.463 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 74.653 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.34674537 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: -0.9379594 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 281 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -183.00002 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 220.577 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Hand2 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &2667595566792915311 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 3259725330792461070} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3802896638413573367 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 225.35 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 225.93 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.38268343 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: 0.92387956 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: 6.600033 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -303.19998 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 135 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: body + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &4395355706141181590 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 3802896638413573367} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5734765055057134289 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: Leg2 + objectReference: {fileID: 0} + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 30.11 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 55.422 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: 79.199974 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -343.39996 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &8219209794829073701 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 5734765055057134289} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6914476965750641341 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 24.076 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 24.076 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: 60.60006 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 247.59991 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Circle (1) + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &7878587756149477982 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 6914476965750641341} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6943651400619857154 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1825175764228994942, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.x + value: 67.971 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_SizeDelta.y + value: 69.386 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.x + value: -114.47996 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_AnchoredPosition.y + value: 395.61993 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_Name + value: Eyes + objectReference: {fileID: 0} + - target: {fileID: 4388206011285020732, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} +--- !u!224 &5980705335490319841 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 3648889831887995107, guid: ed3abc5b1c6bc43938850705ab3e4d4b, type: 3} + m_PrefabInstance: {fileID: 6943651400619857154} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7065301207686603813 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 2246199958633846422, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2246199958633846422, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2246199958633846422, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3131919094368649507, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_Name + value: Mouth + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_SizeDelta.x + value: 198.9 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_SizeDelta.y + value: 68.048 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalRotation.z + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_AnchoredPosition.x + value: 1227.0801 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_AnchoredPosition.y + value: 814.06006 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 180 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1f67e787040f74945b4094368d0ba215, type: 3} +--- !u!224 &3900791514933475942 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 6065956399601147459, guid: 1f67e787040f74945b4094368d0ba215, type: 3} + m_PrefabInstance: {fileID: 7065301207686603813} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7889969029364166536 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Name + value: Leg1 + objectReference: {fileID: 0} + - target: {fileID: 4279528263583881541, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.x + value: 30.11 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_SizeDelta.y + value: 55.422 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.x + value: -67.80005 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_AnchoredPosition.y + value: -343.39996 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8665832532240036901, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} +--- !u!224 &5835337644252729468 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 4433096382570807284, guid: 70aa2daf45f0649c2823d1930e906f59, type: 3} + m_PrefabInstance: {fileID: 7889969029364166536} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8047013626624120157 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 428665110843127602} + m_Modifications: + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Pivot.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMax.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.x + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchorMin.y + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.x + value: 74.463 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_SizeDelta.y + value: 74.653 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.x + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.y + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalScale.z + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.w + value: 0.90804267 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalRotation.z + value: 0.41887778 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.x + value: -277.79993 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_AnchoredPosition.y + value: -180.99998 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 49.527 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Name + value: Hand1 + objectReference: {fileID: 0} + - target: {fileID: 3053322834512969673, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.a + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.b + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.g + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3308324307825193136, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + propertyPath: m_Color.r + value: 1 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} +--- !u!224 &7463967203059801916 stripped +RectTransform: + m_CorrespondingSourceObject: {fileID: 592763083234151009, guid: f734f1a4f3d05fb4680f42933ad2a434, type: 3} + m_PrefabInstance: {fileID: 8047013626624120157} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FrogDrawing.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FrogDrawing.prefab.meta new file mode 100644 index 0000000..9736752 --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/DrawingPrefabs/FrogDrawing.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 796accb4ed1c1284986a77b73a5e4b06 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/Page.prefab b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/Page.prefab new file mode 100644 index 0000000..a0f3adc --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/Page.prefab @@ -0,0 +1,278 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5528340881965440960 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5430665855150846012} + - component: {fileID: 1030982602272352480} + - component: {fileID: 4988209901784935665} + - component: {fileID: 7207255982727245673} + - component: {fileID: 3226564519879755199} + m_Layer: 5 + m_Name: Page + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5430665855150846012 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5528340881965440960} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7211638572643067806} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1030982602272352480 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5528340881965440960} + m_CullTransparentMesh: 1 +--- !u!114 &4988209901784935665 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5528340881965440960} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 091e267540bec4946a781d62b879d527, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &7207255982727245673 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5528340881965440960} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Button + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 4988209901784935665} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &3226564519879755199 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5528340881965440960} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 19495f2daba89ce44abe376a40ca313d, type: 3} + m_Name: + m_EditorClassIdentifier: Features.DrawingCatalog::Darkmatter.Features.DrawingCatalog.PageNumberButton + label: {fileID: 2709951951554065419} + button: {fileID: 7207255982727245673} + image: {fileID: 4988209901784935665} + useButtonColors: 1 + unselectedAlpha: 0.5 +--- !u!1 &7423645865683071776 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7211638572643067806} + - component: {fileID: 9043297226080963914} + - component: {fileID: 2709951951554065419} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7211638572643067806 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7423645865683071776} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5430665855150846012} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &9043297226080963914 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7423645865683071776} + m_CullTransparentMesh: 1 +--- !u!114 &2709951951554065419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7423645865683071776} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 1 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: dde468a43b0440f4a9d121fb1d8f290e, type: 2} + m_sharedMaterial: {fileID: -1548830327015913602, guid: dde468a43b0440f4a9d121fb1d8f290e, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 32 + m_fontSizeBase: 32 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_characterHorizontalScale: 1 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} diff --git a/Assets/Darkmatter/Content/Colorbook UI/Prefabs/Page.prefab.meta b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/Page.prefab.meta new file mode 100644 index 0000000..f39227d --- /dev/null +++ b/Assets/Darkmatter/Content/Colorbook UI/Prefabs/Page.prefab.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 55932c52c9d698a4384b59169abe3488 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Data/Audio/SfxCatalog.asset b/Assets/Darkmatter/Data/Audio/SfxCatalog.asset index c00ec0c..55ce9cd 100644 --- a/Assets/Darkmatter/Data/Audio/SfxCatalog.asset +++ b/Assets/Darkmatter/Data/Audio/SfxCatalog.asset @@ -25,3 +25,27 @@ MonoBehaviour: Volume: 1 Pitch: 1 Loop: 0 + - Id: 101 + Clip: {fileID: 8300000, guid: 9807a19b9f71ec648b75048cf115c2f6, type: 3} + Channel: 0 + Volume: 1 + Pitch: 1 + Loop: 0 + - Id: 400 + Clip: {fileID: 8300000, guid: 362141a08f284ab41a740893a3ad15fb, type: 3} + Channel: 0 + Volume: 1 + Pitch: 1 + Loop: 0 + - Id: 200 + Clip: {fileID: 8300000, guid: 92d9128629e9e7a45afd47f4eff2c461, type: 3} + Channel: 0 + Volume: 1 + Pitch: 1 + Loop: 0 + - Id: 202 + Clip: {fileID: 8300000, guid: aaceea77d62bc4c18bab10f3b8d33d2f, type: 3} + Channel: 0 + Volume: 1 + Pitch: 1 + Loop: 0 diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Bus.asset b/Assets/Darkmatter/Data/Drawings/Templates/Bus.asset new file mode 100644 index 0000000..a6fcd95 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Bus.asset @@ -0,0 +1,44 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 712e4ea76c27b4cdaab50081d36d953a, type: 3} + m_Name: Bus + m_EditorClassIdentifier: Core::Darkmatter.Core.Data.Static.Features.DrawingTemplate.DrawingTemplateSO + id: Bus + displayName: Bus + defaultThumbnail: {fileID: 21300000, guid: ea71e848b4204cf45b66769881407633, type: 3} + drawingPrefab: {fileID: 5958588885977327045, guid: 99d1fc2dbd73d934586f425777074054, type: 3} + coloringPrefab: {fileID: 7561951831860265998, guid: 39b61120601346945bcde283b8154efe, type: 3} + completionAnimationPrefab: {fileID: 535806827240859352, guid: 8bb86c5c7fecc4beba3519ff75fcbe85, type: 3} + pieces: + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + regions: + - RegionId: Body + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Tire + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Tire__1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: headlight + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: BodyLine + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Window1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Window2 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Window22 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Window3 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + colorPaletteId: defaultPalette diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Bus.asset.meta b/Assets/Darkmatter/Data/Drawings/Templates/Bus.asset.meta new file mode 100644 index 0000000..6a04078 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Bus.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6e36ba5d4763c694289c8ca75ee81449 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Donut.asset b/Assets/Darkmatter/Data/Drawings/Templates/Donut.asset new file mode 100644 index 0000000..a3f0c74 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Donut.asset @@ -0,0 +1,29 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 712e4ea76c27b4cdaab50081d36d953a, type: 3} + m_Name: Donut + m_EditorClassIdentifier: Core::Darkmatter.Core.Data.Static.Features.DrawingTemplate.DrawingTemplateSO + id: Donut + displayName: Donut + defaultThumbnail: {fileID: -786678772, guid: 4cf3f806c042e374a8578e4de7b539f4, type: 3} + drawingPrefab: {fileID: 7032823913612743370, guid: 3423ca2826a04e744b9fc304b2fd2d02, type: 3} + coloringPrefab: {fileID: 3951261677170865858, guid: 01160fc615a51ed408d3666c6eb5f470, type: 3} + completionAnimationPrefab: {fileID: 5354043800789811769, guid: c53ff4e84335c4ffdb5ecffa0cc57ded, type: 3} + pieces: + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + regions: + - RegionId: DonutUpper + InitialColor: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 1} + - RegionId: DonutLower + InitialColor: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 1} + colorPaletteId: defaultPalette diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Donut.asset.meta b/Assets/Darkmatter/Data/Drawings/Templates/Donut.asset.meta new file mode 100644 index 0000000..fb0ed95 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Donut.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 14477b5d35d0be9439ecb935f1c4e64e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Elephant.asset b/Assets/Darkmatter/Data/Drawings/Templates/Elephant.asset new file mode 100644 index 0000000..308fedb --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Elephant.asset @@ -0,0 +1,45 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 712e4ea76c27b4cdaab50081d36d953a, type: 3} + m_Name: Elephant + m_EditorClassIdentifier: Core::Darkmatter.Core.Data.Static.Features.DrawingTemplate.DrawingTemplateSO + id: Elephant + displayName: Elephant + defaultThumbnail: {fileID: 989389395, guid: 58e4ea2548d92004dba2f697d226ee47, type: 3} + drawingPrefab: {fileID: 742296842112915006, guid: 72fb2132f9c2db84a9f69e0987881b4d, type: 3} + coloringPrefab: {fileID: 6410834243504673730, guid: a8185c6e543861a4eb789c869a15b5fe, type: 3} + completionAnimationPrefab: {fileID: 9101710484796646229, guid: bef15a989f7ed4ab1b568b91c7e699e9, type: 3} + pieces: + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: acfdb9428bcd74a85bade833220add1c, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + regions: + - RegionId: Body + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Teeth1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Teeth2 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Tail1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Tail2 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + colorPaletteId: defaultPalette diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Elephant.asset.meta b/Assets/Darkmatter/Data/Drawings/Templates/Elephant.asset.meta new file mode 100644 index 0000000..be7b404 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Elephant.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 62ae112e11b695a40b889d773a36f8bd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Fish.asset b/Assets/Darkmatter/Data/Drawings/Templates/Fish.asset new file mode 100644 index 0000000..f32dc9f --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Fish.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 712e4ea76c27b4cdaab50081d36d953a, type: 3} + m_Name: Fish + m_EditorClassIdentifier: Core::Darkmatter.Core.Data.Static.Features.DrawingTemplate.DrawingTemplateSO + id: Fish + displayName: Fish + defaultThumbnail: {fileID: 1199372990, guid: 675fb0deddcf94547882d4418ccf0aa3, type: 3} + drawingPrefab: {fileID: 830151417515138702, guid: 0d54e126357cbb740bf370f1c7e70e50, type: 3} + coloringPrefab: {fileID: 6558705316041450001, guid: 8665107ae6cda374e86672d142c3179b, type: 3} + completionAnimationPrefab: {fileID: 1326439346293965474, guid: f417cfff1c353433a9f749bdd044996d, type: 3} + pieces: + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 0caa62d6f271c4acb8a09a75ebcc708b, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + regions: + - RegionId: Head + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Body + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Eyes + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Tail + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Fins1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Fins2 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Fins3 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + colorPaletteId: defaultPalette diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Fish.asset.meta b/Assets/Darkmatter/Data/Drawings/Templates/Fish.asset.meta new file mode 100644 index 0000000..3051d8a --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Fish.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4474b93704045a740ba9b8114e8a5238 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Frog.asset b/Assets/Darkmatter/Data/Drawings/Templates/Frog.asset new file mode 100644 index 0000000..affadd5 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Frog.asset @@ -0,0 +1,52 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 712e4ea76c27b4cdaab50081d36d953a, type: 3} + m_Name: Frog + m_EditorClassIdentifier: Core::Darkmatter.Core.Data.Static.Features.DrawingTemplate.DrawingTemplateSO + id: Frog + displayName: Frog + defaultThumbnail: {fileID: 1535771922, guid: a3db467a5cc22b647ade2e7c43802702, type: 3} + drawingPrefab: {fileID: 3594252390097820856, guid: 796accb4ed1c1284986a77b73a5e4b06, type: 3} + coloringPrefab: {fileID: 4940528403607588797, guid: 1c5c7b9cf2cccf342b6fd892679e0087, type: 3} + completionAnimationPrefab: {fileID: 7626734826293769917, guid: 3d1e956cb52394a6dada29426c918db8, type: 3} + pieces: + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: acfdb9428bcd74a85bade833220add1c, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 888b6a7cd3cae42099e8793f2e486dfd, type: 2} + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: 4a67406eb6fe043628d2b6a4e0c970ba, type: 2} + - {fileID: 11400000, guid: 5cf3e58088f124445b00423cf68c01aa, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + - {fileID: 11400000, guid: a3dc108a48b1e4f2196e8d49ae8e3edd, type: 2} + regions: + - RegionId: Head + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Face + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Body + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Tongue + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Mouth + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Leg1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Leg2 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Hand1 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + - RegionId: Hand2 + InitialColor: {r: 1, g: 1, b: 1, a: 1} + colorPaletteId: defaultPalette diff --git a/Assets/Darkmatter/Data/Drawings/Templates/Frog.asset.meta b/Assets/Darkmatter/Data/Drawings/Templates/Frog.asset.meta new file mode 100644 index 0000000..39f84e0 --- /dev/null +++ b/Assets/Darkmatter/Data/Drawings/Templates/Frog.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f3200c6715fea4a41bc71c0314b519cd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/_Recovery/0 (2).unity b/Assets/_Recovery/0 (2).unity new file mode 100644 index 0000000..8e816fb --- /dev/null +++ b/Assets/_Recovery/0 (2).unity @@ -0,0 +1,2397 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 10 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 3 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 13 + m_BakeOnSceneLoad: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightProbeSampleCountMultiplier: 4 + m_LightingDataAsset: {fileID: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 3 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + buildHeightMesh: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &17632380 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 17632381} + - component: {fileID: 17632383} + - component: {fileID: 17632382} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &17632381 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17632380} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1424266587} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -31.709412, y: -501} + m_SizeDelta: {x: 1124.7546, y: 50} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &17632382 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17632380} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Preparing World + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 81541db47d1ff4e92923d9c19f312acf, type: 2} + m_sharedMaterial: {fileID: 6332886355625335628, guid: 81541db47d1ff4e92923d9c19f312acf, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 41.66 + m_fontSizeBase: 41.66 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_characterHorizontalScale: 1 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &17632383 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17632380} + m_CullTransparentMesh: 1 +--- !u!1 &82022331 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 82022335} + - component: {fileID: 82022334} + - component: {fileID: 82022332} + m_Layer: 0 + m_Name: UI Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &82022332 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 82022331} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 0 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 1 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 + m_Version: 2 +--- !u!20 &82022334 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 82022331} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 4 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 34 + orthographic: 1 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 32 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 0 + m_HDR: 1 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &82022335 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 82022331} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &94039063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 94039067} + - component: {fileID: 94039066} + - component: {fileID: 94039064} + m_Layer: 0 + m_Name: Capture Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &94039064 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94039063} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 0 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: [] + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 1 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 + m_Version: 2 +--- !u!20 &94039066 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94039063} + m_Enabled: 0 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 34 + orthographic: 0 + orthographic size: 1 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 0 + m_HDR: 1 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &94039067 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94039063} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &97140290 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 97140292} + - component: {fileID: 97140291} + m_Layer: 0 + m_Name: SceneServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &97140291 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 97140290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: ad17780c76afe4f33ac9f90931a18f76, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Scenes::Darkmatter.Services.Scenes.SceneServiceModule +--- !u!4 &97140292 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 97140290} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &109717500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 109717503} + - component: {fileID: 109717502} + - component: {fileID: 109717501} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &109717501 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 109717500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 01614664b831546d2ae94a42149d80ac, type: 3} + m_Name: + m_EditorClassIdentifier: Unity.InputSystem::UnityEngine.InputSystem.UI.InputSystemUIInputModule + m_SendPointerHoverToParent: 1 + m_MoveRepeatDelay: 0.5 + m_MoveRepeatRate: 0.1 + m_XRTrackingOrigin: {fileID: 0} + m_ActionsAsset: {fileID: -944628639613478452, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_PointAction: {fileID: -1654692200621890270, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_MoveAction: {fileID: -8784545083839296357, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_SubmitAction: {fileID: 392368643174621059, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_CancelAction: {fileID: 7727032971491509709, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_LeftClickAction: {fileID: 3001919216989983466, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_MiddleClickAction: {fileID: -2185481485913320682, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_RightClickAction: {fileID: -4090225696740746782, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_ScrollWheelAction: {fileID: 6240969308177333660, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_TrackedDevicePositionAction: {fileID: 6564999863303420839, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_TrackedDeviceOrientationAction: {fileID: 7970375526676320489, guid: ca9f5fa95ffab41fb9a615ab714db018, type: 3} + m_DeselectOnBackgroundClick: 1 + m_PointerBehavior: 0 + m_CursorLockBehavior: 0 + m_ScrollDeltaPerTick: 6 +--- !u!114 &109717502 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 109717500} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.EventSystems.EventSystem + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &109717503 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 109717500} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &137105223 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 137105224} + - component: {fileID: 137105225} + m_Layer: 0 + m_Name: CaptureServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &137105224 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 137105223} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -16.30939, y: -8.32207, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &137105225 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 137105223} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e14e6746c7bb4b57808b4d3020dc7bbb, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Capture::Darkmatter.Services.Capture.Installers.CaptureServiceModule +--- !u!1 &196669901 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 196669903} + - component: {fileID: 196669902} + m_Layer: 0 + m_Name: AudioService + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &196669902 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196669901} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6e8080c47fe224496a2a0ea5afe3cdc2, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Audio::Darkmatter.Services.Audio.AudioService + pooledSourceCount: 32 + sourceRoot: {fileID: 0} + listener: {fileID: 519420029} + maxAISfxInstances: 16 + audioMixer: {fileID: 0} + snapshots: [] + snapshotTransitionDuration: 0.35 + snapshotEasing: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + sfxMixerGroup: {fileID: 0} + vehicleSfxMixerGroup: {fileID: 0} + engineMixerGroup: {fileID: 0} + aiSfx: {fileID: 0} + passengerChatterMixerGroup: {fileID: 0} + musicMixerGroup: {fileID: 0} + ambienceMixerGroup: {fileID: 0} + weatherMixerGroup: {fileID: 0} + bgmMixerGroup: {fileID: 0} + uiMixerGroup: {fileID: 0} + radioMixerGroup: {fileID: 0} + vehicleBrakeGroup: {fileID: 0} +--- !u!4 &196669903 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 196669901} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &202998924 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 202998925} + - component: {fileID: 202998927} + - component: {fileID: 202998926} + m_Layer: 5 + m_Name: VideoImage + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &202998925 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 202998924} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 2133561498} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &202998926 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 202998924} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.RawImage + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Texture: {fileID: 8400000, guid: 5da879599920c456aa9dfc836a706075, type: 2} + m_UVRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 +--- !u!222 &202998927 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 202998924} + m_CullTransparentMesh: 1 +--- !u!1 &292698383 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 292698384} + - component: {fileID: 292698385} + m_Layer: 0 + m_Name: CameraServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &292698384 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 292698383} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &292698385 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 292698383} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d739bbb9f94e0441abcf2a1e7c1fca80, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Camera::Darkmatter.Services.Camera.Installers.CameraServiceModule + mainCamera: {fileID: 519420031} + uiCamera: {fileID: 82022334} + captureCamera: {fileID: 94039066} +--- !u!1 &336045569 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 336045570} + - component: {fileID: 336045572} + - component: {fileID: 336045571} + m_Layer: 5 + m_Name: LoadingImage + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &336045570 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 336045569} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1424266587} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &336045571 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 336045569} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: d1ea66795d9f56a44b617c5b2e4d311d, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &336045572 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 336045569} + m_CullTransparentMesh: 1 +--- !u!1 &355949970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 355949971} + - component: {fileID: 355949973} + - component: {fileID: 355949972} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &355949971 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 355949970} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.14478496, y: 0.14478496, z: 0.14478496} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1377420117} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 0, y: 0.25} + m_AnchoredPosition: {x: 75.423, y: 5.7} + m_SizeDelta: {x: 972.8, y: 52} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &355949972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 355949970} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 93ee7ac86d43be0409fbac1b2d1b5bd5, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &355949973 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 355949970} + m_CullTransparentMesh: 1 +--- !u!1 &361052050 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 361052051} + - component: {fileID: 361052052} + m_Layer: 0 + m_Name: MusicServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &361052051 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361052050} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &361052052 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361052050} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 47cce31d8e31341a0ae46684e87cbd95, type: 3} + m_Name: + m_EditorClassIdentifier: Assembly-CSharp::Darkmatter.Services.Music.Installers.MusicServiceModule + defaultTrack: {fileID: 8300000, guid: d2ea12320736942649eb53c30ab7e4bb, type: 3} + defaultVolume: 0.3 + crossFadeSeconds: 0.4 + mixerGroup: {fileID: 0} +--- !u!1 &445008005 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 445008006} + - component: {fileID: 445008007} + m_Layer: 0 + m_Name: AppBootFeatureModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &445008006 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445008005} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 752713007} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &445008007 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 445008005} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a3a74c469f13e41a09665530aa744705, type: 3} + m_Name: + m_EditorClassIdentifier: Features.AppBoot::Darkmatter.Features.AppBoot.Installers.AppBootFeatureModule + sceneRefs: {fileID: 1890425866} +--- !u!1 &494156339 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 494156340} + m_Layer: 0 + m_Name: LibraryModules + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &494156340 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 494156339} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1740606685} + m_Father: {fileID: 1798580248} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &519420028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 519420032} + - component: {fileID: 519420031} + - component: {fileID: 519420029} + - component: {fileID: 519420030} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &519420029 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 +--- !u!114 &519420030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} + m_Name: + m_EditorClassIdentifier: + m_RenderShadows: 0 + m_RequiresDepthTextureOption: 2 + m_RequiresOpaqueTextureOption: 2 + m_CameraType: 0 + m_Cameras: + - {fileID: 82022334} + m_RendererIndex: -1 + m_VolumeLayerMask: + serializedVersion: 2 + m_Bits: 1 + m_VolumeTrigger: {fileID: 0} + m_VolumeFrameworkUpdateModeOption: 2 + m_RenderPostProcessing: 0 + m_Antialiasing: 0 + m_AntialiasingQuality: 2 + m_StopNaN: 0 + m_Dithering: 0 + m_ClearDepth: 1 + m_AllowXRRendering: 1 + m_AllowHDROutput: 1 + m_UseScreenCoordOverride: 0 + m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} + m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} + m_RequiresDepthTexture: 0 + m_RequiresColorTexture: 0 + m_TaaSettings: + m_Quality: 3 + m_FrameInfluence: 0.1 + m_JitterScale: 1 + m_MipBias: 0 + m_VarianceClampScale: 0.9 + m_ContrastAdaptiveSharpening: 0 + m_Version: 2 +--- !u!20 &519420031 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_Iso: 200 + m_ShutterSpeed: 0.005 + m_Aperture: 16 + m_FocusDistance: 10 + m_FocalLength: 50 + m_BladeCount: 5 + m_Curvature: {x: 2, y: 11} + m_BarrelClipping: 0.25 + m_Anamorphism: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 34 + orthographic: 1 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 0 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 0 + m_HDR: 1 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &519420032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &610419918 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 610419919} + - component: {fileID: 610419920} + m_Layer: 0 + m_Name: DrawingTemplateFeatureModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &610419919 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610419918} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -16.30939, y: -8.32207, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 752713007} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &610419920 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 610419918} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aa578cd62ad074dbf91b5228c3ac667e, type: 3} + m_Name: + m_EditorClassIdentifier: Features.DrawingTemplates::Darkmatter.Features.DrawingTemplates.DrawingTemplateFeatureModule +--- !u!1 &752713006 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 752713007} + m_Layer: 0 + m_Name: FeatureModules + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &752713007 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 752713006} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 445008006} + - {fileID: 1043308346} + - {fileID: 610419919} + - {fileID: 789049882} + m_Father: {fileID: 1798580248} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &789049881 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 789049882} + - component: {fileID: 789049883} + m_Layer: 0 + m_Name: LoadingFeatureModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &789049882 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 789049881} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 752713007} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &789049883 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 789049881} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 673a21bf7c6bb430eadece2a989d79ac, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Loading::Darkmatter.Features.Loading.LoadingFeatureModule + loadingScreenView: {fileID: 1424266588} +--- !u!1 &899675107 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 899675108} + m_Layer: 5 + m_Name: Fill Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &899675108 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 899675107} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1315655362} + m_Father: {fileID: 1377420117} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: -5, y: 0} + m_SizeDelta: {x: -20, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &978572231 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 978572232} + - component: {fileID: 978572233} + m_Layer: 0 + m_Name: AssetServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &978572232 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 978572231} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &978572233 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 978572231} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2e3baad744699014dba6885dfec20d9f, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Assets::Darkmatter.Services.Assets.Installers.AssetsServiceModule +--- !u!1 &1043308345 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1043308346} + - component: {fileID: 1043308347} + m_Layer: 0 + m_Name: ProgressionFeatureModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1043308346 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1043308345} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -16.30939, y: -8.32207, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 752713007} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1043308347 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1043308345} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d0af7651133b54f398413a7c19dfc9bb, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Progression::Darkmatter.Features.Progression.Installers.ProgressionFeatureModule +--- !u!1 &1050564724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1050564725} + m_Layer: 0 + m_Name: ServiceModules + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1050564725 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1050564724} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 292698384} + - {fileID: 137105224} + - {fileID: 1239449675} + - {fileID: 1776076871} + - {fileID: 97140292} + - {fileID: 978572232} + - {fileID: 361052051} + - {fileID: 1707278033} + m_Father: {fileID: 1798580248} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1156238479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1156238481} + - component: {fileID: 1156238482} + m_Layer: 0 + m_Name: AdServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1156238481 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1156238479} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1156238482 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1156238479} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 018ba83ad51c4d9a89a904ba3d21ead2, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Ads::Darkmatter.Services.Ads.AdMobAdService + catalog: {fileID: 11400000, guid: 6e2d0c78aa02e4411948adcca14299a5, type: 2} + autoReload: 1 + reloadDelaySeconds: 5 +--- !u!1 &1239449674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1239449675} + - component: {fileID: 1239449676} + m_Layer: 0 + m_Name: GalleryServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1239449675 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1239449674} + serializedVersion: 2 + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: -16.30939, y: -8.32207, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1239449676 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1239449674} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f03c84255756e497f96c3baa7f6abe16, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Gallery::Darkmatter.Services.Gallery.GalleryServiceModule +--- !u!1 &1315655361 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1315655362} + - component: {fileID: 1315655364} + - component: {fileID: 1315655363} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1315655362 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1315655361} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.12187323, y: 0.12187323, z: 0.12187323} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 899675108} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0.36380005, y: 0.56829834} + m_SizeDelta: {x: 1014.7198, y: 53.1203} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1315655363 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1315655361} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 0f2a4bcfe9416e84694b2da72eefb088, type: 3} + m_Type: 3 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 0 + m_FillAmount: 0 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1315655364 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1315655361} + m_CullTransparentMesh: 1 +--- !u!1 &1377420116 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1377420117} + - component: {fileID: 1377420118} + m_Layer: 5 + m_Name: LoadingSlider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1377420117 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377420116} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 8.0192, y: 8.0192, z: 8.0192} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 355949971} + - {fileID: 899675108} + m_Father: {fileID: 1424266587} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: 98} + m_SizeDelta: {x: 160, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1377420118 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1377420116} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67db9e8f0e2ae9c40bc1e2b64352a6b4, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Slider + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 1, g: 1, b: 1, a: 1} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 0} + m_FillRect: {fileID: 1315655362} + m_HandleRect: {fileID: 0} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 0 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1424266583 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1424266587} + - component: {fileID: 1424266586} + - component: {fileID: 1424266585} + - component: {fileID: 1424266584} + - component: {fileID: 1424266588} + m_Layer: 5 + m_Name: LoadingCanvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &1424266584 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424266583} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.GraphicRaycaster + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1424266585 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424266583} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.CanvasScaler + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &1424266586 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424266583} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 1 + m_UseReflectionProbes: 0 + m_AdditionalShaderChannelsFlag: 1 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 800 + m_TargetDisplay: 0 +--- !u!224 &1424266587 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424266583} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 336045570} + - {fileID: 1377420117} + - {fileID: 17632381} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!114 &1424266588 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1424266583} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 48d729b720c548e685793cc0348ae1c5, type: 3} + m_Name: + m_EditorClassIdentifier: Features.Loading::Darkmatter.Features.Loading.LoadingScreenView + loadingSlider: {fileID: 1377420118} + statusText: {fileID: 17632382} + loadingSmoothTime: 10 + dotInterval: 0.4 +--- !u!1 &1707278032 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1707278033} + - component: {fileID: 1707278034} + m_Layer: 0 + m_Name: AdServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1707278033 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1707278032} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1707278034 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1707278032} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3a17cb41935543a6b4f67be8f398d774, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Ads::Darkmatter.Services.Ads.AdServiceModule + adUnitCatalog: {fileID: 11400000, guid: 6e2d0c78aa02e4411948adcca14299a5, type: 2} + adService: {fileID: 1156238482} +--- !u!1 &1740606684 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1740606685} + - component: {fileID: 1740606686} + m_Layer: 0 + m_Name: ObserverLibraryModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1740606685 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1740606684} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 494156340} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1740606686 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1740606684} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: aa2c71d11c78f4c16a545758585358bf, type: 3} + m_Name: + m_EditorClassIdentifier: Libs.Observer::Darkmatter.Libs.Observer.ObserverLibraryModule +--- !u!1 &1776076870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1776076871} + - component: {fileID: 1776076872} + m_Layer: 0 + m_Name: AudioServiceModule + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1776076871 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776076870} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1050564725} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1776076872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776076870} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fa11c3cff997e4a0a8263a29d804779f, type: 3} + m_Name: + m_EditorClassIdentifier: Services.Audio::Darkmatter.Services.Audio.AudioServiceModule + sfxCatalog: {fileID: 11400000, guid: 66f04dfcec18d453e8e15f3a2b02066d, type: 2} + audioService: {fileID: 196669902} +--- !u!1 &1798580247 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1798580248} + - component: {fileID: 1798580249} + m_Layer: 0 + m_Name: RootLifetimeScope + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1798580248 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1798580247} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 16.30939, y: 8.32207, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1050564725} + - {fileID: 752713007} + - {fileID: 494156340} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1798580249 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1798580247} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: cdbf68f1689a84f7588ae13b63f7a3c9, type: 3} + m_Name: + m_EditorClassIdentifier: Darkmatter.App::RootLifetimeScope + parentReference: + TypeName: + autoRun: 1 + autoInjectGameObjects: [] + serviceModules: + - {fileID: 1740606686} + - {fileID: 445008007} + - {fileID: 1239449676} + - {fileID: 292698385} + - {fileID: 137105225} + - {fileID: 1043308347} + - {fileID: 610419920} + - {fileID: 1776076872} + - {fileID: 97140291} + - {fileID: 789049883} + - {fileID: 978572233} + - {fileID: 361052052} + - {fileID: 1707278034} +--- !u!1 &1890425864 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1890425865} + - component: {fileID: 1890425866} + m_Layer: 0 + m_Name: AppBootSceneRefs + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1890425865 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1890425864} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1890425866 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1890425864} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 17fd08f85ba94bf694f285cdd48bee02, type: 3} + m_Name: + m_EditorClassIdentifier: Features.AppBoot::Darkmatter.Features.AppBoot.SceneRefs.AppBootSceneRefs + k__BackingField: {fileID: 2122267604} + k__BackingField: {fileID: 2133561494} +--- !u!1 &2122267603 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2122267605} + - component: {fileID: 2122267604} + m_Layer: 0 + m_Name: IntroVideoPlayer + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!328 &2122267604 +VideoPlayer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2122267603} + m_Enabled: 1 + m_VideoClip: {fileID: 32900000, guid: 94bb9480e86df4128b09488bd123a53e, type: 3} + m_TargetCameraAlpha: 1 + m_TargetCamera3DLayout: 0 + m_TargetCamera: {fileID: 82022334} + m_TargetTexture: {fileID: 8400000, guid: 5da879599920c456aa9dfc836a706075, type: 2} + m_TimeReference: 0 + m_TargetMaterialRenderer: {fileID: 0} + m_TargetMaterialProperty: + m_RenderMode: 2 + m_AspectRatio: 2 + m_DataSource: 0 + m_TimeUpdateMode: 1 + m_PlaybackSpeed: 1 + m_AudioOutputMode: 2 + m_TargetAudioSources: + - {fileID: 0} + m_DirectAudioVolumes: + - 1 + m_Url: + m_EnabledAudioTracks: 01 + m_DirectAudioMutes: 00 + m_ControlledAudioTrackCount: 1 + m_PlayOnAwake: 0 + m_SkipOnDrop: 0 + m_Looping: 0 + m_WaitForFirstFrame: 0 + m_FrameReadyEventEnabled: 0 + m_VideoShaders: [] +--- !u!4 &2122267605 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2122267603} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &2133561494 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2133561498} + - component: {fileID: 2133561497} + - component: {fileID: 2133561496} + - component: {fileID: 2133561495} + m_Layer: 5 + m_Name: IntroCanvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2133561495 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133561494} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.GraphicRaycaster + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &2133561496 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133561494} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} + m_Name: + m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.CanvasScaler + m_UiScaleMode: 1 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 1920, y: 1080} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0.5 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 + m_PresetInfoIsWorld: 0 +--- !u!223 &2133561497 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133561494} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_VertexColorAlwaysGammaSpace: 1 + m_UseReflectionProbes: 0 + m_AdditionalShaderChannelsFlag: 0 + m_UpdateRectTransformForStandalone: 0 + m_SortingLayerID: 0 + m_SortingOrder: 1000 + m_TargetDisplay: 0 +--- !u!224 &2133561498 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2133561494} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 202998925} + m_Father: {fileID: 0} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1660057539 &9223372036854775807 +SceneRoots: + m_ObjectHideFlags: 0 + m_Roots: + - {fileID: 519420032} + - {fileID: 94039067} + - {fileID: 82022335} + - {fileID: 1798580248} + - {fileID: 2122267605} + - {fileID: 1890425865} + - {fileID: 2133561498} + - {fileID: 109717503} + - {fileID: 1424266587} + - {fileID: 196669903} + - {fileID: 1156238481} diff --git a/Assets/_Recovery/0 (2).unity.meta b/Assets/_Recovery/0 (2).unity.meta new file mode 100644 index 0000000..c286e78 --- /dev/null +++ b/Assets/_Recovery/0 (2).unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3509e33d6780510448b1f27a6ad6b84f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: