Compare commits

...

199 Commits

Author SHA1 Message Date
Michal Pikulski
3ebbecc277 Clean up logging 2025-11-10 13:03:36 +01:00
Michal Pikulski
c99aad49f3 Save bird states 2025-11-10 12:55:27 +01:00
3fe4c6afd9 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-10 12:53:07 +01:00
9c61065947 Fixed nullref in TakePhotoState 2025-11-10 12:53:03 +01:00
Michal Pikulski
7c09db641a Only show cards when in actual album 2025-11-10 12:41:28 +01:00
Michal Pikulski
e369660a8f Fix tab navigation on card select less wonky 2025-11-10 12:29:25 +01:00
a6e3413499 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-10 12:19:25 +01:00
7bb992acb8 Made apple audio sources use OnManagedAwake 2025-11-10 12:19:20 +01:00
Michal Pikulski
cefa488a92 Update issues with card appearing twice after reopening page 2025-11-10 12:17:17 +01:00
9344f06886 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-10 11:37:53 +01:00
af7e081c9a Fixed Chocolate Puzzle, but does not work well on load (the destroyed chocolate appears again) 2025-11-10 11:37:45 +01:00
Michal Pikulski
4a6ac7281f Udate the booster page. New card text smaller, moved down. Album icon disappears when opening boosters. 2025-11-10 11:28:23 +01:00
861797ba41 Merge pull request 'DamianBranch' (#54) from DamianBranch into main
Reviewed-on: #54
2025-11-10 10:10:40 +00:00
98883bd382 Merge branch 'main' into DamianBranch 2025-11-10 11:10:14 +01:00
474941f421 Reffitting of the scrapbook 2025-11-10 11:10:04 +01:00
Michal Pikulski
75cd70a18a Play intro audio only once 2025-11-10 11:09:06 +01:00
e82ec90723 WIP Scrapbook rezising 2025-11-10 10:47:00 +01:00
Michal Pikulski
252cb99884 Update icons in minigame 2025-11-10 10:41:38 +01:00
3f548c3ed4 Update HUD updates, moving scattered prefabs into a central HUD manager (#53)
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #53
2025-11-09 21:41:39 +00:00
Michal Pikulski
0c9a388433 Move buttons to HUD Manager 2025-11-09 13:23:03 +01:00
MacBuilder
a80aed8eb7 Make app switcher disappear when opening album 2025-11-09 00:20:48 +01:00
journaliciouz
5d0a9f999a Aligned card slots better in book 2025-11-08 22:46:16 +01:00
journaliciouz
eda7361702 Fixed most horrifying scaling issues with the book 2025-11-08 22:16:43 +01:00
journaliciouz
2ec53629c6 Added contextual UI switching depending on level type 2025-11-08 21:08:01 +01:00
journaliciouz
0e55248698 Fixed weird background breaks in outrocinematic 2025-11-08 19:56:59 +01:00
Michal Pikulski
4d7c48a681 Update Cinematic Manager, Hud Manager, fix log verbosity issue, update PauseMenu 2025-11-08 12:07:45 +01:00
Michal Pikulski
6e466cd7aa Add dev options ot the minigame menu 2025-11-07 17:50:46 +01:00
29d01df3ce Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-07 17:37:17 +01:00
de0a243b1e Added eagle eye button 2025-11-07 17:37:12 +01:00
fdfa4e0e09 Fixed a problem with buttons not rezising in the End game UI for the Minigame 2025-11-07 17:31:46 +01:00
Michal Pikulski
2127bf37b2 Add boosters to minigame again 2025-11-07 17:26:29 +01:00
ea12766cf7 Fixed button issue 2025-11-07 17:21:38 +01:00
41c71f07fd Fixed compile error 2025-11-07 17:08:02 +01:00
d2e79f058b Merge branch 'ui-overhaul' 2025-11-07 16:56:51 +01:00
1bcb63ffd0 Cinematics fuckery 2025-11-07 16:54:41 +01:00
de2966fb1e Cinematics and UI overhaul 2025-11-07 16:47:10 +01:00
e27bb7bfb6 Refactor interactions, introduce template-method lifecycle management, work on save-load system (#51)
# Lifecycle Management & Save System Revamp

## Overview
Complete overhaul of game lifecycle management, interactable system, and save/load architecture. Introduces centralized `ManagedBehaviour` base class for consistent initialization ordering and lifecycle hooks across all systems.

## Core Architecture

### New Lifecycle System
- **`LifecycleManager`**: Centralized coordinator for all managed objects
- **`ManagedBehaviour`**: Base class replacing ad-hoc initialization patterns
  - `OnManagedAwake()`: Priority-based initialization (0-100, lower = earlier)
  - `OnSceneReady()`: Scene-specific setup after managers ready
  - Replaces `BootCompletionService` (deleted)
- **Priority groups**: Infrastructure (0-20) → Game Systems (30-50) → Data (60-80) → UI/Gameplay (90-100)
- **Editor support**: `EditorLifecycleBootstrap` ensures lifecycle works in editor mode

### Unified SaveID System
- Consistent format: `{ParentName}_{ComponentType}`
- Auto-registration via `AutoRegisterForSave = true`
- New `DebugSaveIds` editor tool for inspection

## Save/Load Improvements

### Enhanced State Management
- **Extended SaveLoadData**: Unlocked minigames, card collection states, combination items, slot occupancy
- **Async loading**: `ApplyCardCollectionState()` waits for card definitions before restoring
- **New `SaveablePlayableDirector`**: Timeline sequences save/restore playback state
- **Fixed race conditions**: Proper initialization ordering prevents data corruption

## Interactable & Pickup System

- Migrated to `OnManagedAwake()` for consistent initialization
- Template method pattern for state restoration (`RestoreInteractionState()`)
- Fixed combination item save/load bugs (items in slots vs. follower hand)
- Dynamic spawning support for combined items on load
- **Breaking**: `Interactable.Awake()` now sealed, use `OnManagedAwake()` instead

##  UI System Changes

- **AlbumViewPage** and **BoosterNotificationDot**: Migrated to `ManagedBehaviour`
- **Fixed menu persistence bug**: Menus no longer reappear after scene transitions
- **Pause Menu**: Now reacts to all scene loads (not just first scene)
- **Orientation Enforcer**: Enforces per-scene via `SceneManagementService`
- **Loading Screen**: Integrated with new lifecycle

## ⚠️ Breaking Changes

1. **`BootCompletionService` removed** → Use `ManagedBehaviour.OnManagedAwake()` with priority
2. **`Interactable.Awake()` sealed** → Override `OnManagedAwake()` instead
3. **SaveID format changed** → Now `{ParentName}_{ComponentType}` consistently
4. **MonoBehaviours needing init ordering** → Must inherit from `ManagedBehaviour`

Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Reviewed-on: #51
2025-11-07 15:38:31 +00:00
dfa42b2296 Merge pull request 'DamianBranch' (#52) from DamianBranch into main
Reviewed-on: #52
2025-11-07 15:37:03 +00:00
720df10178 Updated the minigame tutorials 2025-11-07 16:35:13 +01:00
32601e5ef8 Card Data Update 2025-11-07 15:54:25 +01:00
dba3c5a1af Changed the Arrows of the Scrapbook 2025-11-07 14:05:12 +01:00
5c4b8825ee Card Creation 2025-11-07 13:57:36 +01:00
355c3fabc8 Merge branch 'main' into DamianBranch 2025-11-07 13:35:19 +01:00
00e1746ac4 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-07 13:34:56 +01:00
d7d9d74a7b Change to Card NamePlaque, and Card Album Prefabs 2025-11-07 13:34:30 +01:00
Michal Pikulski
5b70042005 Update minigames to start unlocked 2025-11-07 13:31:49 +01:00
6aacd9234c ExtraConfirmations Screens and WIP for the diving minigame end screen 2025-11-07 13:01:22 +01:00
Michal Pikulski
32a477b843 WOrking card dragging, slotting, previewing 2025-11-07 12:51:45 +01:00
Michal Pikulski
77f7d1ee97 Working card dragging into album slots, persistent slots 2025-11-07 11:24:19 +01:00
Michal Pikulski
0d8702a5f6 Move some tools for consistency, audo add feature for card debugger 2025-11-07 09:32:43 +01:00
Michal Pikulski
3e607f3857 Slotting cards in album after revealing 2025-11-07 01:51:03 +01:00
Michal Pikulski
debe70c9b1 Hammer out some last flows of the booster opening page 2025-11-06 23:52:02 +01:00
DamianCorazza
fda67e4b92 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-06 23:43:52 +01:00
DamianCorazza
3a1eef8a12 Cut up the Prefab and reset some pivots 2025-11-06 23:43:38 +01:00
Michal Pikulski
a705b3a829 Semi-working rarity upgrades 2025-11-06 23:18:02 +01:00
Michal Pikulski
d23c000347 Working flipping cards 2025-11-06 23:17:55 +01:00
Michal Pikulski
774f27410a Working drag, tap, open sequence, looking pretty OK 2025-11-06 23:17:46 +01:00
Michal Pikulski
1b1ea65744 Fire off impulses on booster taps 2025-11-06 23:17:36 +01:00
Michal Pikulski
d01859cec0 More snappy tap animation 2025-11-06 23:17:35 +01:00
a9b9fb87b5 Merge pull request 'Added New Card Graphics' (#50) from DamianBranch into main
Reviewed-on: #50
2025-11-06 21:31:23 +00:00
153ab2bb08 Merge branch 'main' into DamianBranch 2025-11-06 21:31:12 +00:00
journaliciouz
f576dad677 New and crispy apple map 2025-11-06 22:28:38 +01:00
DamianCorazza
3ac90bea1e Added New Card Graphics 2025-11-06 22:17:43 +01:00
430522b872 Merge pull request 'DamianBranch' (#49) from DamianBranch into main
Reviewed-on: #49
2025-11-06 18:45:03 +00:00
ba6f671104 Merge branch 'main' into DamianBranch 2025-11-06 19:44:15 +01:00
984c8f0566 Added TownMap Icons (WIP need to check with Michal) 2025-11-06 19:44:02 +01:00
69e628ceb8 Added New art for level selection 2025-11-06 19:22:26 +01:00
Michal Pikulski
1c9d0333ea Fix editor compilation issue 2025-11-06 18:23:21 +01:00
eb9da316ad Put the appswitcher in the overworld for build test 2025-11-06 17:59:26 +01:00
7fb0b14337 Merge branch 'ui-animation' 2025-11-06 17:49:57 +01:00
eba2befc5f Good-enough-for-now appswitcher 2025-11-06 17:49:44 +01:00
fe7612d23a Merge pull request 'DamianBranch' (#48) from DamianBranch into main
Reviewed-on: #48
2025-11-06 16:16:18 +00:00
0eb1e0efd5 Merge branch 'main' into DamianBranch 2025-11-06 17:11:57 +01:00
d4f6505c85 Merge branch 'DamianBranch' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction into DamianBranch 2025-11-06 17:11:42 +01:00
5e4de3ebef Added the Eagle Eye button, It's a standalone prefab that can be added to other canvases. 2025-11-06 17:11:30 +01:00
78d0bf6441 AppSwitcher work 2025-11-06 15:36:02 +01:00
Michal Pikulski
7862af7f8b Cleanup 2025-11-06 15:33:30 +01:00
Michal Pikulski
2d10d92bf5 Add a semi-finished booster opening sequence 2025-11-06 15:27:08 +01:00
Michal Pikulski
4e0c9cb4c4 Working visual part 2025-11-06 15:27:08 +01:00
Michal Pikulski
95daea8d34 Code up the card part 2025-11-06 15:27:08 +01:00
Michal Pikulski
b6d8586eab Setup booster page opening 2025-11-06 15:27:08 +01:00
5792c01908 Merge pull request 'Update LevelConfirmMenu.prefab' (#47) from DamianBranch into main
Reviewed-on: #47
2025-11-06 14:07:19 +00:00
a41136e69e Merge branch 'main' into DamianBranch 2025-11-06 14:07:13 +00:00
9a4f604314 Update LevelConfirmMenu.prefab 2025-11-06 15:06:47 +01:00
6a1831c5e2 Merge branch 'main' into ui-animation 2025-11-06 14:27:53 +01:00
e7ff137d57 Implemented new Lottie plugin, added AppSwitcher icon 2025-11-06 14:27:44 +01:00
3f70591686 Merge pull request 'DamianBranch' (#46) from DamianBranch into main
Reviewed-on: #46
2025-11-06 13:21:55 +00:00
a3d0c3232d Merge branch 'main' into DamianBranch 2025-11-06 14:17:35 +01:00
0f1a0cfecc Delete CardSystem.prefab 2025-11-06 14:17:23 +01:00
2b3154c22b Level Change and Confirmation popups art change 2025-11-06 14:11:52 +01:00
3de3441a04 Added Lottie animation support plugin 2025-11-06 12:03:45 +01:00
Michal Pikulski
b17ba7bd98 Finish setting up the basic album layout 2025-11-06 01:25:13 +01:00
0ac8f4b70c CHanged Menus Backgrounds 2025-11-06 00:22:07 +01:00
Michal Pikulski
50c0a12391 New card UI, new visual config, new card definitions, new working editor window for authoring! 2025-11-05 23:50:15 +01:00
DamianCorazza
1442a2426b Changed ScrapBook Icon 2025-11-05 23:14:27 +01:00
629b137421 Added New Map TExture 2025-11-05 17:46:56 +01:00
0dc3f3e803 Added New Menu Background Textures 2025-11-05 17:25:26 +01:00
journaliciouz
949bd6d32b You can close the card album again 2025-11-05 16:36:00 +01:00
journaliciouz
0a183703db Unfucked the card UI 2025-11-05 16:00:22 +01:00
journaliciouz
54d6603f17 Merge branch 'main' into ui-animation 2025-11-05 14:49:08 +01:00
journaliciouz
041159a02a Implemented scrapbook assets into book plugin 2025-11-05 14:48:10 +01:00
1a6324b054 Clarifying name changes for cards 2025-11-05 12:59:57 +01:00
journaliciouz
9c8eababb3 Installed book plugin, fixed compiler errors 2025-11-05 12:03:39 +01:00
journaliciouz
92c08da136 Merge branch 'main' into ui-animation 2025-11-05 11:17:47 +01:00
1bc80fd73d Merge pull request 'DamianBranch' (#45) from DamianBranch into main
Reviewed-on: #45
2025-11-04 17:57:58 +00:00
c85b542215 Merge branch 'main' into DamianBranch 2025-11-04 17:57:49 +00:00
282904bae0 Moved the prefab 2025-11-04 18:56:57 +01:00
035fdda2be Added the textures for a smaller version of the scrapbook. 2025-11-04 18:51:42 +01:00
be22d09e39 Fixed SoundBird Bug 2025-11-04 16:26:33 +01:00
aabe023c64 Small fixes to quarry 2025-11-04 13:21:28 +01:00
DamianCorazza
d00d20121c WIP Moving work from home to the office. 2025-11-04 12:21:02 +01:00
DamianCorazza
7051267c33 ScrapBookPrefab and textures 2025-11-04 04:59:33 +01:00
journaliciouz
4d23a2ba8f confetti work 2025-11-03 15:52:52 +01:00
journaliciouz
ae840a4b2f Changed Awake/Start to OnAwake 2025-11-03 14:44:15 +01:00
DamianCorazza
475f54b704 Modified TrashCan Prefab and Fixed Bunflers hard to grab. 2025-11-03 12:38:53 +01:00
DamianCorazza
eb63086466 Added New Glow for the Combination of items, changed the position of gardener dialogue, changed position of the balls, changed soundbird cameraswitcher, changed hammerbird lurespot sprite order. 2025-11-03 11:43:05 +01:00
011901eb8f Refactoring of the interaction system and preliminary integration of save/load functionality across the game. (#44)
### Interactables Architecture Refactor
- Converted composition to inheritance, moved from component-based to class-based interactables. No more requirement for chain of "Interactable -> Item" etc.
- Created `InteractableBase` abstract base class with common functionality that replaces the old component
- Specialized child classes: `Pickup`, `ItemSlot`, `LevelSwitch`, `MinigameSwitch`, `CombinationItem`, `OneClickInteraction` are now children classes
- Light updates to the interactable inspector, moved some things arround, added collapsible inspector sections in the  UI for better editor experience

### State Machine Integration
- Custom `AppleMachine` inheritong from Pixelplacement's StateMachine which implements our own interface for saving, easy place for future improvements
- Replaced all previous StateMachines by `AppleMachine`
- Custom `AppleState`  extends from default `State`. Added serialization, split state logic into "EnterState", "RestoreState", "ExitState" allowing for separate logic when triggering in-game vs loading game
- Restores directly to target state without triggering transitional logic
- Migration tool converts existing instances

### Prefab Organization
- Saved changes from scenes into prefabs
- Cleaned up duplicated components, confusing prefabs hierarchies
- Created prefab variants where possible
- Consolidated Environment prefabs and moved them out of Placeholders subfolder into main Environment folder
- Organized item prefabs from PrefabsPLACEHOLDER into proper Items folder
- Updated prefab references - All scene references updated to new locations
- Removed placeholder files from Characters, Levels, UI, and Minigames folders

### Scene Updates
- Quarry scene with major updates
- Saved multiple working versions (Quarry, Quarry_Fixed, Quarry_OLD)
- Added proper lighting data
- Updated all interactable components to new architecture

### Minor editor tools
- New tool for testing cards from an editor window (no in-scene object required)
- Updated Interactable Inspector
- New debug option to opt in-and-out of the save/load system
- Tooling for easier migration

Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #44
2025-11-03 10:12:51 +00:00
journaliciouz
d317fffad7 Added audio data to the item pickups 2025-10-31 16:22:48 +01:00
journaliciouz
cdbb2e0d3f Added audio of Pulver combining stuff 2025-10-31 15:45:28 +01:00
journaliciouz
5735bbcfae Made the gardener spatial 2025-10-31 14:35:28 +01:00
journaliciouz
d0da5d76cd Fixed a bug where state machines and auto play audio on awake fucked me 2025-10-31 11:19:47 +01:00
journaliciouz
d48b459fea Audio refactor almost done 2025-10-30 16:31:01 +01:00
journaliciouz
2b41a9f200 Gardener audio refactor 2025-10-30 15:25:07 +01:00
journaliciouz
e81879959e Properly queue critical VO clips 2025-10-30 14:17:47 +01:00
journaliciouz
64da60dadd Merge branch 'main' into audio-overhaul 2025-10-30 11:08:16 +01:00
9396bb76b4 Merge pull request 'Update Pause menu and MinigameSelection menu to icon-based with no text' (#43) from minigame_switch_improvements into main
Reviewed-on: #43
2025-10-30 09:48:35 +00:00
Michal Pikulski
f6ebadf21e Update Pause menu and MinigameSelection menu to icon-based with no text 2025-10-30 10:47:34 +01:00
Michal Pikulski
eeca4973ae Add component search+replace 2025-10-30 10:29:57 +01:00
988bc53ec8 Finally, priority VO 2025-10-29 17:01:02 +01:00
Michal Pikulski
a020e9af04 Update level select menu with icons and scrollable view 2025-10-29 14:37:11 +01:00
3cd2466fbb Merge branch 'main' into audio-overhaul 2025-10-29 14:22:53 +01:00
f7ee3a979a Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-29 14:22:38 +01:00
4e12e4f8c1 Fixed namespace kerfuffle prohibiting Android build 2025-10-29 14:22:33 +01:00
6ece49bb28 Merge pull request 'DamianCardStyles' (#42) from DamianCardStyles into main
Reviewed-on: #42
2025-10-29 12:34:56 +00:00
54f355beda Merge branch 'main' into DamianCardStyles 2025-10-29 12:34:48 +00:00
6dc49f1686 UPDATE FROM MAIN 2025-10-29 13:34:02 +01:00
d5d01e46ea Test the new cards and organized card textures in folders 2025-10-29 13:23:55 +01:00
bf0a37fe2e Merge branch 'main' into audio-overhaul 2025-10-29 11:33:13 +01:00
Michal Pikulski
c24c5df881 Update minigame switcher to only unlock when all puzzles completed 2025-10-29 11:19:17 +01:00
Michal Pikulski
bda645dcc3 Updates to minigame switching 2025-10-29 09:57:33 +01:00
2ce6452d90 Trying to make text Warp 2025-10-28 19:10:56 +01:00
Michal Pikulski
9a5735a1a1 Shitty polaroid picture 2025-10-28 16:39:28 +01:00
1a04e82920 Merge branch 'main' into audio-overhaul 2025-10-28 16:10:48 +01:00
Michal Pikulski
b56524f1f2 Updates to the level switcher UI menu, making it much larger 2025-10-28 16:04:44 +01:00
Michal Pikulski
43779c560e Cleanup compile warnings, cleanup logs, spruce up level selection menu 2025-10-28 14:31:17 +01:00
86bee75578 Implemented pauses on AudioManager 2025-10-28 13:19:33 +01:00
a5b1a4f8a0 Merge pull request 'DamianCardStyles' (#41) from DamianCardStyles into main
Reviewed-on: #41
2025-10-28 09:51:57 +00:00
7743fbdd8f Merge branch 'main' into DamianCardStyles 2025-10-28 09:51:42 +00:00
2a18489f44 Added A new tiles material and the two levels to the build 2025-10-28 10:49:37 +01:00
Michal Pikulski
a6f37ce8b5 Re-update cucumber smack 2025-10-28 10:34:41 +01:00
Michal Pikulski
fbbc8559e2 Update ItemSlots to combine images correctly 2025-10-28 10:30:43 +01:00
Michal Pikulski
548c5118ae Update render settings, add lighting settings and update some scripts 2025-10-28 10:08:49 +01:00
3a35024fbf WIP Added New Tiles (not working properly now) 2025-10-27 18:10:38 +01:00
Michal Pikulski
2aad46be98 AUtoprogress dialogue 2025-10-27 16:06:47 +01:00
Michal Pikulski
dad1f6498d Pause timescale when game is paused 2025-10-27 15:21:23 +01:00
Michal Pikulski
7005b70a0d Default tutorial to auto-progress 2025-10-27 14:56:59 +01:00
Michal Pikulski
3ea161c987 Auto vs Manual progression of the tutorial 2025-10-27 14:55:42 +01:00
Michal Pikulski
fdfddaec95 Make combine animations and smacks ground Pulve 2025-10-27 14:43:24 +01:00
64e81c8710 WIP Level Placeholders setting 2025-10-27 14:16:56 +01:00
Michal Pikulski
f5c1ae51cd MPV of save/load system 2025-10-27 14:00:37 +01:00
062297ce6f Merge branch 'main' into DamianCardStyles 2025-10-27 13:56:31 +01:00
2524d4dcdd WIP Card Reformatting 2025-10-24 18:07:18 +02:00
690e8b4507 Merge pull request 'Update the rotation enforcement to automatically lock device into' (#40) from screen_orientation_fun into main
Reviewed-on: #40
2025-10-24 14:50:20 +00:00
Michal Pikulski
cc797f09ef Update the rotation enforcement to automatically lock device into
desired orientation.
2025-10-24 16:48:45 +02:00
5a85a602bd Revamp game pausing and input handling. Fix minigame tutorial and end sequence. (#39)
- Revamp pausing and centralize management in GameManager
- Switch Pause implementation to be counter-based to solve corner case of multiple pause requests
- Remove duplicated Pause logic from other components
- Add pausing when browsing the card album
- Fully deliver the exclusive UI implementation
- Spruce up the MiniGame tutorial with correct pausing, hiding other UI
- Correctly unpause after showing tutorial
- Fix minigame ending sequence. The cinematic correctly plays only once now
- Replaying the minigame works

Co-authored-by: Michal Adam Pikulski <michal@foolhardyhorizons.com>
Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Reviewed-on: #39
2025-10-24 11:09:32 +00:00
2e05e500c9 Added the art for cards 2025-10-23 16:55:01 +02:00
Michal Adam Pikulski
35acaddca5 FIx the issue of end game screen appearing twice 2025-10-22 11:50:24 +02:00
1cf8076488 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-22 11:03:23 +02:00
786167115c Modified Speed of minigame and two small adjustments to prefabs. 2025-10-22 11:03:15 +02:00
c80089e5fc Pushed app icons to get Steve Jobs off my back 2025-10-22 10:58:51 +02:00
Michal Adam Pikulski
8591490cb2 Make the score display a UIPage as well 2025-10-22 10:37:59 +02:00
acf3ecec3f Added Highlights to the quarry button and the Bunfflers. 2025-10-22 10:36:56 +02:00
Michal Adam Pikulski
68886aafd4 Roll the pause menu into the UI page system 2025-10-22 09:35:34 +02:00
Michal Adam Pikulski
357f942e0d Moved UIPageController out of the card system and into a dedicated prefab 2025-10-22 09:20:18 +02:00
Michal Adam Pikulski
faed21edab Make the Backpack UI visible in the AppleHillsLevel as well 2025-10-22 09:05:18 +02:00
Michal Adam Pikulski
5763aeb4b3 Un-fuck the booster opening page 2025-10-22 07:32:45 +02:00
Michal Adam Pikulski
3aed47b183 Fix input issues 2025-10-21 15:58:13 +02:00
Michal Adam Pikulski
00f6d2c6c6 Add a dirty booster pack opening sequence 2025-10-21 15:40:47 +02:00
Michal Adam Pikulski
c71836c029 Stash WIP of settings documentation 2025-10-21 15:08:48 +02:00
Michal Adam Pikulski
2abcf5c76a Cleanup the editor assembly and provide a tool overview doc 2025-10-21 14:54:58 +02:00
DamianCorazza
0a240da9a7 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-21 14:54:08 +02:00
DamianCorazza
14d1b8316e Added New Textures for Cards And Configure basic Card Variations 2025-10-21 14:53:59 +02:00
Michal Adam Pikulski
9b6dc0f616 Add a playbook for using the boostrap system 2025-10-21 14:20:09 +02:00
MacBuilder
8e90878a97 Updated diving controls and tutorial 2025-10-21 13:47:18 +02:00
MacBuilder
1a04f2a3d2 FIxed annoying compiler error 2025-10-21 13:37:14 +02:00
DamianCorazza
f8f9286ddf SLight modification to Quarry Level
Pulver and Trafalgar spawn down, and Anne Lise dialogue bubble lasts longer.
2025-10-21 12:55:23 +02:00
Michal Adam Pikulski
bb43c552b0 Block input on first loop 2025-10-21 12:51:28 +02:00
DamianCorazza
f3788b8ebe Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-21 12:42:40 +02:00
DamianCorazza
fd88698bee Modified Quarry To make the Sound Area easier to understand. 2025-10-21 12:42:28 +02:00
Michal Adam Pikulski
7096dffb54 Update readme docs for our systems 2025-10-21 12:37:57 +02:00
Michal Adam Pikulski
2fb77e1040 Cleanup the card implementation, add some readme files and update namespaces 2025-10-21 12:10:16 +02:00
Michal Adam Pikulski
af77e07f99 Update the cards to pull in from addressables to wokr in build, remove erronous code preventing building 2025-10-21 10:29:06 +02:00
journaliciouz
d1792014db Added feedback on photography in diving game 2025-10-20 23:18:31 +02:00
journaliciouz
84dd8004d5 Monster Approach and react audio 2025-10-20 22:33:39 +02:00
journaliciouz
e94b692ae4 More gardener shenanigans 2025-10-20 21:32:10 +02:00
journaliciouz
cb3aa515d1 Cucumberattack sound and anne lise shush 2025-10-20 21:23:18 +02:00
journaliciouz
b7d7e5ae35 Scoffed picnic couple audio implementation 2025-10-20 21:01:10 +02:00
1b0a206be7 Wolter sound FX 2025-10-20 17:05:24 +02:00
e3e9305f7c Merge pull request 'card_system' (#38) from card_system into main
Reviewed-on: #38
2025-10-20 14:34:58 +00:00
1278 changed files with 2404077 additions and 32004 deletions

12
.junie/guidelines.md Normal file
View File

@@ -0,0 +1,12 @@
# Project Guidelines
This is a placeholder of the project guidelines for Junie.
Replace this text with any project-level instructions for Junie, e.g.:
* What is the project structure
* Whether Junie should run tests to check the correctness of the proposed solution
* How does Junie run tests (once it requires any non-standard approach)
* Whether Junie should build the project before submitting the result
* Any code-style related instructions
As an option you can ask Junie to create these guidelines for you.

View File

@@ -13,6 +13,7 @@ MonoBehaviour:
m_Name: AddressableAssetGroupSortSettings
m_EditorClassIdentifier:
sortOrder:
- 0d5d36d6da388314b92b9c6967d23f39
- 75e1f68b7bf77f34f8ad4aeab74d4244
- eb8a37153d819c44194f7ce97570a3d3
- 2b3d7cefec0915e42be04aebf0400a56

View File

@@ -15,7 +15,7 @@ MonoBehaviour:
m_DefaultGroup: 6f3207429a65b3e4b83935ac19791077
m_currentHash:
serializedVersion: 2
Hash: 58bff643ea54adc47e3181c09b68468c
Hash: 589e22fe6cd2fe0e25d89bd44a35bcbc
m_OptimizeCatalogSize: 0
m_BuildRemoteCatalog: 0
m_CatalogRequestsTimeout: 0
@@ -60,6 +60,7 @@ MonoBehaviour:
m_BuildAddressablesWithPlayerBuild: 0
m_overridePlayerVersion: '[UnityEditor.PlayerSettings.bundleVersion]'
m_GroupAssets:
- {fileID: 11400000, guid: 124f05e204489af49943d7fc039640a4, type: 2}
- {fileID: 11400000, guid: efe7e1728e73e9546ac5dfee2eff524f, type: 2}
- {fileID: 11400000, guid: 6e4927e7e19eef34b93dc2baa9e9e8e2, type: 2}
- {fileID: 11400000, guid: 4186fdd83f912a14b97fbf4644266b0d, type: 2}
@@ -104,6 +105,7 @@ MonoBehaviour:
m_LabelTable:
m_LabelNames:
- default
- BlokkemonCard
m_SchemaTemplates: []
m_GroupTemplateObjects:
- {fileID: 11400000, guid: ea0a5135f5495eb4693a23d94617fe92, type: 2}

View File

@@ -0,0 +1,155 @@
%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: bbb281ee3bf0b054c82ac2347e9e782c, type: 3}
m_Name: BlokkemonCards
m_EditorClassIdentifier: Unity.Addressables.Editor::UnityEditor.AddressableAssets.Settings.AddressableAssetGroup
m_GroupName: BlokkemonCards
m_GUID: 0d5d36d6da388314b92b9c6967d23f39
m_SerializeEntries:
- m_GUID: 0046d7c3ed6b85245af4ce4144b60dfb
m_Address: Assets/Data/Cards/Card_New Card 1.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 0cdbd83156224f242b3cab9bb96a7b41
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 0f47589539ec1d948890869cea0bfdf0
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 12a59553805b9374aa830df9b3866864
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 1d60a4c02e1dbb64dbd638d32d2bcf44
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 2deeff2bdb1cc6f4da7439172e0ed9fa
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 327937827705f814da24fa5703203881
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 4920deb44851b64499bcee8342ed5a13
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 4f4ec75013bc276429c2f4fa52d165e0
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 53996921ed2094948aa317efe4ca6630
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 73d54071304571647b3238a799d9781f
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 774d2cb3ff7798a4480cd3a559f8d8d0
m_Address: Assets/Data/Cards/Card_New Card 1.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 80e3766cc597fd94f895f5cd6aa2bcc6
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 82008856df7c51f47b1582de464ba44b
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 99d8e528a8f9ead438e4c88a08c6f6c0
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: ac75dd9d27a925f4c90bbc3b255820e2
m_Address: Assets/Data/Cards/Card_Brosten.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: b7ac7081045409f469f2b28c0482aa17
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: c3661f7667d21f043b6b6ad84433b9e2
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: c73a9b19b3208d940b9fae7360287a48
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: cd07dfe9285ad414a9b3bd71829b1c41
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: d30884f8991a22a4c93caf8fe1477702
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: e2d5a81487e00e2489357c877fa484db
m_Address: Assets/Data/Cards/Card_New Card.asset
m_ReadOnly: 0
m_SerializedLabels:
- BlokkemonCard
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: 11da9bb90d9dd5848b4f7629415a6937, type: 2}
m_SchemaSet:
m_Schemas:
- {fileID: 11400000, guid: a0affac7520cbac4283e5d0fe0c0d28a, type: 2}
- {fileID: 11400000, guid: ca0e74b531acf5449a15f65103061116, type: 2}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 8fdeae7881d130f408e0f31c101ab41f
guid: 124f05e204489af49943d7fc039640a4
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@@ -0,0 +1,48 @@
%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: e5d17a21594effb4e9591490b009e7aa, type: 3}
m_Name: BlokkemonCards_BundledAssetGroupSchema
m_EditorClassIdentifier: Unity.Addressables.Editor::UnityEditor.AddressableAssets.Settings.GroupSchemas.BundledAssetGroupSchema
m_Group: {fileID: 11400000, guid: 124f05e204489af49943d7fc039640a4, type: 2}
m_InternalBundleIdMode: 1
m_Compression: 1
m_IncludeAddressInCatalog: 1
m_IncludeGUIDInCatalog: 1
m_IncludeLabelsInCatalog: 1
m_InternalIdNamingMode: 0
m_CacheClearBehavior: 0
m_IncludeInBuild: 1
m_BundledAssetProviderType:
m_AssemblyName: Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
m_ClassName: UnityEngine.ResourceManagement.ResourceProviders.BundledAssetProvider
m_StripDownloadOptions: 0
m_ForceUniqueProvider: 0
m_UseAssetBundleCache: 1
m_UseAssetBundleCrc: 1
m_UseAssetBundleCrcForCachedBundles: 1
m_UseUWRForLocalBundles: 0
m_Timeout: 0
m_ChunkedTransfer: 0
m_RedirectLimit: -1
m_RetryCount: 0
m_BuildPath:
m_Id: c258e2bcd3e8ac742ba98f152c0e6322
m_LoadPath:
m_Id: 88323bf0b2ef98446961cedd6232bd47
m_BundleMode: 0
m_AssetBundleProviderType:
m_AssemblyName: Unity.ResourceManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
m_ClassName: UnityEngine.ResourceManagement.ResourceProviders.AssetBundleProvider
m_UseDefaultSchemaSettings: 0
m_SelectedPathPairIndex: 0
m_BundleNaming: 0
m_AssetLoadMode: 0

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 5d8121cdf52bfe9488b40ed22d649209
guid: a0affac7520cbac4283e5d0fe0c0d28a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@@ -0,0 +1,16 @@
%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: 5834b5087d578d24c926ce20cd31e6d6, type: 3}
m_Name: BlokkemonCards_ContentUpdateGroupSchema
m_EditorClassIdentifier: Unity.Addressables.Editor::UnityEditor.AddressableAssets.Settings.GroupSchemas.ContentUpdateGroupSchema
m_Group: {fileID: 11400000, guid: 124f05e204489af49943d7fc039640a4, type: 2}
m_StaticContent: 0

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 8f02c3699de87014bac8c03b96772a4b
guid: ca0e74b531acf5449a15f65103061116
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@@ -1,5 +1,38 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!243 &-6354048548703642832
AudioMixerGroupController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Flavor VO
m_AudioMixer: {fileID: 24100000}
m_GroupID: d96f2f2d9081a2b4680e4cc99ae6dde2
m_Children: []
m_Volume: 8b556d01082609a41b5e0ac71387eb2b
m_Pitch: 543e5193b3b867a4a9e179b532d94963
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: 2755879577735596061}
m_UserColorIndex: 0
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!244 &-2388863367724940654
AudioMixerEffectController:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_EffectID: 70589a6f94c3a7e4f985d76dc20fec7d
m_EffectName: Attenuation
m_MixLevel: 1017da8a9e9644f46a2582f97a979436
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0
--- !u!243 &-1208528772216134639
AudioMixerGroupController:
m_ObjectHideFlags: 0
@@ -19,6 +52,25 @@ AudioMixerGroupController:
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!243 &-281949353495416486
AudioMixerGroupController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Critical VO
m_AudioMixer: {fileID: 24100000}
m_GroupID: 0564b669f5b88d74fbf644daddff7659
m_Children: []
m_Volume: b5a4611797e711d4384da7546db03ad4
m_Pitch: 6b6c6926b5cf7d64e8546ad727cd1b56
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: 4434749241126400044}
m_UserColorIndex: 0
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!241 &24100000
AudioMixerController:
m_ObjectHideFlags: 0
@@ -33,7 +85,7 @@ AudioMixerController:
m_StartSnapshot: {fileID: 24500006}
m_SuspendThreshold: -80
m_EnableSuspend: 1
m_UpdateMode: 0
m_UpdateMode: 1
m_ExposedParameters: []
m_AudioMixerGroupViews:
- guids:
@@ -41,6 +93,9 @@ AudioMixerController:
- 18a903247b220fb47b8e743f756a2d19
- 7e41227c6d9a65c4898080710c015deb
- 93449300145f3ff4c9f21b59e4c06cb8
- 0564b669f5b88d74fbf644daddff7659
- d96f2f2d9081a2b4680e4cc99ae6dde2
- 69e7e2391e0225240b94aab8ac4968dd
name: View
m_CurrentViewIndex: 0
m_TargetSnapshot: {fileID: 24500006}
@@ -56,6 +111,7 @@ AudioMixerGroupController:
m_Children:
- {fileID: -1208528772216134639}
- {fileID: 1171626333864818265}
- {fileID: 5060278701334990569}
- {fileID: 3533147658878909314}
m_Volume: 59834639f5649d34cbb5ed8055029b93
m_Pitch: 2c79200ddd7bbf244bc5980d7fbb6e1c
@@ -124,6 +180,20 @@ AudioMixerGroupController:
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!244 &2755879577735596061
AudioMixerEffectController:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Attenuation
m_EffectID: 938281aaf51dfdb448130f1d299a9c32
m_EffectName: Attenuation
m_MixLevel: ba6923d75c4220e4bab55e5aa6eab3ea
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0
--- !u!243 &3533147658878909314
AudioMixerGroupController:
m_ObjectHideFlags: 0
@@ -133,7 +203,9 @@ AudioMixerGroupController:
m_Name: Voice Over
m_AudioMixer: {fileID: 24100000}
m_GroupID: 7e41227c6d9a65c4898080710c015deb
m_Children: []
m_Children:
- {fileID: -281949353495416486}
- {fileID: -6354048548703642832}
m_Volume: f2db72fd62c62d74cb03d11a28b9ec8f
m_Pitch: f711bad694828024996b7a703eb57af7
m_Send: 00000000000000000000000000000000
@@ -143,6 +215,39 @@ AudioMixerGroupController:
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!244 &4434749241126400044
AudioMixerEffectController:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_EffectID: 28433275b262aa6499b0cf5076b597de
m_EffectName: Attenuation
m_MixLevel: 5925348bdea90b04a895b3cd54c45b27
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0
--- !u!243 &5060278701334990569
AudioMixerGroupController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Music
m_AudioMixer: {fileID: 24100000}
m_GroupID: 69e7e2391e0225240b94aab8ac4968dd
m_Children: []
m_Volume: c518de39492791c49b618d0aeac5a88d
m_Pitch: 264704130d9d22745aa9fa1150ff4490
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: -2388863367724940654}
m_UserColorIndex: 0
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!244 &6612228481115079330
AudioMixerEffectController:
m_ObjectHideFlags: 3

View File

@@ -0,0 +1,63 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!850595691 &4890085278179872738
LightingSettings:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AppleHillsLightingSettings
serializedVersion: 9
m_EnableBakedLightmaps: 0
m_EnableRealtimeLightmaps: 0
m_RealtimeEnvironmentLighting: 1
m_BounceScale: 1
m_AlbedoBoost: 1
m_IndirectOutputScale: 1
m_UsingShadowmask: 1
m_BakeBackend: 1
m_LightmapMaxSize: 1024
m_LightmapSizeFixed: 0
m_UseMipmapLimits: 1
m_BakeResolution: 40
m_Padding: 2
m_LightmapCompression: 3
m_AO: 0
m_AOMaxDistance: 1
m_CompAOExponent: 1
m_CompAOExponentDirect: 0
m_ExtractAO: 0
m_MixedBakeMode: 2
m_LightmapsBakeMode: 1
m_FilterMode: 1
m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0}
m_ExportTrainingData: 0
m_EnableWorkerProcessBaking: 1
m_TrainingDataDestination: TrainingData
m_RealtimeResolution: 2
m_ForceWhiteAlbedo: 0
m_ForceUpdates: 0
m_PVRCulling: 1
m_PVRSampling: 1
m_PVRDirectSampleCount: 32
m_PVRSampleCount: 512
m_PVREnvironmentSampleCount: 256
m_PVREnvironmentReferencePointCount: 2048
m_LightProbeSampleCountMultiplier: 4
m_PVRBounces: 2
m_PVRMinBounces: 2
m_PVREnvironmentImportanceSampling: 1
m_PVRFilteringMode: 1
m_PVRDenoiserTypeDirect: 1
m_PVRDenoiserTypeIndirect: 1
m_PVRDenoiserTypeAO: 1
m_PVRFilterTypeDirect: 0
m_PVRFilterTypeIndirect: 0
m_PVRFilterTypeAO: 0
m_PVRFilteringGaussRadiusDirect: 1
m_PVRFilteringGaussRadiusIndirect: 1
m_PVRFilteringGaussRadiusAO: 1
m_PVRFilteringAtrousPositionSigmaDirect: 0.5
m_PVRFilteringAtrousPositionSigmaIndirect: 2
m_PVRFilteringAtrousPositionSigmaAO: 1
m_RespectSceneVisibilityWhenBakingGI: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d13be91f5840cb447b407875cd9bbefc
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 4890085278179872738
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -22,7 +22,7 @@ MonoBehaviour:
m_RequireDepthTexture: 0
m_RequireOpaqueTexture: 0
m_OpaqueDownsampling: 1
m_SupportsTerrainHoles: 1
m_SupportsTerrainHoles: 0
m_SupportsHDR: 0
m_HDRColorBufferPrecision: 0
m_MSAA: 1
@@ -44,7 +44,7 @@ MonoBehaviour:
m_MainLightRenderingMode: 0
m_MainLightShadowsSupported: 0
m_MainLightShadowmapResolution: 2048
m_AdditionalLightsRenderingMode: 1
m_AdditionalLightsRenderingMode: 0
m_AdditionalLightsPerObjectLimit: 4
m_AdditionalLightShadowsSupported: 0
m_AdditionalLightsShadowmapResolution: 2048
@@ -71,8 +71,8 @@ MonoBehaviour:
m_AdditionalLightsCookieFormat: 3
m_UseSRPBatcher: 1
m_SupportsDynamicBatching: 0
m_MixedLightingSupported: 1
m_SupportsLightCookies: 1
m_MixedLightingSupported: 0
m_SupportsLightCookies: 0
m_SupportsLightLayers: 0
m_DebugLevel: 0
m_StoreActionsOptimization: 0
@@ -91,7 +91,7 @@ MonoBehaviour:
m_LocalShadowsAtlasResolution: 256
m_MaxPixelLights: 0
m_ShadowAtlasResolution: 256
m_VolumeFrameworkUpdateMode: 0
m_VolumeFrameworkUpdateMode: 1
m_VolumeProfile: {fileID: 0}
apvScenesData:
obsoleteSceneBounds:
@@ -101,7 +101,7 @@ MonoBehaviour:
m_Keys: []
m_Values:
m_PrefilteringModeMainLightShadows: 0
m_PrefilteringModeAdditionalLight: 4
m_PrefilteringModeAdditionalLight: 0
m_PrefilteringModeAdditionalLightShadows: 0
m_PrefilterXRKeywords: 1
m_PrefilteringModeForwardPlus: 0

View File

@@ -53,6 +53,6 @@ MonoBehaviour:
m_CameraSortingLayerDownsamplingMethod: 0
m_MaxLightRenderTextureCount: 16
m_MaxShadowRenderTextureCount: 1
m_PostProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2}
m_DefaultMaterialType: 0
m_PostProcessData: {fileID: 0}
m_DefaultMaterialType: 1
m_DefaultCustomMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2}

View File

@@ -22,136 +22,136 @@ AnimationClip:
curve:
- time: 0
value: {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.016666668
value: {fileID: 8906880750509030790, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.033333335
value: {fileID: 2041700527519432934, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.05
value: {fileID: -122113120711856545, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 8906880750509030790, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.06666667
value: {fileID: -260481105881172014, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.083333336
value: {fileID: -6622305946934705326, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 2041700527519432934, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.1
value: {fileID: 2860702342352278680, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.11666667
value: {fileID: 1901944910730988534, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -122113120711856545, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.13333334
value: {fileID: -6520618733805571745, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.15
value: {fileID: 3022596597473681262, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -260481105881172014, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.16666667
value: {fileID: 1204644881459905932, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.18333334
value: {fileID: 1056830820185581354, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -6622305946934705326, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.2
value: {fileID: -7105232555648306615, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.21666667
value: {fileID: -652026886084597837, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 2860702342352278680, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.23333333
value: {fileID: -4540761585569079769, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.25
value: {fileID: -5109479888793026350, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 1901944910730988534, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.26666668
value: {fileID: -4036630437906967387, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.28333333
value: {fileID: 801943533739151625, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -6520618733805571745, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.3
value: {fileID: -2267370628861983235, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.31666666
value: {fileID: 341647588879632704, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 3022596597473681262, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.33333334
value: {fileID: -1983865464302337135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.35
value: {fileID: 2707171279301735498, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 1204644881459905932, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.36666667
value: {fileID: 8831512007435921494, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.38333333
value: {fileID: 4626183846303783780, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 1056830820185581354, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.4
value: {fileID: -2277327416414919540, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.41666666
value: {fileID: -7418991344542357872, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -7105232555648306615, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.43333334
value: {fileID: -5722687793916137135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.45
value: {fileID: 4733390603466533478, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -652026886084597837, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.46666667
value: {fileID: 7794538912838388228, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.48333332
value: {fileID: -6061222791025941249, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -4540761585569079769, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.5
value: {fileID: 3497440731386147990, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.51666665
value: {fileID: -8429106390024364219, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -5109479888793026350, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.53333336
value: {fileID: 2544536342771879721, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.55
value: {fileID: -8737456598628565943, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -4036630437906967387, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.56666666
value: {fileID: -2474291713210855829, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.5833333
value: {fileID: 3821937655511650850, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 801943533739151625, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6
value: {fileID: -6233509283156947142, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6166667
value: {fileID: -2185360674263307586, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -2267370628861983235, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6333333
value: {fileID: 845357041228852819, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.65
value: {fileID: 4403433291724713342, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 341647588879632704, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6666667
value: {fileID: 3657240548800692885, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.68333334
value: {fileID: -4901654772339705171, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -1983865464302337135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.7
value: {fileID: -3912778203287357197, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.71666664
value: {fileID: 6569445112083916053, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 2707171279301735498, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.73333335
value: {fileID: -7400543989923980688, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.75
value: {fileID: -6332648109092208476, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 8831512007435921494, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.76666665
value: {fileID: -4263876350210749175, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.78333336
value: {fileID: -4977422680545692481, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 4626183846303783780, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8
value: {fileID: 549927587459208453, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.81666666
value: {fileID: 6225119585260793806, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -2277327416414919540, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8333333
value: {fileID: -8851827987805722175, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.85
value: {fileID: 4875469192827730846, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -7418991344542357872, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8666667
value: {fileID: -7781180602356973421, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8833333
value: {fileID: 859783997736569042, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -5722687793916137135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.9
value: {fileID: -752894698880566422, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.9166667
value: {fileID: -9033757906932974073, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 4733390603466533478, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.93333334
value: {fileID: -3329152070564756703, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.95
value: {fileID: -1571039978015268605, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 7794538912838388228, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.96666664
value: {fileID: -6174009466675363472, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.98333335
value: {fileID: 2840136614405453735, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: -6061222791025941249, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1
value: {fileID: -8322046293593963787, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.0166667
value: {fileID: 9103460804194853351, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
value: {fileID: 3497440731386147990, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.0333333
value: {fileID: -8429106390024364219, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.0666667
value: {fileID: 2544536342771879721, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.1
value: {fileID: -8737456598628565943, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.1333333
value: {fileID: -2474291713210855829, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.1666666
value: {fileID: 3821937655511650850, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.2
value: {fileID: -6233509283156947142, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.2333333
value: {fileID: -2185360674263307586, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.2666667
value: {fileID: 845357041228852819, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.3
value: {fileID: 4403433291724713342, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.3333334
value: {fileID: 3657240548800692885, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.3666667
value: {fileID: -4901654772339705171, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.4
value: {fileID: -3912778203287357197, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.4333333
value: {fileID: 6569445112083916053, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.4666667
value: {fileID: -7400543989923980688, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.5
value: {fileID: -6332648109092208476, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.5333333
value: {fileID: -4263876350210749175, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.5666667
value: {fileID: -4977422680545692481, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.6
value: {fileID: 549927587459208453, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.6333333
value: {fileID: 6225119585260793806, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.6666666
value: {fileID: -8851827987805722175, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.7
value: {fileID: 4875469192827730846, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.7333333
value: {fileID: -7781180602356973421, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.7666667
value: {fileID: 859783997736569042, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.8
value: {fileID: -752894698880566422, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.8333334
value: {fileID: -9033757906932974073, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.8666667
value: {fileID: -3329152070564756703, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.9
value: {fileID: -1571039978015268605, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.9333333
value: {fileID: -6174009466675363472, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1.9666667
value: {fileID: 2840136614405453735, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 2
value: {fileID: -8322046293593963787, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 2.0333333
value: {fileID: 9103460804194853351, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 2.0666666
value: {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
@@ -236,7 +236,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.05
m_StopTime: 2.1
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@@ -22,64 +22,64 @@ AnimationClip:
curve:
- time: 0
value: {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.016666668
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.033333335
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.05
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.06666667
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.083333336
value: {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.1
value: {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.18333334
value: {fileID: 4734585827436184375, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.13333334
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.16666667
value: {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.2
value: {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.21666667
value: {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.23333333
value: {fileID: 4734585827436184375, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.26666668
value: {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.3
value: {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.33333334
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.36666667
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.4
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.43333334
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.46666667
value: {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.5
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.53333336
value: {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.56666666
value: {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6333333
value: {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6666667
value: {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.7
value: {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.73333335
value: {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.76666665
value: {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
value: {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8
value: {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8333333
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8666667
value: {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.9
value: {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.93333334
value: {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.96666664
value: {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1
value: {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0333333
value: {fileID: -2418630947029704618, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
attribute: m_Sprite
path: Picnic PPL Chilling/PicnicPPl
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
@@ -128,7 +128,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.81666666
m_StopTime: 1.0666666
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@@ -22,20 +22,20 @@ AnimationClip:
curve:
- time: 0
value: {fileID: 409820302571474225, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- time: 0.13333334
value: {fileID: -7526192130359645791, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- time: 0.26666668
value: {fileID: -7526192130359645791, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- time: 0.53333336
value: {fileID: 7940957057387369932, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- time: 0.36666667
- time: 0.73333335
value: {fileID: 2590761823639534279, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- time: 0.5
- time: 1
value: {fileID: 987614732349934808, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
attribute: m_Sprite
path: Picnic PPL Distracted/PicnicPPl
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
@@ -62,7 +62,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.51666665
m_StopTime: 1.0333333
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@@ -22,68 +22,68 @@ AnimationClip:
curve:
- time: 0
value: {fileID: -2418630947029704618, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.06666667
- time: 0.13333334
value: {fileID: 2674273452559934012, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.15
- time: 0.3
value: {fileID: -2698605909685488034, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.21666667
value: {fileID: 3861976936690819325, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.28333333
value: {fileID: -6689870935560218674, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.35
value: {fileID: 7461197226090594249, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.43333334
value: {fileID: -924226019851306031, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.5
value: {fileID: -6780147634687105545, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
value: {fileID: 3861976936690819325, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.56666666
value: {fileID: -2535309933509542117, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.65
value: {fileID: 1533827117853223934, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.71666664
value: {fileID: -8439729946137456171, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.78333336
value: {fileID: 1198232512917018545, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.85
value: {fileID: 8417572472515901457, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.93333334
value: {fileID: -2089482225516024132, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
value: {fileID: -6689870935560218674, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.7
value: {fileID: 7461197226090594249, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.8666667
value: {fileID: -924226019851306031, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1
value: {fileID: -9154026772805048227, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.0666667
value: {fileID: 8710589816849778765, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.15
value: {fileID: -4178953323708561460, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.2166667
value: {fileID: 1655498968633830498, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.2833333
value: {fileID: 4332688065003410644, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.35
value: {fileID: -4097196431023125937, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
value: {fileID: -6780147634687105545, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.1333333
value: {fileID: -2535309933509542117, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.3
value: {fileID: 1533827117853223934, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.4333333
value: {fileID: 3366559405002510065, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.5
value: {fileID: -3160329582883260081, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
value: {fileID: -8439729946137456171, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.5666667
value: {fileID: -8010593566981225273, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.65
value: {fileID: 5470457927680665288, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.7166667
value: {fileID: -6580361640191485552, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.7833333
value: {fileID: -4569953206706430958, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.85
value: {fileID: 5448712653706865606, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.9333333
value: {fileID: -494583595472008175, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
value: {fileID: 1198232512917018545, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.7
value: {fileID: 8417572472515901457, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.8666667
value: {fileID: -2089482225516024132, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2
value: {fileID: -9154026772805048227, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.1333334
value: {fileID: 8710589816849778765, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.3
value: {fileID: -4178953323708561460, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.4
value: {fileID: 1655498968633830498, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.5
value: {fileID: 4332688065003410644, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.6
value: {fileID: -4097196431023125937, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.7333333
value: {fileID: 3366559405002510065, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.8333333
value: {fileID: -3160329582883260081, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 2.9333334
value: {fileID: -8010593566981225273, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 3.0666666
value: {fileID: 5470457927680665288, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 3.1666667
value: {fileID: -6580361640191485552, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 3.2666667
value: {fileID: -4569953206706430958, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 3.3666666
value: {fileID: 5448712653706865606, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 3.5
value: {fileID: -494583595472008175, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 3.6
value: {fileID: 6624740418941178713, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
attribute: m_Sprite
path: Picnic PPL Chilling/PicnicPPl
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
@@ -134,7 +134,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.0166667
m_StopTime: 3.6333332
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
@@ -153,4 +153,18 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 0
functionName: PlayFeederAudio
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0
- time: 2.2333333
functionName: PlayMoanerAudio
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

@@ -288,7 +288,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.3999999
m_StopTime: 2.4
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
@@ -370,4 +370,11 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 2.4
functionName: OnStationaryAnimationComplete
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

@@ -22,12 +22,6 @@ AnimationClip:
curve:
- time: 0
value: {fileID: -948023933063867427, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 583659896831181404, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -2937703658432899079, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -5055880670759659210, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 5027879971021354967, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
@@ -39,11 +33,11 @@ AnimationClip:
- time: 0
value: {fileID: -7273743601101457421, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -648478991162114533, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: 9040987707557795275, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 583659896831181404, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -6543857550807266376, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -7888386683388033157, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -4977622519180332382, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
@@ -61,15 +55,15 @@ AnimationClip:
- time: 0
value: {fileID: 8200196815439204935, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 9040987707557795275, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: -7888386683388033157, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -8575418099464798719, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: -5055880670759659210, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 9004259394944233097, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: -2937703658432899079, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 3127634723059022987, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: -648478991162114533, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 5241555131770433374, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: -5495871994767198068, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 5418535750275563471, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
@@ -85,11 +79,11 @@ AnimationClip:
- time: 0
value: {fileID: -2885076971222660228, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -5495871994767198068, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
value: {fileID: -8575418099464798719, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 5241555131770433374, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -4720941432450666265, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -7678607646472632250, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 1852608027429398406, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
@@ -102,6 +96,12 @@ AnimationClip:
value: {fileID: -3093709647181459402, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -2461877082101491878, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 3127634723059022987, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: 9004259394944233097, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0
value: {fileID: -7678607646472632250, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0.033333335
value: {fileID: 7268251130221382757, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- time: 0.06666667
@@ -223,17 +223,14 @@ AnimationClip:
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -948023933063867427, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 583659896831181404, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -2937703658432899079, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -5055880670759659210, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 5027879971021354967, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -6874046863817650696, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 4621935603557290428, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -50415896457849731, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -7273743601101457421, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -648478991162114533, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 9040987707557795275, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 583659896831181404, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -6543857550807266376, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -7888386683388033157, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -4977622519180332382, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 5471276047011663895, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -98007810016678141, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
@@ -242,11 +239,11 @@ AnimationClip:
- {fileID: 816948775718538035, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 370516306874588968, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 8200196815439204935, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 9040987707557795275, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -8575418099464798719, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 9004259394944233097, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 3127634723059022987, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 5241555131770433374, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -7888386683388033157, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -5055880670759659210, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -2937703658432899079, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -648478991162114533, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -5495871994767198068, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 5418535750275563471, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -5829126979446497464, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -5251324859876319832, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
@@ -254,15 +251,18 @@ AnimationClip:
- {fileID: -5941807999972599246, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -6122512210190206414, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -2885076971222660228, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -5495871994767198068, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -8575418099464798719, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 5241555131770433374, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -4720941432450666265, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -7678607646472632250, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 1852608027429398406, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 6260421290162468957, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 4701796658047755360, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -1422632302640868973, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -3093709647181459402, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -2461877082101491878, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 3127634723059022987, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 9004259394944233097, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -7678607646472632250, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 7268251130221382757, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: -6155945168965275997, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
- {fileID: 6055894852475098276, guid: d641d9522dd44e745b89a598cd35bec7, type: 3}
@@ -336,4 +336,11 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 1.6666666
functionName: OnStationaryAnimationComplete
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

@@ -75,7 +75,7 @@ AnimatorStateTransition:
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.75
m_HasExitTime: 0
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1

View File

@@ -21,30 +21,28 @@ AnimationClip:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 553349555, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.11666667
value: {fileID: 949643404, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.21666667
- time: 0.083333336
value: {fileID: 779209807, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.33333334
- time: 0.2
value: {fileID: -765294982, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.45
- time: 0.31666666
value: {fileID: -1692258928, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.55
- time: 0.41666666
value: {fileID: 1433633040, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.6666667
- time: 0.53333336
value: {fileID: -1134214680, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.78333336
- time: 0.65
value: {fileID: -122394679, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 0.8833333
- time: 0.75
value: {fileID: -707060961, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 1
- time: 0.8666667
value: {fileID: 253252098, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 1.1166667
- time: 0.98333335
value: {fileID: 162215666, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 1.2166667
- time: 1.0833334
value: {fileID: -1175693358, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- time: 1.3333334
- time: 1.2
value: {fileID: -176178923, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
attribute: m_Sprite
path:
@@ -68,7 +66,6 @@ AnimationClip:
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 553349555, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- {fileID: 949643404, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- {fileID: 779209807, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
- {fileID: -765294982, guid: b215bf5a0a0f5db4da48c686489d8cab, type: 3}
@@ -86,7 +83,7 @@ AnimationClip:
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.35
m_StopTime: 1.2166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@@ -135,4 +135,11 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 0
functionName: PlayAudio
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

@@ -138,4 +138,11 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 0
functionName: PlayAudio
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 3
messageOptions: 0

View File

@@ -192,4 +192,11 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 0
functionName: PlayAudio
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 1
messageOptions: 0

View File

@@ -102,4 +102,11 @@ AnimationClip:
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []
m_Events:
- time: 0
functionName: PlayAudio
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 2
messageOptions: 0

View File

@@ -0,0 +1,53 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Tiles Material
m_Shader: {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- PIXELSNAP_ON
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _AlphaTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MaskTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _NormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- PixelSnap: 1
- _EnableExternalAlpha: 0
- _ZWrite: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _Flip: {r: 1, g: 1, b: 1, a: 1}
- _RendererColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4b5abdd2e0aed944893af33d98905114
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 840f3d8a936b39a41b5896328a692005
guid: 4c8aa6e55c410284aaa57c461eba5bdf
PrefabImporter:
externalObjects: {}
userData:

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 1d2257a430320c94084cd1dda5a0a747
guid: 5f6f72f272957b4439cbaf4e18106470
folderAsset: yes
DefaultImporter:
externalObjects: {}

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 223935611d3e2ac48b0b02a9bc008a6b
guid: 838a9b273a517f041bf17cd5d79778bf
folderAsset: yes
DefaultImporter:
externalObjects: {}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View File

@@ -0,0 +1,156 @@
fileFormatVersion: 2
guid: 8c7e8a413c620f743939b1babed38fe4
TextureImporter:
internalIDToNameTable:
- first:
213: 2637919723447832900
second: AEblerup_Map_Bench_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Bench_0
rect:
serializedVersion: 2
x: 111
y: 100
width: 294
height: 148
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 441da1e1306cb9420800000000000000
internalID: 2637919723447832900
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: c8315168c8e1b87429301c9a31e63c0a
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Bench_0: 2637919723447832900
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

@@ -0,0 +1,273 @@
fileFormatVersion: 2
guid: 37d934b5c7d8acd4fb1436ffd506c3f6
TextureImporter:
internalIDToNameTable:
- first:
213: 7502144534480956570
second: AEblerup_Map_Church_0
- first:
213: 2872684627773138103
second: AEblerup_Map_Church_1
- first:
213: 4801287575856954772
second: AEblerup_Map_Church_2
- first:
213: -7637091804977025535
second: AEblerup_Map_Church_3
- first:
213: 5272244640459413689
second: AEblerup_Map_Church_4
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.3}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Church_0
rect:
serializedVersion: 2
x: 199
y: 559
width: 117
height: 245
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: a9c206fb4b8fc1860800000000000000
internalID: 7502144534480956570
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Church_1
rect:
serializedVersion: 2
x: 513
y: 96
width: 560
height: 927
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 7b4a426e273ddd720800000000000000
internalID: 2872684627773138103
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Church_2
rect:
serializedVersion: 2
x: 1071
y: 699
width: 136
height: 209
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 49d3377ac9991a240800000000000000
internalID: 4801287575856954772
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Church_3
rect:
serializedVersion: 2
x: 0
y: 394
width: 90
height: 215
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 10e2c476779930690800000000000000
internalID: -7637091804977025535
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Church_4
rect:
serializedVersion: 2
x: 260
y: 235
width: 117
height: 203
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 9b85a832196ca2940800000000000000
internalID: 5272244640459413689
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Church_0: 7502144534480956570
AEblerup_Map_Church_1: 2872684627773138103
AEblerup_Map_Church_2: 4801287575856954772
AEblerup_Map_Church_3: -7637091804977025535
AEblerup_Map_Church_4: 5272244640459413689
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: f88c9481c913f9147a826f2807c0c79a
TextureImporter:
internalIDToNameTable:
- first:
213: -4143183601855851089
second: AEblerup_Map_CityHall_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.3}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_CityHall_0
rect:
serializedVersion: 2
x: 61
y: 63
width: 801
height: 480
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: fa5982437747086c0800000000000000
internalID: -4143183601855851089
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_CityHall_0: -4143183601855851089
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 KiB

View File

@@ -0,0 +1,221 @@
fileFormatVersion: 2
guid: 74585552541450f4e89052d32d26bdab
TextureImporter:
internalIDToNameTable:
- first:
213: 2602544124857022935
second: AEblerup_Map_GrassPatches_0
- first:
213: 8972181042257889989
second: AEblerup_Map_GrassPatches_1
- first:
213: -8275400475191500610
second: AEblerup_Map_GrassPatches_2
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_GrassPatches_0
rect:
serializedVersion: 2
x: 5355
y: 2840
width: 2438
height: 1506
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 7d9f16ab7181e1420800000000000000
internalID: 2602544124857022935
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_GrassPatches_1
rect:
serializedVersion: 2
x: 8621
y: 4269
width: 1527
height: 567
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 5ca864c0f17938c70800000000000000
internalID: 8972181042257889989
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_GrassPatches_2
rect:
serializedVersion: 2
x: 1108
y: 626
width: 3675
height: 2825
alignment: 0
pivot: {x: 0, y: 0}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: eb0ac1edc1fd72d80800000000000000
internalID: -8275400475191500610
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_GrassPatches_0: 2602544124857022935
AEblerup_Map_GrassPatches_1: 8972181042257889989
AEblerup_Map_GrassPatches_2: -8275400475191500610
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 37fc2fc76bb59144a9d7b5ebf3879706
TextureImporter:
internalIDToNameTable:
- first:
213: 1161842901472597023
second: AEblerup_Map_Hill_SeeSaw_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.4}
spritePixelsToUnits: 28
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Hill_SeeSaw_0
rect:
serializedVersion: 2
x: 17
y: 162
width: 1036
height: 633
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: f14551396f1bf1010800000000000000
internalID: 1161842901472597023
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Hill_SeeSaw_0: 1161842901472597023
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 077203c0ad799224ea401b70bda337f4
TextureImporter:
internalIDToNameTable:
- first:
213: 9174288354497290617
second: AEblerup_Map_Hill_Valentine 1_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.4}
spritePixelsToUnits: 50
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Hill_Valentine 1_0
rect:
serializedVersion: 2
x: 37
y: 126
width: 1466
height: 1108
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 97160d4a6ae915f70800000000000000
internalID: 9174288354497290617
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Hill_Valentine 1_0: 9174288354497290617
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 40448836d4e1c6b4f969e2d66c74fe79
TextureImporter:
internalIDToNameTable:
- first:
213: -3538373275689505233
second: AEblerup_Map_Hill_Valentine_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.4}
spritePixelsToUnits: 50
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Hill_Valentine_0
rect:
serializedVersion: 2
x: 37
y: 126
width: 1466
height: 1442
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: f2eaacbb04c25eec0800000000000000
internalID: -3538373275689505233
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Hill_Valentine_0: -3538373275689505233
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

View File

@@ -0,0 +1,195 @@
fileFormatVersion: 2
guid: 0ba32bb8209097243b58e39bc9c3f487
TextureImporter:
internalIDToNameTable:
- first:
213: 5115314032073577160
second: AEblerup_Map_Hills01_0
- first:
213: -9198963258475077588
second: AEblerup_Map_Hills01_1
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Hills01_0
rect:
serializedVersion: 2
x: 254
y: 479
width: 998
height: 963
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 8c21154920f3df640800000000000000
internalID: 5115314032073577160
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Hills01_1
rect:
serializedVersion: 2
x: 1177
y: 29
width: 1191
height: 1424
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: c2029b497a7b65080800000000000000
internalID: -9198963258475077588
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: dfd7f9eee4b27434cbfb3cd270684cf6
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Hills01_0: 5115314032073577160
AEblerup_Map_Hills01_1: -9198963258475077588
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: cea0a06aeaea42e48a155cd77b099167
TextureImporter:
internalIDToNameTable:
- first:
213: 4914308828424110967
second: AEblerup_Map_Hills02_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 35
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Hills02_0
rect:
serializedVersion: 2
x: 135
y: 103
width: 725
height: 714
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 77309c2a7d1233440800000000000000
internalID: 4914308828424110967
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: a9b393d893e5e544aae28078f789e3db
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Hills02_0: 4914308828424110967
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,195 @@
fileFormatVersion: 2
guid: d1d901ae9af31fb4e9712670a909502c
TextureImporter:
internalIDToNameTable:
- first:
213: 5455036955454627638
second: AEblerup_Map_Hills03_0
- first:
213: -4056820618434019179
second: AEblerup_Map_Hills03_1
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.3}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Hills03_0
rect:
serializedVersion: 2
x: 75
y: 162
width: 936
height: 683
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 63f508e753f24bb40800000000000000
internalID: 5455036955454627638
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Hills03_1
rect:
serializedVersion: 2
x: 688
y: 759
width: 143
height: 228
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 59082c8342743b7c0800000000000000
internalID: -4056820618434019179
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Hills03_0: 5455036955454627638
AEblerup_Map_Hills03_1: -4056820618434019179
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -0,0 +1,221 @@
fileFormatVersion: 2
guid: d1d85192347537243b483e6940de28f1
TextureImporter:
internalIDToNameTable:
- first:
213: -303165769290909474
second: AEblerup_Map_Houses01_0
- first:
213: 8779098265794420069
second: AEblerup_Map_Houses01_1
- first:
213: -167313217477028878
second: AEblerup_Map_Houses01_2
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Houses01_0
rect:
serializedVersion: 2
x: 125
y: 366
width: 305
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ed87b5dc650facbf0800000000000000
internalID: -303165769290909474
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses01_1
rect:
serializedVersion: 2
x: 504
y: 366
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 56d9ceceb5f95d970800000000000000
internalID: 8779098265794420069
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses01_2
rect:
serializedVersion: 2
x: 293
y: 77
width: 305
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 2f3dd02e3859dadf0800000000000000
internalID: -167313217477028878
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Houses01_0: -303165769290909474
AEblerup_Map_Houses01_1: 8779098265794420069
AEblerup_Map_Houses01_2: -167313217477028878
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,273 @@
fileFormatVersion: 2
guid: 1068ec3c76101e24a9c550d96c3b7b83
TextureImporter:
internalIDToNameTable:
- first:
213: -7097282419607897710
second: AEblerup_Map_Houses02_0
- first:
213: -7999105529600610420
second: AEblerup_Map_Houses02_1
- first:
213: 5452591694125666932
second: AEblerup_Map_Houses02_2
- first:
213: -2764832460221319265
second: AEblerup_Map_Houses02_3
- first:
213: -867313412877897870
second: AEblerup_Map_Houses02_4
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Houses02_0
rect:
serializedVersion: 2
x: 51
y: 350
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 29975ac0e33618d90800000000000000
internalID: -7097282419607897710
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses02_1
rect:
serializedVersion: 2
x: 431
y: 350
width: 305
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: c8fea43e6e77df090800000000000000
internalID: -7999105529600610420
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses02_2
rect:
serializedVersion: 2
x: 813
y: 350
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 4721b99b14f7bab40800000000000000
internalID: 5452591694125666932
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses02_3
rect:
serializedVersion: 2
x: 219
y: 61
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: f97f901b68751a9d0800000000000000
internalID: -2764832460221319265
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses02_4
rect:
serializedVersion: 2
x: 599
y: 61
width: 305
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 27f2b74db0fa6f3f0800000000000000
internalID: -867313412877897870
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Houses02_0: -7097282419607897710
AEblerup_Map_Houses02_1: -7999105529600610420
AEblerup_Map_Houses02_2: 5452591694125666932
AEblerup_Map_Houses02_3: -2764832460221319265
AEblerup_Map_Houses02_4: -867313412877897870
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 0db92b75413e2514cbaf110e202953a1
TextureImporter:
internalIDToNameTable:
- first:
213: -1721883704786916048
second: AEblerup_Map_Houses03_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.35}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Houses03_0
rect:
serializedVersion: 2
x: 121
y: 132
width: 306
height: 242
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 03d64a7b4e3aa18e0800000000000000
internalID: -1721883704786916048
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Houses03_0: -1721883704786916048
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View File

@@ -0,0 +1,351 @@
fileFormatVersion: 2
guid: b8a806194d0b40e41b62652a3fc25f7b
TextureImporter:
internalIDToNameTable:
- first:
213: 7763308037186749932
second: AEblerup_Map_Houses04_0
- first:
213: -4609600705076154405
second: AEblerup_Map_Houses04_1
- first:
213: 2679277247836848044
second: AEblerup_Map_Houses04_2
- first:
213: 2139652846614561452
second: AEblerup_Map_Houses04_3
- first:
213: 2208552424659931359
second: AEblerup_Map_Houses04_4
- first:
213: -3523910222474730172
second: AEblerup_Map_Houses04_5
- first:
213: -5370815715273965362
second: AEblerup_Map_Houses04_6
- first:
213: -2094712197269925970
second: AEblerup_Map_Houses04_7
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Houses04_0
rect:
serializedVersion: 2
x: 192
y: 714
width: 305
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ce5837e278fccbb60800000000000000
internalID: 7763308037186749932
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_1
rect:
serializedVersion: 2
x: 571
y: 714
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: bdfab89d4986700c0800000000000000
internalID: -4609600705076154405
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_2
rect:
serializedVersion: 2
x: 953
y: 714
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: caff9142674be2520800000000000000
internalID: 2679277247836848044
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_3
rect:
serializedVersion: 2
x: 360
y: 425
width: 305
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ca24d197de291bd10800000000000000
internalID: 2139652846614561452
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_4
rect:
serializedVersion: 2
x: 739
y: 425
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: fd0dea39aba56ae10800000000000000
internalID: 2208552424659931359
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_5
rect:
serializedVersion: 2
x: 168
y: 143
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 445a609b25e881fc0800000000000000
internalID: -3523910222474730172
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_6
rect:
serializedVersion: 2
x: 547
y: 143
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ec0820110970775b0800000000000000
internalID: -5370815715273965362
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses04_7
rect:
serializedVersion: 2
x: 929
y: 143
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: eaf4c07da561ee2e0800000000000000
internalID: -2094712197269925970
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Houses04_0: 7763308037186749932
AEblerup_Map_Houses04_1: -4609600705076154405
AEblerup_Map_Houses04_2: 2679277247836848044
AEblerup_Map_Houses04_3: 2139652846614561452
AEblerup_Map_Houses04_4: 2208552424659931359
AEblerup_Map_Houses04_5: -3523910222474730172
AEblerup_Map_Houses04_6: -5370815715273965362
AEblerup_Map_Houses04_7: -2094712197269925970
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

View File

@@ -0,0 +1,377 @@
fileFormatVersion: 2
guid: 743939db4d41b204d972b64c56c86bb9
TextureImporter:
internalIDToNameTable:
- first:
213: 2176623814608614565
second: AEblerup_Map_Houses05_0
- first:
213: -3928648978316688981
second: AEblerup_Map_Houses05_1
- first:
213: -8672355638330865307
second: AEblerup_Map_Houses05_2
- first:
213: -3582786502027986982
second: AEblerup_Map_Houses05_3
- first:
213: 5076473282273070680
second: AEblerup_Map_Houses05_4
- first:
213: 1223408214379071462
second: AEblerup_Map_Houses05_5
- first:
213: -3198398940937105041
second: AEblerup_Map_Houses05_6
- first:
213: -6224736248903553458
second: AEblerup_Map_Houses05_7
- first:
213: -5439053014402417767
second: AEblerup_Map_Houses05_8
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Houses05_0
rect:
serializedVersion: 2
x: 67
y: 727
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 5a4f66fb3dbe43e10800000000000000
internalID: 2176623814608614565
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_1
rect:
serializedVersion: 2
x: 447
y: 727
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ba18b30b192aa79c0800000000000000
internalID: -3928648978316688981
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_2
rect:
serializedVersion: 2
x: 829
y: 727
width: 306
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 569ce6bbe7a95a780800000000000000
internalID: -8672355638330865307
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_3
rect:
serializedVersion: 2
x: 235
y: 439
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ad7be88a8a2674ec0800000000000000
internalID: -3582786502027986982
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_4
rect:
serializedVersion: 2
x: 615
y: 439
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 85ec5adcd81437640800000000000000
internalID: 5076473282273070680
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_5
rect:
serializedVersion: 2
x: 1007
y: 439
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 6e70c510a4b6af010800000000000000
internalID: 1223408214379071462
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_6
rect:
serializedVersion: 2
x: 44
y: 157
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: f61557beb110d93d0800000000000000
internalID: -3198398940937105041
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_7
rect:
serializedVersion: 2
x: 423
y: 157
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: e4e2b979c5b4d99a0800000000000000
internalID: -6224736248903553458
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Houses05_8
rect:
serializedVersion: 2
x: 806
y: 157
width: 305
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 99bb60ac91a9484b0800000000000000
internalID: -5439053014402417767
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Houses05_0: 2176623814608614565
AEblerup_Map_Houses05_1: -3928648978316688981
AEblerup_Map_Houses05_2: -8672355638330865307
AEblerup_Map_Houses05_3: -3582786502027986982
AEblerup_Map_Houses05_4: 5076473282273070680
AEblerup_Map_Houses05_5: 1223408214379071462
AEblerup_Map_Houses05_6: -3198398940937105041
AEblerup_Map_Houses05_7: -6224736248903553458
AEblerup_Map_Houses05_8: -5439053014402417767
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 1e3ab2c910775d84a96cdbc12fe57eb3
TextureImporter:
internalIDToNameTable:
- first:
213: -8593253592229605108
second: AEblerup_Map_Plank_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.3}
spritePixelsToUnits: 35
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Plank_0
rect:
serializedVersion: 2
x: 199
y: 133
width: 930
height: 284
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: c011e4a0361aeb880800000000000000
internalID: -8593253592229605108
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Plank_0: -8593253592229605108
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 7b00cd0000ef4424985cd21fb4f197ee
TextureImporter:
internalIDToNameTable:
- first:
213: -9176826819293939900
second: AEblerup_Map_Statue_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Statue_0
rect:
serializedVersion: 2
x: 59
y: 48
width: 405
height: 567
alignment: 9
pivot: {x: 0.5, y: 0.25}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 447f4b6f0ac55a080800000000000000
internalID: -9176826819293939900
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 6bdbc869c29cc3b4bbc69243383391a9
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Statue_0: -9176826819293939900
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

View File

@@ -0,0 +1,299 @@
fileFormatVersion: 2
guid: 04edac8af91d23b4c84ebcf08a41babe
TextureImporter:
internalIDToNameTable:
- first:
213: 499587934724417843
second: AEblerup_Map_SuperMarket_0
- first:
213: 13491291725818379
second: AEblerup_Map_SuperMarket_1
- first:
213: -8790397528388856036
second: AEblerup_Map_SuperMarket_2
- first:
213: -6422883870490721280
second: AEblerup_Map_SuperMarket_3
- first:
213: 407118188303314676
second: AEblerup_Map_SuperMarket_4
- first:
213: 5182951474601183854
second: AEblerup_Map_SuperMarket_5
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_0
rect:
serializedVersion: 2
x: 61
y: 818
width: 1372
height: 776
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 339e1576494eee600800000000000000
internalID: 499587934724417843
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_1
rect:
serializedVersion: 2
x: 1454
y: 637
width: 222
height: 191
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: b0ae0e2224eef2000800000000000000
internalID: 13491291725818379
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_2
rect:
serializedVersion: 2
x: 103
y: 66
width: 1286
height: 655
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: c1719ed750c320680800000000000000
internalID: -8790397528388856036
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_3
rect:
serializedVersion: 2
x: 1501
y: 601
width: 38
height: 35
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 00480d156255dd6a0800000000000000
internalID: -6422883870490721280
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_4
rect:
serializedVersion: 2
x: 1618
y: 598
width: 36
height: 37
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 4fe6b63d5df56a500800000000000000
internalID: 407118188303314676
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_5
rect:
serializedVersion: 2
x: 1437
y: 63
width: 141
height: 332
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: e6ac0bbd7ea8de740800000000000000
internalID: 5182951474601183854
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_SuperMarket_0: 499587934724417843
AEblerup_Map_SuperMarket_1: 13491291725818379
AEblerup_Map_SuperMarket_2: -8790397528388856036
AEblerup_Map_SuperMarket_3: -6422883870490721280
AEblerup_Map_SuperMarket_4: 407118188303314676
AEblerup_Map_SuperMarket_5: 5182951474601183854
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

View File

@@ -0,0 +1,208 @@
fileFormatVersion: 2
guid: 2b039725a9909aa4c85913446511c8f1
TextureImporter:
internalIDToNameTable:
- first:
213: -3697170889163224367
second: AEblerup_Map_SuperMarket_Cars_0
- first:
213: -3818913443702786253
second: AEblerup_Map_SuperMarket_Cars_1
- first:
213: -3381997293037537695
second: AEblerup_Map_SuperMarket_Cars_2
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_Cars_0
rect:
serializedVersion: 2
x: 30
y: 489
width: 339
height: 230
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 1dac28d2aa201bcc0800000000000000
internalID: -3697170889163224367
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_Cars_1
rect:
serializedVersion: 2
x: 10
y: 249
width: 363
height: 222
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 337b128d47e700bc0800000000000000
internalID: -3818913443702786253
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_SuperMarket_Cars_2
rect:
serializedVersion: 2
x: 10
y: 7
width: 371
height: 221
alignment: 9
pivot: {x: 0.5, y: 0.3}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 1663a2d616bb011d0800000000000000
internalID: -3381997293037537695
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 4578c03f05021d9438ed116dbea07d35
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_SuperMarket_Cars_0: -3697170889163224367
AEblerup_Map_SuperMarket_Cars_1: -3818913443702786253
AEblerup_Map_SuperMarket_Cars_2: -3381997293037537695
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 9f3676e2590f4f047b475d41f34bf279
TextureImporter:
internalIDToNameTable:
- first:
213: 3248048995817051442
second: AEblerup_Map_TallBuilding01_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 0
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_TallBuilding01_0
rect:
serializedVersion: 2
x: 73
y: 51
width: 1360
height: 1440
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 2355db05a53631d20800000000000000
internalID: 3248048995817051442
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 47e780df1c3ef6148bb224257325d971
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_TallBuilding01_0: 3248048995817051442
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,169 @@
fileFormatVersion: 2
guid: 96883c349139b364c9e63a5782c999b8
TextureImporter:
internalIDToNameTable:
- first:
213: -7849747271201636001
second: AEblerup_Map_TankStation_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 0
spriteMeshType: 1
alignment: 9
spritePivot: {x: 0.5, y: 0.4}
spritePixelsToUnits: 40
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_TankStation_0
rect:
serializedVersion: 2
x: 132
y: 133
width: 760
height: 505
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: f514f635278101390800000000000000
internalID: -7849747271201636001
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_TankStation_0: -7849747271201636001
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

View File

@@ -0,0 +1,299 @@
fileFormatVersion: 2
guid: b6a3f0e12206504419a8583e57219aab
TextureImporter:
internalIDToNameTable:
- first:
213: 7082351071363834709
second: AEblerup_Map_TownSquare_0
- first:
213: 7363522709975379453
second: AEblerup_Map_TownSquare_1
- first:
213: -2982823648215496350
second: AEblerup_Map_TownSquare_2
- first:
213: -8250383734863362171
second: AEblerup_Map_TownSquare_3
- first:
213: -3318461617681809320
second: AEblerup_Map_TownSquare_4
- first:
213: 8058487309157795815
second: AEblerup_Map_TownSquare_5
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 40
spriteBorder: {x: 49, y: 504, z: 1944, w: 304}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_TownSquare_0
rect:
serializedVersion: 2
x: 76
y: 601
width: 559
height: 480
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 553af3786c0994260800000000000000
internalID: 7082351071363834709
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_TownSquare_1
rect:
serializedVersion: 2
x: 814
y: 878
width: 306
height: 242
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: dfdaa9f14ec703660800000000000000
internalID: 7363522709975379453
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_TownSquare_2
rect:
serializedVersion: 2
x: 1563
y: 882
width: 491
height: 295
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 2690b7412b1ea96d0800000000000000
internalID: -2982823648215496350
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_TownSquare_3
rect:
serializedVersion: 2
x: 693
y: 169
width: 1383
height: 655
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 5870fce94bfb08d80800000000000000
internalID: -8250383734863362171
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_TownSquare_4
rect:
serializedVersion: 2
x: 2166
y: 611
width: 317
height: 269
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 850ce4d9db472f1d0800000000000000
internalID: -3318461617681809320
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_TownSquare_5
rect:
serializedVersion: 2
x: 332
y: 174
width: 305
height: 243
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 7e70851138f75df60800000000000000
internalID: 8058487309157795815
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 1537655665
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_TownSquare_0: 7082351071363834709
AEblerup_Map_TownSquare_1: 7363522709975379453
AEblerup_Map_TownSquare_2: -2982823648215496350
AEblerup_Map_TownSquare_3: -8250383734863362171
AEblerup_Map_TownSquare_4: -3318461617681809320
AEblerup_Map_TownSquare_5: 8058487309157795815
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

View File

@@ -0,0 +1,767 @@
fileFormatVersion: 2
guid: 1cecf6631b0b6254cb03f9674ccb1b80
TextureImporter:
internalIDToNameTable:
- first:
213: 3225297688584491187
second: AEblerup_Map_Trees_smol_0
- first:
213: -8144134856055711765
second: AEblerup_Map_Trees_smol_1
- first:
213: -4891927332501425393
second: AEblerup_Map_Trees_smol_2
- first:
213: -6538274824758643877
second: AEblerup_Map_Trees_smol_3
- first:
213: 6999586664392562192
second: AEblerup_Map_Trees_smol_4
- first:
213: -7608488059447055942
second: AEblerup_Map_Trees_smol_5
- first:
213: 3098697821082196628
second: AEblerup_Map_Trees_smol_6
- first:
213: 5585336023446523787
second: AEblerup_Map_Trees_smol_7
- first:
213: -5834338386040438778
second: AEblerup_Map_Trees_smol_8
- first:
213: 5698421774175589834
second: AEblerup_Map_Trees_smol_9
- first:
213: -2365091222047470418
second: AEblerup_Map_Trees_smol_10
- first:
213: 7911709513512979203
second: AEblerup_Map_Trees_smol_11
- first:
213: 9103584031725328089
second: AEblerup_Map_Trees_smol_12
- first:
213: -5744108176026904725
second: AEblerup_Map_Trees_smol_13
- first:
213: 7159388369945802787
second: AEblerup_Map_Trees_smol_14
- first:
213: 8425636255559317673
second: AEblerup_Map_Trees_smol_15
- first:
213: 1513953806237476240
second: AEblerup_Map_Trees_smol_16
- first:
213: -7449457311296320110
second: AEblerup_Map_Trees_smol_17
- first:
213: 1237573478649350528
second: AEblerup_Map_Trees_smol_18
- first:
213: -8297583939805878199
second: AEblerup_Map_Trees_smol_19
- first:
213: -7107966570074129282
second: AEblerup_Map_Trees_smol_20
- first:
213: -2551777540068316685
second: AEblerup_Map_Trees_smol_21
- first:
213: -8646602299598212846
second: AEblerup_Map_Trees_smol_22
- first:
213: 6419458102153305856
second: AEblerup_Map_Trees_smol_23
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 20
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_0
rect:
serializedVersion: 2
x: 612
y: 701
width: 71
height: 150
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 3b097fec82f82cc20800000000000000
internalID: 3225297688584491187
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_1
rect:
serializedVersion: 2
x: 1347
y: 762
width: 75
height: 138
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: be71ce57f783afe80800000000000000
internalID: -8144134856055711765
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_2
rect:
serializedVersion: 2
x: 1688
y: 689
width: 76
height: 138
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: f037a3772026c1cb0800000000000000
internalID: -4891927332501425393
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_3
rect:
serializedVersion: 2
x: 1795
y: 772
width: 72
height: 134
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: b53b16a20b16345a0800000000000000
internalID: -6538274824758643877
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_4
rect:
serializedVersion: 2
x: 1064
y: 531
width: 51
height: 100
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 0161ea16cf6832160800000000000000
internalID: 6999586664392562192
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_5
rect:
serializedVersion: 2
x: 1135
y: 528
width: 55
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ab96bd2eb68396690800000000000000
internalID: -7608488059447055942
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_6
rect:
serializedVersion: 2
x: 1768
y: 569
width: 55
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 49a91eb2049c00b20800000000000000
internalID: 3098697821082196628
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_7
rect:
serializedVersion: 2
x: 1866
y: 625
width: 58
height: 116
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: b8f09bc5589138d40800000000000000
internalID: 5585336023446523787
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_8
rect:
serializedVersion: 2
x: 551
y: 482
width: 54
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 60042a84624480fa0800000000000000
internalID: -5834338386040438778
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_9
rect:
serializedVersion: 2
x: 664
y: 472
width: 62
height: 136
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: ac5561e796cd41f40800000000000000
internalID: 5698421774175589834
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_10
rect:
serializedVersion: 2
x: 771
y: 479
width: 75
height: 138
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: eac477870128d2fd0800000000000000
internalID: -2365091222047470418
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_11
rect:
serializedVersion: 2
x: 903
y: 469
width: 73
height: 135
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 30b050f62e90ccd60800000000000000
internalID: 7911709513512979203
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_12
rect:
serializedVersion: 2
x: 1228
y: 459
width: 75
height: 139
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 9d618e9a17d665e70800000000000000
internalID: 9103584031725328089
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_13
rect:
serializedVersion: 2
x: 1699
y: 516
width: 55
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: b67df782c04d840b0800000000000000
internalID: -5744108176026904725
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_14
rect:
serializedVersion: 2
x: 1921
y: 487
width: 65
height: 121
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 328bea75ac14b5360800000000000000
internalID: 7159388369945802787
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_15
rect:
serializedVersion: 2
x: 37
y: 340
width: 53
height: 136
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 9a8f343988fdde470800000000000000
internalID: 8425636255559317673
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_16
rect:
serializedVersion: 2
x: 131
y: 322
width: 51
height: 100
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 095a22b27f4a20510800000000000000
internalID: 1513953806237476240
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_17
rect:
serializedVersion: 2
x: 252
y: 331
width: 59
height: 109
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 29d0fb65b063e9890800000000000000
internalID: -7449457311296320110
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_18
rect:
serializedVersion: 2
x: 348
y: 303
width: 75
height: 138
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 089c65a958ebc2110800000000000000
internalID: 1237573478649350528
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_19
rect:
serializedVersion: 2
x: 426
y: 388
width: 55
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 94862e58e5f09dc80800000000000000
internalID: -8297583939805878199
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_20
rect:
serializedVersion: 2
x: 1371
y: 363
width: 54
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: e7c316b601e6b5d90800000000000000
internalID: -7107966570074129282
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_21
rect:
serializedVersion: 2
x: 1063
y: 226
width: 66
height: 121
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 3f96862e8d3469cd0800000000000000
internalID: -2551777540068316685
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_22
rect:
serializedVersion: 2
x: 1181
y: 177
width: 75
height: 138
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 2117f5a2509110880800000000000000
internalID: -8646602299598212846
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: AEblerup_Map_Trees_smol_23
rect:
serializedVersion: 2
x: 1123
y: 23
width: 54
height: 107
alignment: 9
pivot: {x: 0.5, y: 0.2}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 00fd955d12f761950800000000000000
internalID: 6419458102153305856
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: f513b254c934cd844889ff0f3150cc88
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries: []
nameFileIdTable:
AEblerup_Map_Trees_smol_0: 3225297688584491187
AEblerup_Map_Trees_smol_1: -8144134856055711765
AEblerup_Map_Trees_smol_10: -2365091222047470418
AEblerup_Map_Trees_smol_11: 7911709513512979203
AEblerup_Map_Trees_smol_12: 9103584031725328089
AEblerup_Map_Trees_smol_13: -5744108176026904725
AEblerup_Map_Trees_smol_14: 7159388369945802787
AEblerup_Map_Trees_smol_15: 8425636255559317673
AEblerup_Map_Trees_smol_16: 1513953806237476240
AEblerup_Map_Trees_smol_17: -7449457311296320110
AEblerup_Map_Trees_smol_18: 1237573478649350528
AEblerup_Map_Trees_smol_19: -8297583939805878199
AEblerup_Map_Trees_smol_2: -4891927332501425393
AEblerup_Map_Trees_smol_20: -7107966570074129282
AEblerup_Map_Trees_smol_21: -2551777540068316685
AEblerup_Map_Trees_smol_22: -8646602299598212846
AEblerup_Map_Trees_smol_23: 6419458102153305856
AEblerup_Map_Trees_smol_3: -6538274824758643877
AEblerup_Map_Trees_smol_4: 6999586664392562192
AEblerup_Map_Trees_smol_5: -7608488059447055942
AEblerup_Map_Trees_smol_6: 3098697821082196628
AEblerup_Map_Trees_smol_7: 5585336023446523787
AEblerup_Map_Trees_smol_8: -5834338386040438778
AEblerup_Map_Trees_smol_9: 5698421774175589834
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: d1489f42c46c5584fa488f2550f7f0ef
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,42 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AEblerup_Map_Bench
m_Shader: {fileID: 4800000, guid: 13c02b14c4d048fa9653293d54f6e0e1, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _AlphaTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 8c7e8a413c620f743939b1babed38fe4, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- PixelSnap: 0
- _EnableExternalAlpha: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _RendererColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 728f94668d0951241adc8ac523f40789
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,42 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AEblerup_Map_Church
m_Shader: {fileID: 4800000, guid: 13c02b14c4d048fa9653293d54f6e0e1, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _AlphaTex:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 37d934b5c7d8acd4fb1436ffd506c3f6, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- PixelSnap: 0
- _EnableExternalAlpha: 0
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _RendererColor: {r: 1, g: 1, b: 1, a: 1}
m_BuildTextureStacks: []
m_AllowLocking: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6656d716a6a08a242b398f8aa1cc428f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8a902675b0eab794ebe7cbced777b7b7
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 590c576b38bc3cb4fa47b9978f6a0e6e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

View File

@@ -0,0 +1,884 @@
fileFormatVersion: 2
guid: 452f2764512c8e74c98d97e394fd3fee
TextureImporter:
internalIDToNameTable:
- first:
213: -8074283672353975103
second: Dump_0
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 2
spriteExtrude: 1
spriteMeshType: 0
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 127
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 4
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 4
buildTarget: iOS
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites:
- serializedVersion: 2
name: Dump_0
rect:
serializedVersion: 2
x: 1
y: 896
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: -1
bones: []
spriteID: 1c4da9587c162ff80800000000000000
internalID: -8074283672353975103
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_1
rect:
serializedVersion: 2
x: 129
y: 896
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 4a17830ef1b7e044b93c2be32bb7bb9f
internalID: -379869066
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_2
rect:
serializedVersion: 2
x: 257
y: 896
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: d0cea6cf71acc5849a21a2787fd9256c
internalID: 73080884
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_3
rect:
serializedVersion: 2
x: 385
y: 896
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 81fdab5dc312df8498281e20054024b3
internalID: 1223695945
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_4
rect:
serializedVersion: 2
x: 1
y: 768
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: f1fd61ad68204e24d9c16847ab7e8f5d
internalID: -602749274
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_5
rect:
serializedVersion: 2
x: 129
y: 768
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: a26932eab1b65804da634fc8b71251ab
internalID: 1791613267
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_6
rect:
serializedVersion: 2
x: 257
y: 768
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 3cb426e0a17677c4bab30e0a103922d6
internalID: 912862155
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_7
rect:
serializedVersion: 2
x: 385
y: 768
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e18af9c12e294ca40abd2997a5010049
internalID: -1427035266
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_8
rect:
serializedVersion: 2
x: 1
y: 640
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 991d540b79d219f4187023d7b9750d25
internalID: -2015983052
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_9
rect:
serializedVersion: 2
x: 129
y: 640
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 781d44e2c31fa7e4f936f46ac3f66b0f
internalID: 502479848
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_10
rect:
serializedVersion: 2
x: 257
y: 640
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 5b38e19386d8baf47a577a46d2823aa7
internalID: -77512809
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_11
rect:
serializedVersion: 2
x: 385
y: 640
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: cf0f0073e430eca438c79a208c249b3c
internalID: -1438697971
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_12
rect:
serializedVersion: 2
x: 1
y: 512
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: e38eb220f0e93f2439e19168d5997f1c
internalID: 93522195
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_13
rect:
serializedVersion: 2
x: 129
y: 512
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 5ee2cfa5ada0c31428e94e7aa7a6aab5
internalID: 228840803
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_14
rect:
serializedVersion: 2
x: 257
y: 512
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7a80cbe5b5c70474c96afbbefb4d4560
internalID: 199870259
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_15
rect:
serializedVersion: 2
x: 385
y: 512
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 0f268c132e5205e42a021532c1a88874
internalID: 221690484
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_16
rect:
serializedVersion: 2
x: 1
y: 384
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: aed83163ae649724995f4ed593e9a3f3
internalID: -2009668732
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_17
rect:
serializedVersion: 2
x: 129
y: 384
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 8d29f4af2626f104e93d1dac5cbb1978
internalID: 72161049
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_18
rect:
serializedVersion: 2
x: 257
y: 384
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 711f8bfb1de620c46aef4d6dce023f54
internalID: 1222061672
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_19
rect:
serializedVersion: 2
x: 385
y: 384
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 7772717f396d3cd478a241b41a73f4f1
internalID: -1766222958
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_20
rect:
serializedVersion: 2
x: 1
y: 256
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: fee706870da445a4c84063aeb6b03059
internalID: 1585742068
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_21
rect:
serializedVersion: 2
x: 129
y: 256
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b830525a1316d2d4ab142c7dc35b1e61
internalID: 1509291600
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_22
rect:
serializedVersion: 2
x: 257
y: 256
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 61592ea5e859a724ca8fd48a79d46ce8
internalID: 1846573659
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_23
rect:
serializedVersion: 2
x: 385
y: 256
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 271c53a9d14432e4dba8a99d29bd94c0
internalID: 1574598732
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_24
rect:
serializedVersion: 2
x: 1
y: 128
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 94bff4a168a93fa489928b907f7f7d3d
internalID: 457468596
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_25
rect:
serializedVersion: 2
x: 129
y: 128
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 95ab52f4fca5a1442a5fdc67d5ffafc1
internalID: -137987523
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_26
rect:
serializedVersion: 2
x: 257
y: 128
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: b2def7a9d8a30ff4ca0a2e3112910275
internalID: -818502081
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_27
rect:
serializedVersion: 2
x: 385
y: 128
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 6ad71a8c1b38692499d72c4a07fe1e2f
internalID: 1306613426
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_28
rect:
serializedVersion: 2
x: 1
y: 0
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 012ecf41a2b65044da027e794433f07c
internalID: 787426135
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_29
rect:
serializedVersion: 2
x: 129
y: 0
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 0677dd6467c305e4a852e7a55ae19f9f
internalID: -1154760799
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_30
rect:
serializedVersion: 2
x: 257
y: 0
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: 459d219f0bb2f37439e9d54ea9f5648a
internalID: -682239855
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Dump_31
rect:
serializedVersion: 2
x: 385
y: 0
width: 127
height: 127
alignment: 0
pivot: {x: 0.5, y: 0.5}
border: {x: 0, y: 0, z: 0, w: 0}
customData:
outline: []
physicsShape: []
tessellationDetail: 0
bones: []
spriteID: efdad7beda80ae44db545f7c54b0c51f
internalID: -481110769
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: c04d19a3736ad7d48a572b2036d25028
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries:
- key: SpriteEditor.SliceSettings
value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":127.0,"y":127.0},"gridSpriteOffset":{"x":1.0,"y":1.0},"gridSpritePadding":{"x":1.0,"y":1.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":1,"keepEmptyRects":false,"isAlternate":false}'
nameFileIdTable:
Dump_0: -8074283672353975103
Dump_1: -379869066
Dump_10: -77512809
Dump_11: -1438697971
Dump_12: 93522195
Dump_13: 228840803
Dump_14: 199870259
Dump_15: 221690484
Dump_16: -2009668732
Dump_17: 72161049
Dump_18: 1222061672
Dump_19: -1766222958
Dump_2: 73080884
Dump_20: 1585742068
Dump_21: 1509291600
Dump_22: 1846573659
Dump_23: 1574598732
Dump_24: 457468596
Dump_25: -137987523
Dump_26: -818502081
Dump_27: 1306613426
Dump_28: 787426135
Dump_29: -1154760799
Dump_3: 1223695945
Dump_30: -682239855
Dump_31: -481110769
Dump_4: -602749274
Dump_5: 1791613267
Dump_6: 912862155
Dump_7: -1427035266
Dump_8: -2015983052
Dump_9: 502479848
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,36 @@
%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: 13312, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Dump_0
m_EditorClassIdentifier: UnityEngine.dll::UnityEngine.Tilemaps.Tile
m_Sprite: {fileID: -8074283672353975103, guid: 452f2764512c8e74c98d97e394fd3fee, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Transform:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_InstancedGameObject: {fileID: 0}
m_Flags: 1
m_ColliderType: 1

View File

@@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: 91031de62f795884e8e2ccbaebeebf9b
guid: fe4281229510570449e4d71adc31184a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000

View File

@@ -0,0 +1,36 @@
%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: 13312, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Dump_1
m_EditorClassIdentifier: UnityEngine.dll::UnityEngine.Tilemaps.Tile
m_Sprite: {fileID: -379869066, guid: 452f2764512c8e74c98d97e394fd3fee, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Transform:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_InstancedGameObject: {fileID: 0}
m_Flags: 1
m_ColliderType: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9a0f7d869cc71da4e9895d24e659cc9d
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,36 @@
%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: 13312, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Dump_10
m_EditorClassIdentifier: UnityEngine.dll::UnityEngine.Tilemaps.Tile
m_Sprite: {fileID: -77512809, guid: 452f2764512c8e74c98d97e394fd3fee, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Transform:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_InstancedGameObject: {fileID: 0}
m_Flags: 1
m_ColliderType: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 9f8a2a81e9eddb4438634e1b97620102
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,36 @@
%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: 13312, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Dump_11
m_EditorClassIdentifier: UnityEngine.dll::UnityEngine.Tilemaps.Tile
m_Sprite: {fileID: -1438697971, guid: 452f2764512c8e74c98d97e394fd3fee, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Transform:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_InstancedGameObject: {fileID: 0}
m_Flags: 1
m_ColliderType: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a41a2b1fd1fcbb640909108471aa17bb
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,36 @@
%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: 13312, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Dump_12
m_EditorClassIdentifier: UnityEngine.dll::UnityEngine.Tilemaps.Tile
m_Sprite: {fileID: 93522195, guid: 452f2764512c8e74c98d97e394fd3fee, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Transform:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_InstancedGameObject: {fileID: 0}
m_Flags: 1
m_ColliderType: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a1f34caf7665dd74d9af10cbff99476c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,36 @@
%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: 13312, guid: 0000000000000000e000000000000000, type: 0}
m_Name: Dump_13
m_EditorClassIdentifier: UnityEngine.dll::UnityEngine.Tilemaps.Tile
m_Sprite: {fileID: 228840803, guid: 452f2764512c8e74c98d97e394fd3fee, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Transform:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_InstancedGameObject: {fileID: 0}
m_Flags: 1
m_ColliderType: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: ca2ba767d528353449f3a1b80e7c1c71
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

Some files were not shown because too many files have changed in this diff Show More