Compare commits

...

396 Commits

Author SHA1 Message Date
Michal Pikulski
247f7b73af Working minigame? 2025-11-19 14:55:59 +01:00
Michal Pikulski
359e0e35bd Stash work on mingame 2025-11-19 08:30:47 +01:00
235fa04eba Merge a card refresh (#59)
- **Refactored Card Placement Flow**
  - Separated card presentation from orchestration logic
  - Extracted `CornerCardManager` for pending card lifecycle (spawn, shuffle, rebuild)
  - Extracted `AlbumNavigationService` for book page navigation and zone mapping
  - Extracted `CardEnlargeController` for backdrop management and card reparenting
  - Implemented controller pattern (non-MonoBehaviour) for complex logic
  - Cards now unparent from slots before rebuild to prevent premature destruction

- **Improved Corner Card Display**
  - Fixed cards spawning on top of each other during rebuild
  - Implemented shuffle-to-front logic (remaining cards occupy slots 0→1→2)
  - Added smart card selection (prioritizes cards matching current album page)
  - Pending cards now removed from queue immediately on drag start
  - Corner cards rebuild after each placement with proper slot reassignment

- **Enhanced Album Card Viewing**
  - Added dramatic scale increase when viewing cards from album slots
  - Implemented shrink animation when dismissing enlarged cards
  - Cards transition: `PlacedInSlotState` → `AlbumEnlargedState` → `PlacedInSlotState`
  - Backdrop shows/hides with card enlarge/shrink cycle
  - Cards reparent to enlarged container while viewing, return to slot after

- **State Machine Improvements**
  - Added `CardStateNames` constants for type-safe state transitions
  - Implemented `ICardClickHandler` and `ICardStateDragHandler` interfaces
  - State transitions now use cached property indices
  - `BoosterCardContext` separated from `CardContext` for single responsibility

- **Code Cleanup**
  - Identified unused `SlotContainerHelper.cs` (superseded by `CornerCardManager`)
  - Identified unused `BoosterPackDraggable.canOpenOnDrop` field
  - Identified unused `AlbumViewPage._previousInputMode` (hardcoded value)
  - Identified unused `Card.OnPlacedInAlbumSlot` event (no subscribers)

Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Reviewed-on: #59
2025-11-18 08:40:59 +00:00
06cc3bde3b Merge pull request 'DamianBranch' (#58) from DamianBranch into main
Reviewed-on: #58
2025-11-14 09:30:49 +00:00
9cc112e5f0 Update Quarry.unity 2025-11-14 10:30:05 +01:00
DamianCorazza
19be64a75f Butterfly Distraction 2025-11-14 00:04:33 +01:00
c08fc4a720 WIP Butterfly can be set free, now only missing forcing the couple to look. 2025-11-13 16:23:52 +01:00
c3639bbb93 Added the Flying Butterfly WIP 2025-11-12 16:25:32 +01:00
Michal Pikulski
612ca7eae8 Interactables documentaiton 2025-11-11 15:55:38 +01:00
acf46c701e Last life cycle refactor updates + add comprehensive documentation (#57)
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #57
2025-11-11 12:32:36 +00:00
fe2eb0a280 Merge remote-tracking branch 'origin/kill-json-player' 2025-11-11 10:06:23 +01:00
0aa2270e1a Lifecycle System Refactor & Logging Centralization (#56)
## ManagedBehaviour System Refactor

- **Sealed `Awake()`** to prevent override mistakes that break singleton registration
- **Added `OnManagedAwake()`** for early initialization (fires during registration)
- **Renamed lifecycle hook:** `OnManagedAwake()` → `OnManagedStart()` (fires after boot, mirrors Unity's Awake→Start)
- **40 files migrated** to new pattern (2 core, 38 components)
- Eliminated all fragile `private new void Awake()` patterns
- Zero breaking changes - backward compatible

## Centralized Logging System

- **Automatic tagging** via `CallerMemberName` and `CallerFilePath` - logs auto-tagged as `[ClassName][MethodName] message`
- **Unified API:** Single `Logging.Debug/Info/Warning/Error()` replaces custom `LogDebugMessage()` implementations
- **~90 logging call sites** migrated across 10 files
- **10 redundant helper methods** removed
- All logs broadcast via `Logging.OnLogEntryAdded` event for real-time monitoring

## Custom Log Console (Editor Window)

- **Persistent filter popups** for multi-selection (classes, methods, log levels) - windows stay open during selection
- **Search** across class names, methods, and message content
- **Time range filter** with MinMaxSlider
- **Export** filtered logs to timestamped `.txt` files
- **Right-click context menu** for quick filtering and copy actions
- **Visual improvements:** White text, alternating row backgrounds, color-coded log levels
- **Multiple instances** supported for simultaneous system monitoring
- Open via `AppleHills > Custom Log Console`

Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #56
2025-11-11 08:48:29 +00:00
MacBuilder
d647bb5707 Target eliminated, good job 47 2025-11-10 15:55:28 +01:00
MacBuilder
dec7ced2d1 Began killing json 2025-11-10 14:57:42 +01:00
Michal Pikulski
c4d356886f Dumb fix for data clearing 2025-11-10 14:27:14 +01:00
Michal Pikulski
64d7f19b83 ADd clearing saves 2025-11-10 14:11:02 +01:00
ce21e8b02e Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-11-10 13:13:36 +01:00
f44f8c5171 Made intro VO play in diving minigame 2025-11-10 13:13:32 +01:00
9772206362 Merge pull request 'Clean up logging' (#55) from clean_up_logging into main
Reviewed-on: #55
2025-11-10 12:06:05 +00:00
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
Michal Adam Pikulski
3e833b8991 Working card system 2025-10-20 16:33:58 +02:00
Michal Adam Pikulski
83b5c8994d Kind of working booster packs 2025-10-20 16:33:58 +02:00
Michal Adam Pikulski
32f726d229 Second draft of the consolidated card system 2025-10-20 16:33:58 +02:00
Michal Adam Pikulski
542dd9a4b7 First draft of the consolidated card system 2025-10-20 16:33:58 +02:00
Michal Adam Pikulski
07750dd5ba Add AlbumViewPage prefab 2025-10-20 16:33:58 +02:00
Michal Pikulski
80005e6b7d Setup more of the card system stuff 2025-10-20 16:33:58 +02:00
Michal Pikulski
b1df36d48c Add prefabs for main menu and album page 2025-10-20 16:33:58 +02:00
Michal Pikulski
6c23d1bcfa Add implementation plan and main UI for the card system 2025-10-20 16:33:58 +02:00
Michal Pikulski
44e1833aea Add backpack 2025-10-20 16:33:58 +02:00
Michal Pikulski
ed9f2d6c6d First go at the card UI 2025-10-20 16:33:58 +02:00
7f3dccf1ea Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-20 16:21:37 +02:00
c07f64ea4f Spatial lawnmower audio implemented 2025-10-20 16:21:32 +02:00
51d886c757 Merge pull request 'Implementing the Flash when taking pictures' (#37) from implementingFlash into main
Reviewed-on: #37
2025-10-20 14:19:32 +00:00
9df43b8f53 Implemented Flash Feedback to the Diving Minigame 2025-10-20 16:19:08 +02:00
b49bb43f79 AnneLise bird counter implemented 2025-10-20 13:57:38 +02:00
6e5a6c049f Underwater rushed audio job 2025-10-17 16:31:23 +02:00
f465e50197 Merge branch 'audio' 2025-10-17 16:16:01 +02:00
9c1a0fdc4c Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-17 16:15:50 +02:00
594a9815cc AnneLise guidance 2025-10-17 16:15:43 +02:00
Michal Pikulski
0557ddd3dc Add prompt when dialogue 2025-10-17 15:35:25 +02:00
Michal Pikulski
c3c9fd95a4 Add audio to dialogues 2025-10-17 15:20:51 +02:00
2fe872d8dc Merge pull request 'damianContentFreeze' (#35) from damianContentFreeze into main
Reviewed-on: #35
2025-10-17 13:16:12 +00:00
1c721541db Merge branch 'main' into damianContentFreeze 2025-10-17 13:16:04 +00:00
6c0e1acdd6 Modified the Quarry Level Switcher in the Overworld and moved the area to move around. 2025-10-17 15:14:41 +02:00
246e66a1f6 New Menus And Fixed the headband Glow 2025-10-17 15:08:00 +02:00
99dc459aa0 Added lake ambience 2025-10-17 15:02:31 +02:00
Michal Pikulski
09af055d18 Strip UI debug stuff from the game 2025-10-17 14:44:10 +02:00
d8653762f4 Merge branch 'audio' 2025-10-17 14:38:53 +02:00
512e8cade5 IntroNarration 2025-10-17 14:38:42 +02:00
Michal Pikulski
2a0dbe98a2 Game over screen return to levels menu 2025-10-17 14:28:13 +02:00
Michal Pikulski
5851b5a12f Remove main menu from build and game flow 2025-10-17 14:03:33 +02:00
bb6059a885 Merge branch 'audio' 2025-10-17 13:44:33 +02:00
7cdc8fab22 Fixed outrocinematic and added audio 2025-10-17 13:44:22 +02:00
Michal Pikulski
74339d7c47 Fix pausing etc. issues in the minigame 2025-10-17 13:18:49 +02:00
78fad26ff5 Apple Hills Font 2025-10-17 13:04:15 +02:00
099a6093e0 Outro WIP 2025-10-17 13:03:01 +02:00
646e9711eb Updated intro voiceover 2025-10-17 12:55:14 +02:00
bb6a595104 Merge branch 'main' into audio 2025-10-17 12:42:18 +02:00
3dcae9ba26 All the voices 2025-10-17 12:42:07 +02:00
648928d09b Merge pull request 'damianContentFreeze' (#34) from damianContentFreeze into main
Reviewed-on: #34
2025-10-17 10:42:00 +00:00
c34251048f Merge branch 'main' into damianContentFreeze 2025-10-17 10:41:43 +00:00
49c1f55ec0 Merge branch 'main' into audio 2025-10-17 12:40:19 +02:00
82fce5c135 Added aglow to the Pickable Items 2025-10-17 12:36:09 +02:00
Michal Pikulski
8274d70924 Remove superflous Update() methods and change the tile spawn buffer to 2 2025-10-17 11:55:30 +02:00
c1cbd651f2 Modified the size of the Step indicator 2025-10-17 11:43:26 +02:00
7cbc80627b Merge pull request 'damianContentFreeze' (#33) from damianContentFreeze into main
Reviewed-on: #33
2025-10-17 09:05:05 +00:00
c94cd4f567 Merge branch 'main' into damianContentFreeze 2025-10-17 09:04:54 +00:00
15bc868cad Modified The size of the Images in dialogue 2025-10-17 11:04:15 +02:00
b1542e4a0b Eliminated Duplicated Puzzle Steps 2025-10-17 10:45:52 +02:00
Michal Pikulski
dafccdc286 Add main menu prefab 2025-10-17 09:57:20 +02:00
journaliciouz
933e29edf9 AnneLise voicedump 2025-10-17 01:04:30 +02:00
journaliciouz
d520f1c1c3 AudioPrep 2025-10-17 00:44:20 +02:00
DamianCorazza
7f31ec8e6a Added CameraSwitcher to the nests and Repositioned elements for a more compact view 2025-10-17 00:26:22 +02:00
313ab7a365 Merge pull request 'diving-outrocinematic' (#32) from diving-outrocinematic into main
Reviewed-on: #32
2025-10-16 21:59:51 +00:00
Michal Pikulski
3fc43fa92d Hook up the score display 2025-10-16 23:59:25 +02:00
Michal Pikulski
b2384269e5 Update the Pause menu flow to be slightly less scoffed 2025-10-16 23:19:33 +02:00
journaliciouz
09ae4b5ba7 WIP 2 2025-10-16 22:45:13 +02:00
journaliciouz
4fc005b082 WIP 2025-10-16 22:35:23 +02:00
journaliciouz
6f6333c8c4 Merge branch 'main' into diving-outrocinematic 2025-10-16 22:26:04 +02:00
dfb67a80c4 Merge pull request 'Redo puzzles authoring and registration' (#30) from revamp_puzzle_registration into main
Reviewed-on: #30
2025-10-16 19:29:53 +00:00
Michal Pikulski
50448c5bd3 Revamp the prompt system, the bootstrapper system, the starting cinematic 2025-10-16 19:43:24 +02:00
eab8899720 WIP game over diving 2025-10-16 16:23:48 +02:00
DamianCorazza
df604fbc03 Removed interactions with the birds after they where spawned and randomized the pitch of the honks. 2025-10-16 16:09:16 +02:00
DamianCorazza
47f342b9ae Small fix to the puzzle indicators
Left a blocked step slot empty, filled it and everything works.
2025-10-16 15:57:01 +02:00
8c4f821865 Merge branch 'main' into diving-outrocinematic 2025-10-16 15:40:08 +02:00
DamianCorazza
5e790a2438 Added Decorations for the Soundbird Area, Added colliders to annalise bush, added grass decorations 2025-10-16 15:39:06 +02:00
3b1c977a2e Merge pull request 'DamianBranch' (#31) from DamianBranch into main
Reviewed-on: #31
2025-10-16 12:10:54 +00:00
5dd9986faa Merge branch 'main' into DamianBranch 2025-10-16 12:10:45 +00:00
Michal Pikulski
cc6e89c003 Fix issue with event triggering multiple times at the end of the minigame 2025-10-15 23:20:38 +02:00
DamianCorazza
10aef4d083 Added a van that transports horns 2025-10-15 18:14:37 +02:00
b425d2b4f4 Stuck cinematics 2025-10-15 17:35:34 +02:00
DamianCorazza
3cae365b52 Update Quarry.unity 2025-10-15 16:27:39 +02:00
DamianCorazza
2b2ac9a3dd Update PulverCucumberSmack1.playable 2025-10-15 16:27:25 +02:00
dcd8dc63d0 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-15 15:58:24 +02:00
5f46c963b5 Implemented Diving tutorial 2025-10-15 15:58:19 +02:00
Michal Pikulski
c0f141f5ac Fix issues with the indicator null checks 2025-10-15 14:02:12 +02:00
DamianCorazza
33af26fd73 Added the puzzle indicators to the FootballBird Puzzle 2025-10-15 13:59:51 +02:00
19a1a2da51 Merge pull request 'DamianBranch' (#29) from DamianBranch into main
Reviewed-on: #29
2025-10-15 10:54:59 +00:00
6b599ca2f9 Merge branch 'main' into DamianBranch 2025-10-15 10:54:52 +00:00
14bcfe51c9 Added audio mixers ahead of VO work 2025-10-15 12:54:03 +02:00
Michal Pikulski
d80b29a7a7 Remove puzzle step indicators after puzzle step successfuly completed 2025-10-15 08:28:07 +02:00
DamianCorazza
dd85200e9c Fixed the puzzle step gating, and some changes in the minigame 2025-10-14 21:15:02 +02:00
DamianCorazza
782e068575 Monster Animations and monster flipping according to which wall it's coming from 2025-10-14 21:00:03 +02:00
DamianCorazza
1237f41265 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-14 17:08:56 +02:00
DamianCorazza
d0b0094092 Fixed the locked puzzle steps, it should be working now 2025-10-14 17:08:37 +02:00
34fcaa9c71 Combination animation implemented 2025-10-14 16:40:47 +02:00
67b8aea93a Pulver can carry shit 2025-10-14 16:20:57 +02:00
Michal Pikulski
e8180b21bf Strip debug logging from the game, fix screen weirdness 2025-10-14 15:54:11 +02:00
Michal Pikulski
18be597424 Add card inventory classes and helpers 2025-10-14 15:54:11 +02:00
DamianCorazza
e8bf6fbded Fixed tiles not spawning and reduced the speed of the descent. 2025-10-14 14:13:10 +02:00
d2d6228383 Merge pull request 'Added alerts and modified the rocks in the environment.' (#28) from DamianBranch into main
Reviewed-on: #28
2025-10-14 11:29:36 +00:00
2b58e9d670 Merge branch 'main' into DamianBranch 2025-10-14 11:29:29 +00:00
Michal Pikulski
9780991a76 Update the orientation enforcer to periodically check the orientation in diving minigamw 2025-10-14 12:49:22 +02:00
Michal Pikulski
21bec076a9 [Bug] Fix the issue with input being blocked after missed camera sequence 2025-10-14 11:48:19 +02:00
9c44a0c91f photo_input_switch (#27)
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #27
2025-10-14 07:09:16 +00:00
2573e7f80e Add a system for setting up "real" camera framing to work between devices (#26)
- In-level authoring utility to designate level bounds
- Camera Adapter component to be placed on a level's camera to perform the adjustments
- EdgeAnchor tool, which allows anchoring of game objects to the screen bounds

Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Reviewed-on: #26
2025-10-14 04:56:00 +00:00
ddbeb0fca3 Added alerts and modified the rocks in the environment. 2025-10-13 17:10:25 +02:00
Michal Pikulski
aefff3d050 Semi-working intro cinematic with loading screen 2025-10-13 14:25:11 +02:00
Michal Pikulski
65e14c07d2 Fix bug where input was blocked from levels other than main menu 2025-10-13 12:41:04 +02:00
13ef0a60da Merge pull request 'DamianBranch' (#25) from DamianBranch into main
Reviewed-on: #25
2025-10-13 10:21:37 +00:00
af4bddf1e3 Merge branch 'main' into DamianBranch 2025-10-13 10:17:54 +00:00
Michal Pikulski
447d33fe55 Add a loading screen between scenes 2025-10-13 10:41:58 +02:00
Michal Pikulski
ab84c97675 Add skip functionality to Cinematics Manager 2025-10-13 09:22:18 +02:00
Michal Pikulski
f150ad0ce4 Fix bug with Pulver not returning to his usual movement after item pickup 2025-10-12 01:17:21 +02:00
Michal Pikulski
d5b30bdd99 Bandaid fix for input manager issues. Remove ass from applehills overworld. 2025-10-12 00:51:56 +02:00
75826f2dc9 Final addition of the cinematic managers 2025-10-10 17:26:55 +02:00
57652b87f6 Merge branch 'main' into DamianBranch 2025-10-10 16:49:25 +02:00
9359c47499 Added Decorations 2025-10-10 16:25:03 +02:00
Michal Pikulski
64bafa9ff8 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-10 16:19:10 +02:00
Michal Pikulski
5b3f77c67b Simple QuickAccess setting to more easily retrieve common data 2025-10-10 16:19:05 +02:00
9475a70d09 Re-added maps 2025-10-10 16:03:48 +02:00
7288228b99 Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-10 15:56:07 +02:00
9f630e832d Intro cinematic plays when playing from mainmenu 2025-10-10 15:51:49 +02:00
353c8f2f36 Merge pull request 'Implement Debug settings and provide an overview of the settings madness' (#24) from add_debug_settings_and_readme into main
Reviewed-on: #24
2025-10-10 13:49:56 +00:00
Michal Pikulski
81a6becd44 Implement Debug settings and provide an overview of the settings madness 2025-10-10 15:47:38 +02:00
73b4ea919b Merge pull request 'Add backbone for card creation and implement Camera minigame mechanics' (#23) from card_album into main
Reviewed-on: #23
2025-10-10 12:56:09 +00:00
Michal Pikulski
5058e96b48 Integrate the changes into Minigame Level 2025-10-10 14:53:49 +02:00
Michal Pikulski
0c5546efd2 Add backbone for card creation and implement Camera minigame mechanics 2025-10-10 14:49:42 +02:00
d9039ce655 Merge pull request 'Commit tile prefabs' (#22) from commit_tiles_only into main
Reviewed-on: #22
2025-10-10 12:49:32 +00:00
1fe48c995b Commmit minigame and tile logic 2025-10-10 14:45:23 +02:00
6b1eb45490 Commit tile prefabs 2025-10-10 14:45:07 +02:00
9d8dd28efd Added sound and cinematics managers to boot settings 2025-10-10 10:07:08 +02:00
journaliciouz
b777450bd1 Anne Lise bush behavior update 2025-10-09 16:38:27 +02:00
4ea8e7d16b Merge pull request 'DamianBranch' (#21) from DamianBranch into main
Reviewed-on: #21
2025-10-09 11:50:47 +00:00
9781653430 Modified The Tiles 2025-10-09 13:49:25 +02:00
3bd43a4d6d Added New Diving Tiles to the Minigame 2025-10-08 17:15:20 +02:00
92f935f272 Refactored Anne Lise bush into state machine 2025-10-08 15:47:36 +02:00
a5fab5ba86 Tweaked some Pulver transitions so he is not sliding in idle 2025-10-08 13:03:56 +02:00
a8a6f7d33f Merge pull request 'Add a pausable interface and make minigameobjecs pausable' (#20) from pause_minigame into main
Reviewed-on: #20
2025-10-08 10:37:46 +00:00
Michal Pikulski
0e17516df7 Add a pausable interface and make minigameobjecs pausable 2025-10-08 12:36:08 +02:00
3807ac652c Add support for images in dialogue windows (#19)
- Extend editor nodes with custom DialogueContent data type that holds either image or text
- Extend the dialogue importer to correctly process the new content into updated RuntimeDialogue content
- Update SpeechBubble to be able to display either text or image
- Add a custom property drawer for the DialogueContent to allow easy switching in graph authoring

Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Reviewed-on: #19
2025-10-08 09:34:58 +00:00
7b949c5cb8 Merge pull request 'DamianBranch' (#18) from DamianBranch into main
Reviewed-on: #18
2025-10-08 08:14:27 +00:00
DamianCorazza
005cf510d5 Changes to some Lurespots 2025-10-07 23:15:19 +02:00
a91b776c20 WIP Ended the BallTree 2025-10-07 16:56:52 +02:00
Michal Pikulski
d6ed35969d Fix quarry level 2025-10-07 14:26:33 +02:00
0a553162a6 Pull from Michal Stuff 2025-10-07 13:14:45 +02:00
dea470f93f Replaced almost all placeholders with final art
Some animations still need to be added and replaced, but most of the sprites are final now.
2025-10-07 13:04:14 +02:00
Michal Pikulski
d0d785d605 te-he, compile error 2025-10-07 13:00:58 +02:00
Michal Pikulski
eb938f9adb Merge branch 'main' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction 2025-10-07 12:57:23 +02:00
10992b43cc Unity Timeline Interaction System Integration (#17)
- Added InteractionTimelineAction component for timeline-driven interactions
- Implemented custom editor for timeline event mapping
- Updated interaction event flow to support timeline actions
- Enhanced character move target configuration
- Improved inspector UI for interactable components
- Added technical documentation for interaction system
- Refactored interaction action base classes for extensibility
- Fixed issues with character binding in timelines

Co-authored-by: Michal Pikulski <michal@foolhardyhorizons.com>
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #17
2025-10-07 10:57:11 +00:00
Michal Pikulski
f845673eca Remove dependencies on legacy variables in GameManager.Instance 2025-10-07 10:44:26 +02:00
Michal Pikulski
c46036dce6 Fix speed mismatch between direct and tap movement modes 2025-10-07 10:11:55 +02:00
ca27cf519b Merge pull request 'DamianBranch' (#16) from DamianBranch into main
Reviewed-on: #16
2025-10-07 07:57:20 +00:00
Michal Pikulski
328e8dea0a Finalize normalized movement settings 2025-10-07 09:42:59 +02:00
Michal Pikulski
348e982930 Use normalized movement settings 2025-10-07 09:28:41 +02:00
Michal Pikulski
413576701e Fix input switching bug, where input would not be registered to GameMode, if game was booted in correct orientation 2025-10-07 08:32:32 +02:00
DamianCorazza
c9eae8d2c0 Added More final Sprites 2025-10-06 21:11:05 +02:00
7ed258f87a Added Sprites and Changed Placeholders for final art 2025-10-06 17:41:12 +02:00
Michal Pikulski
f20eae0f6e Randomize window for some property based fun 2025-10-06 16:57:47 +02:00
0627a2aeb7 Replacing with Final Art 2025-10-06 15:13:26 +02:00
c741651b6a Added Ball Tree Animations 2025-10-06 14:42:20 +02:00
b6b2605efb Merge pull request 'DamianBranch' (#15) from DamianBranch into main
Reviewed-on: #15
2025-10-06 10:45:26 +00:00
01189acef1 Added Anne-Lise Hiding Spot plus Kids Hidding spots 2025-10-06 12:38:16 +02:00
DamianCorazza
027ff5144e Dialogue test 2025-10-03 08:30:50 +02:00
e713a580a9 puzzlestep_indicators (#14)
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #14
2025-10-02 05:42:17 +00:00
Michal Pikulski
a6c63af911 Fix puzzle unlock issues 2025-10-02 07:16:39 +02:00
eabc1de569 Merge pull request 'DamianBranch' (#13) from DamianBranch into main
Reviewed-on: #13
2025-10-01 12:23:54 +00:00
DamianCorazza
b1f213c921 Added ToughtBubbles and some organization Folders 2025-10-01 14:21:42 +02:00
DamianCorazza
fb24537daf Implemented Picnic Logic
(It can use some improvement)
2025-09-30 15:52:37 +02:00
Michal Pikulski
f1f4234c2a Wait for correct screen orientation 2025-09-30 13:13:37 +02:00
79fac9db10 Commit to have everything at home 2025-09-30 12:21:51 +02:00
0b0ffa48dd Modified Pulver sprite's pivots 2025-09-30 10:39:14 +02:00
7a75d77c06 Merge branch 'DamianBranch' of https://homelab.tailf7f81b.ts.net/tschesky/AppleHillsProduction into DamianBranch 2025-09-29 16:18:40 +02:00
c640be7d9c Merge pull request 'Changed trafalgar's pivot and fixed the couple's animation.' (#12) from DamianBranch into main
Reviewed-on: #12
2025-09-29 14:12:01 +00:00
c98aa3e436 Changed trafalgar's pivot and fixed the couple's animation. 2025-09-29 16:10:25 +02:00
1e1757f2a1 Changed trafalgar's pivot and fixed the couple's animation. 2025-09-29 15:57:52 +02:00
Michal Pikulski
5789dca302 Working directional movement animations 2025-09-29 15:55:25 +02:00
532c532a1d Merge pull request 'WIP DamianBranch' (#11) from DamianBranch into main
Reviewed-on: #11
2025-09-29 12:11:33 +00:00
9b020f2c6f Merge branch 'main' into DamianBranch 2025-09-29 12:10:55 +00:00
f78c031cd3 Animations for Wolter 2025-09-29 14:10:14 +02:00
Michal Pikulski
8e93d40033 All working with the build - update initialization order for the ItemManager 2025-09-29 13:25:22 +02:00
Michal Pikulski
1f614009fc Update the Addressables build info and structure to accomodate for new settings assets. Application builds and works on a phone now 2025-09-29 11:59:52 +02:00
b188f7adb3 Added more Anims to the birds 2025-09-29 11:38:57 +02:00
f686f28cb8 Create a simple dialogue authoring system, tied into our items (#10)
- Editor dialogue graph
- Asset importer for processing the graph into runtime data
- DialogueComponent that steers the dialogue interactions
- DialogueCanbas with a scalable speech bubble to display everything
- Brief README overview of the system

Co-authored-by: AlexanderT <alexander@foolhardyhorizons.com>
Co-authored-by: Michal Pikulski <michal.a.pikulski@gmail.com>
Reviewed-on: #10
2025-09-29 09:34:15 +00:00
b3bf4717d6 Added animations for Hammerbird and footballbird 2025-09-26 18:02:33 +02:00
5e5ce4a5d4 Changed The picnic SpriteSheets one more time 2025-09-26 16:15:45 +02:00
52139cbe64 Flying Bird Puzzle section Complete.
Finished with the logic of the flying bird step.
2025-09-26 15:12:18 +02:00
88e630cbe7 Added some Anims for the picnic PPL plus replacing placeholders. 2025-09-26 11:59:03 +02:00
3788 changed files with 2729464 additions and 47226 deletions

3
.gitignore vendored
View File

@@ -104,3 +104,6 @@ InitTestScene*.unity*
.vscode/launch.json
.vscode/settings.json
.idea/.idea.AppleHillsProduction/.idea/indexLayout.xml
# WIP docs
/docs/wip/

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,8 @@ MonoBehaviour:
m_Name: AddressableAssetGroupSortSettings
m_EditorClassIdentifier:
sortOrder:
- 0d5d36d6da388314b92b9c6967d23f39
- 75e1f68b7bf77f34f8ad4aeab74d4244
- eb8a37153d819c44194f7ce97570a3d3
- 2b3d7cefec0915e42be04aebf0400a56
- 6f3207429a65b3e4b83935ac19791077

View File

@@ -15,7 +15,7 @@ MonoBehaviour:
m_DefaultGroup: 6f3207429a65b3e4b83935ac19791077
m_currentHash:
serializedVersion: 2
Hash: 00000000000000000000000000000000
Hash: 589e22fe6cd2fe0e25d89bd44a35bcbc
m_OptimizeCatalogSize: 0
m_BuildRemoteCatalog: 0
m_CatalogRequestsTimeout: 0
@@ -33,6 +33,7 @@ MonoBehaviour:
m_UniqueBundleIds: 0
m_EnableJsonCatalog: 0
m_NonRecursiveBuilding: 1
m_AllowNestedBundleFolders: 0
m_CCDEnabled: 0
m_maxConcurrentWebRequests: 3
m_UseUWRForLocalBundles: 0
@@ -59,8 +60,10 @@ 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}
- {fileID: 11400000, guid: e25c7672a65b5974bb354fcfb2a8400c, type: 2}
- {fileID: 11400000, guid: 7fcc03e584505ed4381983b6ebb1179d, type: 2}
m_BuildSettings:
@@ -102,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,131 @@
%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: 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: 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

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

View File

@@ -0,0 +1,33 @@
%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: Cinematics
m_EditorClassIdentifier: Unity.Addressables.Editor::UnityEditor.AddressableAssets.Settings.AddressableAssetGroup
m_GroupName: Cinematics
m_GUID: 75e1f68b7bf77f34f8ad4aeab74d4244
m_SerializeEntries:
- m_GUID: 10f0c6cee53c1364198438ae185f38fe
m_Address: SurfacingCinematic
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: bf4679c9d0eb0994d9e0de37c045e99b
m_Address: IntroSequence
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: 11da9bb90d9dd5848b4f7629415a6937, type: 2}
m_SchemaSet:
m_Schemas:
- {fileID: 11400000, guid: 9d2d887eda157c743a1c9046faaf34e0, type: 2}
- {fileID: 11400000, guid: f6d07952ab1f3144d9e077f669295fa8, type: 2}

View File

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

View File

@@ -14,7 +14,22 @@ MonoBehaviour:
m_EditorClassIdentifier:
m_GroupName: Default Local Group
m_GUID: 6f3207429a65b3e4b83935ac19791077
m_SerializeEntries: []
m_SerializeEntries:
- m_GUID: 1a9d24004b795e147b8544845a7a9ae3
m_Address: Puzzles/Testing
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 9d4a355954ae0a544a9c2a8281bc4bee
m_Address: Settings/CardSortingSettings
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: d28c589c05c122f449a8b34e696cda53
m_Address: Puzzles/Quarry
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: 11da9bb90d9dd5848b4f7629415a6937, type: 2}
m_SchemaSet:

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

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

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

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

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: Cinematics_BundledAssetGroupSchema
m_EditorClassIdentifier:
m_Group: {fileID: 11400000, guid: 4186fdd83f912a14b97fbf4644266b0d, 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

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

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: Cinematics_ContentUpdateGroupSchema
m_EditorClassIdentifier:
m_Group: {fileID: 11400000, guid: 4186fdd83f912a14b97fbf4644266b0d, type: 2}
m_StaticContent: 0

View File

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

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: Settings_BundledAssetGroupSchema
m_EditorClassIdentifier: Unity.Addressables.Editor::UnityEditor.AddressableAssets.Settings.GroupSchemas.BundledAssetGroupSchema
m_Group: {fileID: 11400000, guid: e25c7672a65b5974bb354fcfb2a8400c, 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

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

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: Settings_ContentUpdateGroupSchema
m_EditorClassIdentifier: Unity.Addressables.Editor::UnityEditor.AddressableAssets.Settings.GroupSchemas.ContentUpdateGroupSchema
m_Group: {fileID: 11400000, guid: e25c7672a65b5974bb354fcfb2a8400c, type: 2}
m_StaticContent: 0

View File

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

View File

@@ -25,6 +25,16 @@ MonoBehaviour:
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 44f8b357e56ef9d4784ec1b1df1a13a8
m_Address: Settings/Developer/DebugSettings
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 533a675687aa04146bfb69b8c9be7a6b
m_Address: Settings/CardSystemSettings
m_ReadOnly: 0
m_SerializedLabels: []
FlaggedDuringContentUpdateRestriction: 0
- m_GUID: 8f5195fb013895049a19488fd4d8f2a1
m_Address: Settings/InteractionSettings
m_ReadOnly: 0
@@ -38,4 +48,6 @@ MonoBehaviour:
m_ReadOnly: 0
m_Settings: {fileID: 11400000, guid: 11da9bb90d9dd5848b4f7629415a6937, type: 2}
m_SchemaSet:
m_Schemas: []
m_Schemas:
- {fileID: 11400000, guid: 49b3dee5fdd389a46be70ffe35d73d2c, type: 2}
- {fileID: 11400000, guid: 4349a1d3bc46eeb438cd86ad8997152d, type: 2}

View File

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

View File

@@ -0,0 +1,278 @@
%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
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Ambience
m_AudioMixer: {fileID: 24100000}
m_GroupID: 93449300145f3ff4c9f21b59e4c06cb8
m_Children: []
m_Volume: d8701439c43e6a44688e09303a1d1158
m_Pitch: 80d63bada2a480a49a4a5d966a01c10d
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: 56341014057284530}
m_UserColorIndex: 0
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
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AppleHillsAudioMix
m_OutputGroup: {fileID: 0}
m_MasterGroup: {fileID: 24300002}
m_Snapshots:
- {fileID: 24500006}
m_StartSnapshot: {fileID: 24500006}
m_SuspendThreshold: -80
m_EnableSuspend: 1
m_UpdateMode: 1
m_ExposedParameters: []
m_AudioMixerGroupViews:
- guids:
- 36b2b23a36bbb2f44ac37f79edc0af70
- 18a903247b220fb47b8e743f756a2d19
- 7e41227c6d9a65c4898080710c015deb
- 93449300145f3ff4c9f21b59e4c06cb8
- 0564b669f5b88d74fbf644daddff7659
- d96f2f2d9081a2b4680e4cc99ae6dde2
- 69e7e2391e0225240b94aab8ac4968dd
name: View
m_CurrentViewIndex: 0
m_TargetSnapshot: {fileID: 24500006}
--- !u!243 &24300002
AudioMixerGroupController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Master
m_AudioMixer: {fileID: 24100000}
m_GroupID: 36b2b23a36bbb2f44ac37f79edc0af70
m_Children:
- {fileID: -1208528772216134639}
- {fileID: 1171626333864818265}
- {fileID: 5060278701334990569}
- {fileID: 3533147658878909314}
m_Volume: 59834639f5649d34cbb5ed8055029b93
m_Pitch: 2c79200ddd7bbf244bc5980d7fbb6e1c
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: 24400004}
m_UserColorIndex: 0
m_Mute: 0
m_Solo: 0
m_BypassEffects: 0
--- !u!244 &24400004
AudioMixerEffectController:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_EffectID: 03ed6a151c0af8c4195cbebf508edc77
m_EffectName: Attenuation
m_MixLevel: 896d2fcbe3318a445b45993178b85a45
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0
--- !u!245 &24500006
AudioMixerSnapshotController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Snapshot
m_AudioMixer: {fileID: 24100000}
m_SnapshotID: 9386914617f382a40984c19c0b0f0980
m_FloatValues: {}
m_TransitionOverrides: {}
--- !u!244 &56341014057284530
AudioMixerEffectController:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_EffectID: 76d2db7ea2e149a41a68468b90cfaa4d
m_EffectName: Attenuation
m_MixLevel: 6c02daee662dcf749916e249648dcdef
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0
--- !u!243 &1171626333864818265
AudioMixerGroupController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: SFX
m_AudioMixer: {fileID: 24100000}
m_GroupID: 18a903247b220fb47b8e743f756a2d19
m_Children: []
m_Volume: 1eae4aba90e5f564d9c321be5f8ca824
m_Pitch: 630d269d37097524bb25a5f95517b9b4
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: 6612228481115079330}
m_UserColorIndex: 0
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
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Voice Over
m_AudioMixer: {fileID: 24100000}
m_GroupID: 7e41227c6d9a65c4898080710c015deb
m_Children:
- {fileID: -281949353495416486}
- {fileID: -6354048548703642832}
m_Volume: f2db72fd62c62d74cb03d11a28b9ec8f
m_Pitch: f711bad694828024996b7a703eb57af7
m_Send: 00000000000000000000000000000000
m_Effects:
- {fileID: 8526405271564766912}
m_UserColorIndex: 0
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
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_EffectID: f38c579686821d546afb92bab6e73423
m_EffectName: Attenuation
m_MixLevel: d2f81f6ade43c9e428ce1464b6fd1f2a
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0
--- !u!244 &8526405271564766912
AudioMixerEffectController:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_EffectID: 1835e9113880bc2409204e2e91177517
m_EffectName: Attenuation
m_MixLevel: 52d5a3687d87f724cbe11ccd13a4fc4f
m_Parameters: []
m_SendTarget: {fileID: 0}
m_EnableWetMix: 0
m_Bypass: 0

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 727a7e4b6df4b0d47897f7d8ee7fa323
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 24100000
userData:
assetBundleName:
assetBundleVariant:

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
@@ -131,6 +131,9 @@ MonoBehaviour:
m_PrefilterNativeRenderPass: 1
m_PrefilterUseLegacyLightmaps: 0
m_PrefilterBicubicLightmapSampling: 1
m_PrefilterReflectionProbeBlending: 1
m_PrefilterReflectionProbeBoxProjection: 1
m_PrefilterReflectionProbeAtlas: 1
m_ShaderVariantLogLevel: 0
m_ShadowCascades: 0
m_Textures:

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

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

View File

@@ -0,0 +1,185 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1102 &-7957185088663365240
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeIdle
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: -5884531244356802792}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: a9ec05723254cc4469aa89388b35d687, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &-5884531244356802792
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: IsHit
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 1956214090101204692}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.75
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &-4759710454016729179
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeEmpty
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: e76549ee949de2d4db2ae36d95fbf117, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeAnimController
serializedVersion: 5
m_AnimatorParameters:
- m_Name: IsHit
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: 3528295979987707485}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1102 &1956214090101204692
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeHit
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 7808519085717901111}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: c77ba8b4bbb8013478339a542995d25b, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1107 &3528295979987707485
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: -4759710454016729179}
m_Position: {x: 540, y: 320, z: 0}
- serializedVersion: 1
m_State: {fileID: 1956214090101204692}
m_Position: {x: 280, y: 320, z: 0}
- serializedVersion: 1
m_State: {fileID: -7957185088663365240}
m_Position: {x: 20, y: 320, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: -7957185088663365240}
--- !u!1101 &7808519085717901111
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions: []
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -4759710454016729179}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.75
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 4587ce13b65b5154c853fe4bddbd6247
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 9100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,72 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeEmpty
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.016666668
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,258 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeHit
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.033333335
value: {fileID: 8906880750509030790, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.06666667
value: {fileID: 2041700527519432934, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.1
value: {fileID: -122113120711856545, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.13333334
value: {fileID: -260481105881172014, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.16666667
value: {fileID: -6622305946934705326, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.2
value: {fileID: 2860702342352278680, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.23333333
value: {fileID: 1901944910730988534, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.26666668
value: {fileID: -6520618733805571745, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.3
value: {fileID: 3022596597473681262, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.33333334
value: {fileID: 1204644881459905932, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.36666667
value: {fileID: 1056830820185581354, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.4
value: {fileID: -7105232555648306615, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.43333334
value: {fileID: -652026886084597837, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.46666667
value: {fileID: -4540761585569079769, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.5
value: {fileID: -5109479888793026350, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.53333336
value: {fileID: -4036630437906967387, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.56666666
value: {fileID: 801943533739151625, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6
value: {fileID: -2267370628861983235, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6333333
value: {fileID: 341647588879632704, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.6666667
value: {fileID: -1983865464302337135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.7
value: {fileID: 2707171279301735498, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.73333335
value: {fileID: 8831512007435921494, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.76666665
value: {fileID: 4626183846303783780, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8
value: {fileID: -2277327416414919540, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8333333
value: {fileID: -7418991344542357872, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.8666667
value: {fileID: -5722687793916137135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.9
value: {fileID: 4733390603466533478, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.93333334
value: {fileID: 7794538912838388228, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 0.96666664
value: {fileID: -6061222791025941249, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- time: 1
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: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 8906880750509030790, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 2041700527519432934, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -122113120711856545, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -260481105881172014, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -6622305946934705326, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 2860702342352278680, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 1901944910730988534, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -6520618733805571745, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 3022596597473681262, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 1204644881459905932, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 1056830820185581354, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -7105232555648306615, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -652026886084597837, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -4540761585569079769, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -5109479888793026350, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -4036630437906967387, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 801943533739151625, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -2267370628861983235, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 341647588879632704, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -1983865464302337135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 2707171279301735498, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 8831512007435921494, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 4626183846303783780, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -2277327416414919540, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -7418991344542357872, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -5722687793916137135, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 4733390603466533478, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 7794538912838388228, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -6061222791025941249, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 3497440731386147990, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -8429106390024364219, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 2544536342771879721, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -8737456598628565943, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -2474291713210855829, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 3821937655511650850, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -6233509283156947142, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -2185360674263307586, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 845357041228852819, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 4403433291724713342, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 3657240548800692885, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -4901654772339705171, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -3912778203287357197, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 6569445112083916053, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -7400543989923980688, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -6332648109092208476, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -4263876350210749175, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -4977422680545692481, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 549927587459208453, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 6225119585260793806, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -8851827987805722175, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 4875469192827730846, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -7781180602356973421, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 859783997736569042, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -752894698880566422, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -9033757906932974073, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -3329152070564756703, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -1571039978015268605, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -6174009466675363472, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 2840136614405453735, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: -8322046293593963787, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 9103460804194853351, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
- {fileID: 7799044408606403673, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.1
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,72 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: BalltreeIdle
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 768869974157336279, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 768869974157336279, guid: ab1e8f5d45ee00247af9314b56f4af91, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.016666668
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,446 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1101 &-8760722250437406410
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: IsTalking
m_EventTreshold: 0
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.1
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 8246786244015671829}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.5
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &-8596083763404434813
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: TakePhoto
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -4318263607971929773}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &-4318263607971929773
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_Camera_TakePhoto
m_Speed: 5
m_CycleOffset: 0
m_Transitions:
- {fileID: 72347323649537359}
- {fileID: 8576178047412164299}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 10efbd38167aad04298e975a0f5a5b03, type: 2}
m_Tag:
m_SpeedParameter: speed
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &-3830102869068396213
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 2
m_ConditionEvent: IsTalking
m_EventTreshold: 0
- m_ConditionMode: 3
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -209390523250253645}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.46428573
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &-209390523250253645
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_Camera_Walk
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 6374966208286054977}
- {fileID: 1754766487699766130}
- {fileID: -8760722250437406410}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 72fcaa1d76d6e9d41b21c5864dbb56d6, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AC_AnneLise_Camera
serializedVersion: 5
m_AnimatorParameters:
- m_Name: TakePhoto
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
- m_Name: IsTalking
m_Type: 4
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
- m_Name: speed
m_Type: 1
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: 2508700077404179583}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1101 &72347323649537359
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 3
m_ConditionEvent: speed
m_EventTreshold: 0.1
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -209390523250253645}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.93273544
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &845949937516157909
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 2
m_ConditionEvent: IsTalking
m_EventTreshold: 0
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 6759965249582913303}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.46428573
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &1754766487699766130
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: TakePhoto
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -4318263607971929773}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.5
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1107 &2508700077404179583
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: 6759965249582913303}
m_Position: {x: 40, y: 270, z: 0}
- serializedVersion: 1
m_State: {fileID: -209390523250253645}
m_Position: {x: 40, y: 540, z: 0}
- serializedVersion: 1
m_State: {fileID: -4318263607971929773}
m_Position: {x: 190, y: 410, z: 0}
- serializedVersion: 1
m_State: {fileID: 8246786244015671829}
m_Position: {x: -100, y: 410, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: 6759965249582913303}
--- !u!1101 &5295647608032367320
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 3
m_ConditionEvent: speed
m_EventTreshold: 0.1
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -209390523250253645}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &6374966208286054977
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 6759965249582913303}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.5
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &6759965249582913303
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Annelise_Camera_Idle
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 5295647608032367320}
- {fileID: -8596083763404434813}
- {fileID: 7181365323396324820}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 1d83f08ad0d4b6a46936932fef66aaaf, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &7181365323396324820
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: IsTalking
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 8246786244015671829}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &8246786244015671829
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_Camera_Talk
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 845949937516157909}
- {fileID: -3830102869068396213}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 3d333893e864bb9438155954fa90266a, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &8576178047412164299
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 6759965249582913303}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.93273544
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1

View File

@@ -0,0 +1,133 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1107 &-3311016262160910353
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: 184491603596489594}
m_Position: {x: 30, y: 320, z: 0}
- serializedVersion: 1
m_State: {fileID: -1896783260395007287}
m_Position: {x: 30, y: 520, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: 184491603596489594}
--- !u!1102 &-1896783260395007287
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_AnneLiseBush_PhotoFlash
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: a35833956a43afa4bb037f67324dfe50, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AC_Bush
serializedVersion: 5
m_AnimatorParameters:
- m_Name: TakePhoto
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: -3311016262160910353}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1102 &184491603596489594
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_AnneLiseBush_PeakUp
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 7562831074132107716}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: fa1471f4c3501694a835bb22179820de, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &7562831074132107716
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: TakePhoto
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -1896783260395007287}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.75409836
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1

View File

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

View File

@@ -0,0 +1,366 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_AnneLiseBush_Blink
serializedVersion: 7
m_Legacy: 1
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.06666667
value: {x: 1, y: 0.1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.16666667
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 3.05
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 3.1166666
value: {x: 1, y: 0.1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 3.2166667
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 3.2833333
value: {x: 1, y: 0.1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 3.3333333
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 5.6833334
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_FloatCurves: []
m_PPtrCurves: []
m_SampleRate: 60
m_WrapMode: 2
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings: []
pptrCurveMapping: []
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 5.6833334
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.16666667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.05
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.2166667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.3333333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 5.6833334
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.06666667
value: 0.1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.16666667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.05
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.1166666
value: 0.1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.2166667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.2833333
value: 0.1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.3333333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 5.6833334
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.16666667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.05
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.2166667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 3.3333333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 5.6833334
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path:
classID: 4
script: {fileID: 0}
flags: 0
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,422 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_AnneLiseBush_Hide
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: CameraFlash
m_PositionCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 1.02911, y: -1.4418983, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.0166667
value: {x: 1.02911, y: 1, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: AnneLiseBody
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: CameraFlash
m_FloatCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_IsActive
path: CameraFlash
classID: 1
script: {fileID: 0}
flags: 16
m_PPtrCurves: []
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 3989656240
attribute: 1
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 2086281974
script: {fileID: 0}
typeID: 1
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 4
script: {fileID: 0}
typeID: 4
customType: 4
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping: []
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.0166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1.02911
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.x
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: -1.4418983
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0166667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.y
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.z
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_IsActive
path: CameraFlash
classID: 1
script: {fileID: 0}
flags: 16
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
m_EulerEditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,429 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_AnneLiseBush_PeakUp
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: CameraFlash
m_PositionCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 1.02911, y: -1.4418983, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.0166667
value: {x: 1.02911, y: 1, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: AnneLiseBody
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: CameraFlash
m_FloatCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_IsActive
path: CameraFlash
classID: 1
script: {fileID: 0}
flags: 16
m_PPtrCurves: []
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 3989656240
attribute: 1
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 2086281974
script: {fileID: 0}
typeID: 1
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 4
script: {fileID: 0}
typeID: 4
customType: 4
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping: []
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.0166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1.02911
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.x
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: -1.4418983
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0166667
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.y
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.z
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_IsActive
path: CameraFlash
classID: 1
script: {fileID: 0}
flags: 16
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
m_EulerEditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events:
- time: 0
functionName: AnimStarted
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

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

View File

@@ -0,0 +1,706 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_AnneLiseBush_PhotoFlash
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 379}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.33333334
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.5833333
value: {x: 0, y: 0, z: 379}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.7833333
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: CameraFlash
m_PositionCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 1.4333333
value: {x: 1.02911, y: 1, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.7833333
value: {x: 1.02911, y: -1.4418983, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: AnneLiseBody
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 12, y: 12, z: 12}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.33333334
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.5833333
value: {x: 12, y: 12, z: 12}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.7833333
value: {x: 1, y: 1, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path: CameraFlash
m_FloatCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.33333334
value: 1
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.5833333
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1.7833333
value: 1
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_IsActive
path: CameraFlash
classID: 1
script: {fileID: 0}
flags: 16
m_PPtrCurves: []
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 3989656240
attribute: 1
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 4
script: {fileID: 0}
typeID: 4
customType: 4
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 1063121799
attribute: 2086281974
script: {fileID: 0}
typeID: 1
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping: []
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.7833333
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 1.7833333
value: 1.02911
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.x
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 1.4333333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: -1.4418983
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.y
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 1.7833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.z
path: AnneLiseBody
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.33333334
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.5833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.33333334
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.5833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 379
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.33333334
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.5833333
value: 379
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 12
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.33333334
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.5833333
value: 12
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 12
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.33333334
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.5833333
value: 12
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 12
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.33333334
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.5833333
value: 12
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.7833333
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.33333334
value: 1
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 0.5833333
value: 0
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
- serializedVersion: 3
time: 1.7833333
value: 1
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_IsActive
path: CameraFlash
classID: 1
script: {fileID: 0}
flags: 16
m_EulerEditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.x
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.y
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.z
path: CameraFlash
classID: 4
script: {fileID: 0}
flags: 0
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events:
- time: 0.33333334
functionName: Flash
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0
- time: 1.7833333
functionName: PhotoTaken
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

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

View File

@@ -0,0 +1,72 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_CameraIdle
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -1179960714, guid: 99d4c3083e9c24142bc20deaeaf95720, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -1179960714, guid: 99d4c3083e9c24142bc20deaeaf95720, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.016666668
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -1,446 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1101 &-8760722250437406410
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: IsTalking
m_EventTreshold: 0
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.1
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 8246786244015671829}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.5
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &-8596083763404434813
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: TakePhoto
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -4318263607971929773}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &-4318263607971929773
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_Camera_TakePhoto
m_Speed: 5
m_CycleOffset: 0
m_Transitions:
- {fileID: 72347323649537359}
- {fileID: 8576178047412164299}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 10efbd38167aad04298e975a0f5a5b03, type: 2}
m_Tag:
m_SpeedParameter: speed
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &-3830102869068396213
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 2
m_ConditionEvent: IsTalking
m_EventTreshold: 0
- m_ConditionMode: 3
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -209390523250253645}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.46428573
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &-209390523250253645
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_Camera_Walk
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 6374966208286054977}
- {fileID: 1754766487699766130}
- {fileID: -8760722250437406410}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 72fcaa1d76d6e9d41b21c5864dbb56d6, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Annelise_Camera
serializedVersion: 5
m_AnimatorParameters:
- m_Name: TakePhoto
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
- m_Name: IsTalking
m_Type: 4
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
- m_Name: speed
m_Type: 1
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: 2508700077404179583}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1101 &72347323649537359
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 3
m_ConditionEvent: speed
m_EventTreshold: 0.1
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -209390523250253645}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.93273544
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &845949937516157909
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 2
m_ConditionEvent: IsTalking
m_EventTreshold: 0
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 6759965249582913303}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.46428573
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &1754766487699766130
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: TakePhoto
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -4318263607971929773}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.5
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1107 &2508700077404179583
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: 6759965249582913303}
m_Position: {x: 40, y: 270, z: 0}
- serializedVersion: 1
m_State: {fileID: -209390523250253645}
m_Position: {x: 40, y: 540, z: 0}
- serializedVersion: 1
m_State: {fileID: -4318263607971929773}
m_Position: {x: 190, y: 410, z: 0}
- serializedVersion: 1
m_State: {fileID: 8246786244015671829}
m_Position: {x: -100, y: 410, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: 6759965249582913303}
--- !u!1101 &5295647608032367320
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 3
m_ConditionEvent: speed
m_EventTreshold: 0.1
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -209390523250253645}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &6374966208286054977
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 6759965249582913303}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.5
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &6759965249582913303
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Annelise_Camera_Idle
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 5295647608032367320}
- {fileID: -8596083763404434813}
- {fileID: 7181365323396324820}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 1d83f08ad0d4b6a46936932fef66aaaf, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &7181365323396324820
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: IsTalking
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 8246786244015671829}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &8246786244015671829
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_Annelise_Camera_Talk
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 845949937516157909}
- {fileID: -3830102869068396213}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 3d333893e864bb9438155954fa90266a, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &8576178047412164299
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 4
m_ConditionEvent: speed
m_EventTreshold: 0.01
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 6759965249582913303}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0.25
m_TransitionOffset: 0
m_ExitTime: 0.93273544
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1

View File

@@ -1,72 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Annelise_Camera_Idle
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -1179960714, guid: 99d4c3083e9c24142bc20deaeaf95720, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -1179960714, guid: 99d4c3083e9c24142bc20deaeaf95720, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.016666668
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,130 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1107 &-6648911325921963167
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: 7969845190415885133}
m_Position: {x: 30, y: 260, z: 0}
- serializedVersion: 1
m_State: {fileID: -5234333437833527167}
m_Position: {x: 240, y: 260, z: 0}
- serializedVersion: 1
m_State: {fileID: 8248362742321293720}
m_Position: {x: 450, y: 260, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: 7969845190415885133}
--- !u!1102 &-5234333437833527167
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: footballBirdToot
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 60b885b299a60d24dbffa012114e63f3, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: FootballBird_AnimController
serializedVersion: 5
m_AnimatorParameters: []
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: -6648911325921963167}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1102 &7969845190415885133
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: footballBirdIdle
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 5d732b24d9c96644999992c03b7a458f, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1102 &8248362742321293720
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: footballBirdFlight
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: a6c0a8445ea0ac8498fd155ea616778a, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:

View File

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

View File

@@ -0,0 +1,114 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: footballBirdFlight
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -4526961168388097183, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.1
value: {fileID: 6678378708250765366, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.16666667
value: {fileID: 5257109183276098871, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.26666668
value: {fileID: -6365386246741988032, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.35
value: {fileID: -6166410269971174550, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.45
value: {fileID: -697087381347587415, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.51666665
value: {fileID: -8526899043302120773, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.6333333
value: {fileID: -2697202594669319986, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.7
value: {fileID: 1537021138919000452, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.8
value: {fileID: -441064275176934823, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.8666667
value: {fileID: -3513104290579005075, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 0.96666664
value: {fileID: -3332844303632730036, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 1.05
value: {fileID: -1408805331151090596, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 1.15
value: {fileID: 7381092181848048596, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- time: 1.2333333
value: {fileID: -3846425930340267890, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -4526961168388097183, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: 6678378708250765366, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: 5257109183276098871, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -6365386246741988032, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -6166410269971174550, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -697087381347587415, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -8526899043302120773, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -2697202594669319986, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: 1537021138919000452, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -441064275176934823, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -3513104290579005075, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -3332844303632730036, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -1408805331151090596, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: 7381092181848048596, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
- {fileID: -3846425930340267890, guid: 93b9ffd6c816a294c9c184ec6c0e8a11, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.25
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,159 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: footballBirdIdle
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -5887797107415598781, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.033333335
value: {fileID: 4182169172090052087, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.083333336
value: {fileID: 5581204054166165482, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.11666667
value: {fileID: 6281513458818790246, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.16666667
value: {fileID: -2157038173507977873, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.2
value: {fileID: 7675767991158271130, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.23333333
value: {fileID: -3809834153560938047, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.28333333
value: {fileID: 7797799588708644691, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.31666666
value: {fileID: -3694855373773427773, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.36666667
value: {fileID: -772774839854160401, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.4
value: {fileID: 2775065027350882613, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.45
value: {fileID: -5969551015847070333, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.48333332
value: {fileID: -6815726516011099956, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.51666665
value: {fileID: 3018889940081707026, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.56666666
value: {fileID: 3490090362724945448, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.6
value: {fileID: 4386831219829939925, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.65
value: {fileID: -6530143234255615529, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.68333334
value: {fileID: 7096009967814692052, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.71666664
value: {fileID: 6319826433179223563, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.76666665
value: {fileID: -5952344288683761052, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.8
value: {fileID: -7201094444470444464, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.85
value: {fileID: 2104556673111889494, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.8833333
value: {fileID: -3089917731664936424, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.93333334
value: {fileID: 8331946793720757423, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 0.96666664
value: {fileID: -3625782473088726632, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 1
value: {fileID: -7661119854620563729, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 1.05
value: {fileID: -5647685865876279807, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 1.0833334
value: {fileID: 7992653244893361835, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 1.1333333
value: {fileID: 5254102076834024576, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- time: 1.1666666
value: {fileID: -523328932758371747, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -5887797107415598781, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 4182169172090052087, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 5581204054166165482, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 6281513458818790246, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -2157038173507977873, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 7675767991158271130, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -3809834153560938047, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 7797799588708644691, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -3694855373773427773, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -772774839854160401, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 2775065027350882613, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -5969551015847070333, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -6815726516011099956, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 3018889940081707026, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 3490090362724945448, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 4386831219829939925, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -6530143234255615529, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 7096009967814692052, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 6319826433179223563, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -5952344288683761052, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -7201094444470444464, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 2104556673111889494, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -3089917731664936424, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 8331946793720757423, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -3625782473088726632, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -7661119854620563729, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -5647685865876279807, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 7992653244893361835, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: 5254102076834024576, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
- {fileID: -523328932758371747, guid: c0e435e6bd128d045929db855ffe1dfa, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.1833333
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5d732b24d9c96644999992c03b7a458f
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,111 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: footballBirdToot
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -707467532440070489, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.083333336
value: {fileID: -1541069804624696795, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.15
value: {fileID: 5480074903111532417, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.23333333
value: {fileID: -4437234133780105358, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.3
value: {fileID: -7510179062614694620, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.38333333
value: {fileID: 4173172725905637438, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.46666667
value: {fileID: -7156527426664965181, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.53333336
value: {fileID: -7326940315833524427, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.6166667
value: {fileID: 1770289212828811005, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.7
value: {fileID: 5686285123632532861, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.76666665
value: {fileID: -8421741999230400212, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.85
value: {fileID: 6370632596369152824, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 0.9166667
value: {fileID: 2832383759002482031, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- time: 1
value: {fileID: 6558409877831622940, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -707467532440070489, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: -1541069804624696795, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 5480074903111532417, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: -4437234133780105358, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: -7510179062614694620, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 4173172725905637438, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: -7156527426664965181, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: -7326940315833524427, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 1770289212828811005, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 5686285123632532861, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: -8421741999230400212, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 6370632596369152824, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 2832383759002482031, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
- {fileID: 6558409877831622940, guid: 46b0c0b4f25fa7040bc2f3a4d702be28, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.0166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 60b885b299a60d24dbffa012114e63f3
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

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

View File

@@ -0,0 +1,120 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBirdFlight
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 4906017525639225927, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.083333336
value: {fileID: -6669999892650470736, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.16666667
value: {fileID: -4316492723876067457, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.23333333
value: {fileID: -3471462022043294425, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.31666666
value: {fileID: 823566336465381084, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.4
value: {fileID: 439046929303711056, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.46666667
value: {fileID: 8556975543676688556, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.53333336
value: {fileID: 4973308596690121533, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.6333333
value: {fileID: -2836469059268274498, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.7
value: {fileID: -3612877655676946359, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.78333336
value: {fileID: 8145067482917846014, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.85
value: {fileID: -3074899301189309801, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 0.93333334
value: {fileID: 7089653965355315716, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 1.0166667
value: {fileID: -6272614243574358271, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 1.0833334
value: {fileID: -3602419548021860093, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 1.1666666
value: {fileID: -1746001368592556769, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- time: 1.25
value: {fileID: 2958252850933201752, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 4906017525639225927, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -6669999892650470736, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -4316492723876067457, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -3471462022043294425, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 823566336465381084, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 439046929303711056, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 8556975543676688556, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 4973308596690121533, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -2836469059268274498, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -3612877655676946359, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 8145067482917846014, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -3074899301189309801, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 7089653965355315716, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -6272614243574358271, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -3602419548021860093, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: -1746001368592556769, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
- {fileID: 2958252850933201752, guid: b91b56c53bc01e042a092ece12f32f86, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.2666667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 48775090ff22c5740a15ba122662e56a
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,138 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBirdHit
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 206542917429323797, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.1
value: {fileID: -5544834006987401562, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.18333334
value: {fileID: -7874461672978280886, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.28333333
value: {fileID: -6928526884083917967, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.38333333
value: {fileID: 1445703772683740084, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.48333332
value: {fileID: -928541233054576999, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.56666666
value: {fileID: 5539951363731229852, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.6666667
value: {fileID: -3228601365347754645, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.76666665
value: {fileID: 7686977207549830838, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.8666667
value: {fileID: -8073417807226934332, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 0.95
value: {fileID: 5995167329263592964, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.05
value: {fileID: 4121917146659333078, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.15
value: {fileID: -588856569252535182, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.2333333
value: {fileID: 6881528769384123845, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.3333334
value: {fileID: -4487765349222019262, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.4333333
value: {fileID: -3541696754556016669, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.5333333
value: {fileID: 8667762751961729570, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.6166667
value: {fileID: 5982806746517278448, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.7166667
value: {fileID: -9133491669352626043, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.8166667
value: {fileID: 3162833708084447003, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 1.9166666
value: {fileID: -7844875177307136282, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 2
value: {fileID: -6647959627166414207, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- time: 2.1
value: {fileID: 8899642585082629051, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 206542917429323797, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -5544834006987401562, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -7874461672978280886, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -6928526884083917967, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 1445703772683740084, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -928541233054576999, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 5539951363731229852, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -3228601365347754645, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 7686977207549830838, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -8073417807226934332, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 5995167329263592964, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 4121917146659333078, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -588856569252535182, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 6881528769384123845, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -4487765349222019262, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -3541696754556016669, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 8667762751961729570, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 5982806746517278448, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -9133491669352626043, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 3162833708084447003, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -7844875177307136282, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: -6647959627166414207, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
- {fileID: 8899642585082629051, guid: 6c6334f9a06595441bdc753ea2613201, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.1166666
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 275191dd0b8fd6541b8abf6edeb7a829
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,150 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBirdIdle
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 8615127699505739178, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.06666667
value: {fileID: -8626161764297496564, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.18333334
value: {fileID: -5793898218623229581, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.21666667
value: {fileID: -8378882494450719939, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.31666666
value: {fileID: 2375732366195996507, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.4
value: {fileID: 1836560335563720080, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.46666667
value: {fileID: -7436514095813709974, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.53333336
value: {fileID: -3800344411909584337, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.6
value: {fileID: -9173856403906015885, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.68333334
value: {fileID: -4054080328568155108, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.76666665
value: {fileID: 8981880003186653709, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.8333333
value: {fileID: -4596034165966997784, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 0.93333334
value: {fileID: -3212856999072614109, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1
value: {fileID: 5091188171895142317, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.0666667
value: {fileID: 8714218507016524590, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.1666666
value: {fileID: -4915529909756185059, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.2333333
value: {fileID: -6744324328304315700, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.2833333
value: {fileID: -6069510988890768485, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.4
value: {fileID: -8283387556981810500, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.4666667
value: {fileID: 3915181034753894545, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.5333333
value: {fileID: -2233825045996154609, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.6
value: {fileID: 3481765761602189636, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.7166667
value: {fileID: -2952126203846449872, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.7833333
value: {fileID: -1785440367990588957, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.8166667
value: {fileID: -1629545548289357145, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 1.9333333
value: {fileID: 7130944708348805042, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- time: 2
value: {fileID: -5560007640678395750, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 8615127699505739178, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -8626161764297496564, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -5793898218623229581, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -8378882494450719939, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 2375732366195996507, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 1836560335563720080, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -7436514095813709974, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -3800344411909584337, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -9173856403906015885, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -4054080328568155108, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 8981880003186653709, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -4596034165966997784, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -3212856999072614109, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 5091188171895142317, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 8714218507016524590, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -4915529909756185059, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -6744324328304315700, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -6069510988890768485, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -8283387556981810500, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 3915181034753894545, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -2233825045996154609, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 3481765761602189636, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -2952126203846449872, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -1785440367990588957, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -1629545548289357145, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: 7130944708348805042, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
- {fileID: -5560007640678395750, guid: 62aa1f167125bbd40b73fa19cd302aa7, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.0166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,130 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1102 &-8184722212880197455
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBirdIdle
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: fea7d5873b180c741a2dc9f9af5262e6, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1102 &-5403322455648737578
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBirdHit
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 275191dd0b8fd6541b8abf6edeb7a829, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBird_AnimController
serializedVersion: 5
m_AnimatorParameters: []
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: 3080913315472672090}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1102 &470161869059813810
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: HammerBirdFlight
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 48775090ff22c5740a15ba122662e56a, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1107 &3080913315472672090
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: -8184722212880197455}
m_Position: {x: 30, y: 210, z: 0}
- serializedVersion: 1
m_State: {fileID: 470161869059813810}
m_Position: {x: 240, y: 210, z: 0}
- serializedVersion: 1
m_State: {fileID: -5403322455648737578}
m_Position: {x: 450, y: 210, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: -8184722212880197455}

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 51a2abf8ca7e2b44da0544e8113a7120
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 9100000
userData:
assetBundleName:
assetBundleVariant:

View File

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

View File

@@ -0,0 +1,194 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1102 &-7123694714182698348
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Butterfly_Trapped
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: -3401047733442852747}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 95de8fd6297091e48ad4e98af36895ee, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1102 &-5852692507557025309
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Butterfly_Flight
m_Speed: 1
m_CycleOffset: 0
m_Transitions:
- {fileID: 4242574681130237058}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 5e5d09518a311b9448ad34766ea05a01, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &-3401047733442852747
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: BrokeOut
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -5852692507557025309}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.75
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Butterfly
serializedVersion: 5
m_AnimatorParameters:
- m_Name: IsFree
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
- m_Name: BrokeOut
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: 200773854421593538}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}
--- !u!1107 &200773854421593538
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates:
- serializedVersion: 1
m_State: {fileID: -5852692507557025309}
m_Position: {x: 240, y: 240, z: 0}
- serializedVersion: 1
m_State: {fileID: 3280735923797652806}
m_Position: {x: 450, y: 240, z: 0}
- serializedVersion: 1
m_State: {fileID: -7123694714182698348}
m_Position: {x: 30, y: 240, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 160, z: 0}
m_EntryPosition: {x: 50, y: 200, z: 0}
m_ExitPosition: {x: 660, y: 250, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: -7123694714182698348}
--- !u!1102 &3280735923797652806
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Butterfly_Free
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 0327201d9a45c4b4e8630d83f5db7b02, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &4242574681130237058
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: IsFree
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 3280735923797652806}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.75
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@@ -0,0 +1,223 @@
fileFormatVersion: 2
guid: d5bbe5b893ed9bc43b303a0e5c712a09
TextureImporter:
internalIDToNameTable:
- first:
213: 4530433918361379743
second: Butterfly_0
- first:
213: 4699623745766655208
second: Butterfly_1
- first:
213: -265841166610147798
second: Butterfly_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
- 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: Butterfly_0
rect:
serializedVersion: 2
x: 0
y: 0
width: 256
height: 321
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: f93af4e35a55fde30800000000000000
internalID: 4530433918361379743
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Butterfly_1
rect:
serializedVersion: 2
x: 256
y: 0
width: 256
height: 321
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: 8e48968a5ea683140800000000000000
internalID: 4699623745766655208
vertices: []
indices:
edges: []
weights: []
- serializedVersion: 2
name: Butterfly_2
rect:
serializedVersion: 2
x: 512
y: 0
width: 256
height: 321
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: a26d6811eda8f4cf0800000000000000
internalID: -265841166610147798
vertices: []
indices:
edges: []
weights: []
outline: []
customData:
physicsShape: []
bones: []
spriteID: 2094ca25d42e30840bdbb20c96ca89f6
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
spriteCustomMetadata:
entries:
- key: SpriteEditor.SliceSettings
value: '{"sliceOnImport":false,"gridCellCount":{"x":1.0,"y":1.0},"gridSpriteSize":{"x":256.0,"y":321.0},"gridSpriteOffset":{"x":0.0,"y":0.0},"gridSpritePadding":{"x":0.0,"y":0.0},"pivot":{"x":0.5,"y":0.5},"pivotPixels":{"x":0.0,"y":0.0},"autoSlicingMethod":0,"spriteAlignment":0,"pivotUnitMode":0,"slicingType":1,"keepEmptyRects":false,"isAlternate":false}'
nameFileIdTable:
Butterfly_0: 4530433918361379743
Butterfly_1: 4699623745766655208
Butterfly_2: -265841166610147798
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,620 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Butterfly_Flight
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.3
value: {x: 0, y: 0, z: -21.435}
inSlope: {x: 0, y: 0, z: -42.74739}
outSlope: {x: 0, y: 0, z: -42.74739}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.76666665
value: {x: 0, y: 0, z: -32.773}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.0333333
value: {x: 0, y: 0, z: -9.69}
inSlope: {x: 0, y: 0, z: 63.431614}
outSlope: {x: 0, y: 0, z: 63.431614}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.2833333
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_PositionCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.3
value: {x: 0, y: 0.1, z: 0}
inSlope: {x: 0, y: 0.45000002, z: 0}
outSlope: {x: 0, y: 0.45000002, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.6666667
value: {x: 0, y: 0.3, z: 0}
inSlope: {x: 0, y: 1.0714287, z: 0}
outSlope: {x: 0, y: 1.0714287, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.76666665
value: {x: 0, y: 0.6, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.98333335
value: {x: 0, y: 0.3, z: 0}
inSlope: {x: 0, y: -1.1612904, z: 0}
outSlope: {x: 0, y: -1.1612904, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.2833333
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 0.3
value: {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 0.6666667
value: {fileID: -265841166610147798, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 0.98333335
value: {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 1.2833333
value: {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 1
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 4
script: {fileID: 0}
typeID: 4
customType: 4
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: -265841166610147798, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.3
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.6666667
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.98333335
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0.1
inSlope: 0.45000002
outSlope: 0.45000002
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.6666667
value: 0.3
inSlope: 1.0714287
outSlope: 1.0714287
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.98333335
value: 0.3
inSlope: -1.1612904
outSlope: -1.1612904
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.6666667
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.98333335
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.z
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0333333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.x
path:
classID: 4
script: {fileID: 0}
flags: 16
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0333333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.y
path:
classID: 4
script: {fileID: 0}
flags: 16
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: -21.435
inSlope: -42.74739
outSlope: -42.74739
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: -32.773
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0333333
value: -9.69
inSlope: 63.431614
outSlope: 63.431614
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.z
path:
classID: 4
script: {fileID: 0}
flags: 16
m_EulerEditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.z
path:
classID: 4
script: {fileID: 0}
flags: 0
m_HasGenericRootTransform: 1
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 5e5d09518a311b9448ad34766ea05a01
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,620 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Butterfly_Free
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.3
value: {x: 0, y: 0, z: -21.435}
inSlope: {x: 0, y: 0, z: -42.74739}
outSlope: {x: 0, y: 0, z: -42.74739}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.76666665
value: {x: 0, y: 0, z: -32.773}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.0333333
value: {x: 0, y: 0, z: -9.69}
inSlope: {x: 0, y: 0, z: 63.431614}
outSlope: {x: 0, y: 0, z: 63.431614}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.2833333
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_PositionCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.3
value: {x: 0, y: 0.1, z: 0}
inSlope: {x: 0, y: 0.45000002, z: 0}
outSlope: {x: 0, y: 0.45000002, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.6666667
value: {x: 0, y: 0.3, z: 0}
inSlope: {x: 0, y: 1.0714287, z: 0}
outSlope: {x: 0, y: 1.0714287, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.76666665
value: {x: 0, y: 0.6, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 0.98333335
value: {x: 0, y: 0.3, z: 0}
inSlope: {x: 0, y: -1.1612904, z: 0}
outSlope: {x: 0, y: -1.1612904, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
- serializedVersion: 3
time: 1.2833333
value: {x: 0, y: 0, z: 0}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 0.3
value: {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 0.6666667
value: {fileID: -265841166610147798, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 0.98333335
value: {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- time: 1.2833333
value: {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 1
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 4
script: {fileID: 0}
typeID: 4
customType: 4
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: -265841166610147798, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: 4699623745766655208, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
- {fileID: 4530433918361379743, guid: d5bbe5b893ed9bc43b303a0e5c712a09, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.3
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.6666667
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.98333335
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0.1
inSlope: 0.45000002
outSlope: 0.45000002
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.6666667
value: 0.3
inSlope: 1.0714287
outSlope: 1.0714287
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.98333335
value: 0.3
inSlope: -1.1612904
outSlope: -1.1612904
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.6666667
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.98333335
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalPosition.z
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0333333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.x
path:
classID: 4
script: {fileID: 0}
flags: 16
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0333333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.y
path:
classID: 4
script: {fileID: 0}
flags: 16
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.3
value: -21.435
inSlope: -42.74739
outSlope: -42.74739
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 0.76666665
value: -32.773
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.0333333
value: -9.69
inSlope: 63.431614
outSlope: 63.431614
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
- serializedVersion: 3
time: 1.2833333
value: 0
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: localEulerAnglesRaw.z
path:
classID: 4
script: {fileID: 0}
flags: 16
m_EulerEditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve: []
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalEulerAngles.z
path:
classID: 4
script: {fileID: 0}
flags: 0
m_HasGenericRootTransform: 1
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 0327201d9a45c4b4e8630d83f5db7b02
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 95de8fd6297091e48ad4e98af36895ee
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -21,131 +21,65 @@ AnimationClip:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 6464604027884114943, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.033333335
value: {fileID: 4827937951022368601, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.06666667
value: {fileID: -4857172496840081466, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.1
value: {fileID: -5829131890598667936, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.13333334
value: {fileID: -966538637964967284, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.16666667
value: {fileID: 862406864542277302, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.2
value: {fileID: -7179897477118827577, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.23333333
value: {fileID: 1201420038150117306, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 4734585827436184375, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.26666668
value: {fileID: -1092622337571923679, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.3
value: {fileID: -4125781728196512783, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.33333334
value: {fileID: 7131324833075583536, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.36666667
value: {fileID: -2793724697028114386, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.4
value: {fileID: 3039678970788820905, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.43333334
value: {fileID: -8551694706664481477, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.46666667
value: {fileID: 953697063996347726, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.51666665
value: {fileID: -2989501521727851053, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.55
value: {fileID: 5291523519844640038, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.5833333
value: {fileID: -814615177725480278, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.6166667
value: {fileID: -8877953256931262049, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.65
value: {fileID: 6881018312884367717, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.68333334
value: {fileID: 6720514247260485534, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.71666664
value: {fileID: 1313563105410843706, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.75
value: {fileID: 8676726198441277928, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.78333336
value: {fileID: 7691575916191078511, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.81666666
value: {fileID: 7990960014891221857, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.85
value: {fileID: -3808402715784617340, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.8833333
value: {fileID: -5908061706838315912, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.9166667
value: {fileID: -8279042720077149668, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.95
value: {fileID: 2115083198399111744, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 0.98333335
value: {fileID: -4551970622923143639, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.0166667
value: {fileID: -8464403999002125873, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.05
value: {fileID: -510003267478739486, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.0833334
value: {fileID: -8584203760091052140, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.1166667
value: {fileID: 477986972137097501, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.15
value: {fileID: 392404492137660961, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.1833333
value: {fileID: 8181067975591356709, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.2166667
value: {fileID: -5491064061586696620, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.25
value: {fileID: -6087662744547590717, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.2833333
value: {fileID: -7142927977586663704, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.3166667
value: {fileID: -2881924753467159024, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.35
value: {fileID: -5237685525853847133, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.3833333
value: {fileID: -2257545115315555892, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.4166666
value: {fileID: -914976240184656072, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.45
value: {fileID: 1743086601946422105, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.4833333
value: {fileID: 2824556778882607636, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.5333333
value: {fileID: 1258241449541270030, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.5666667
value: {fileID: 5605415899318557575, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.6
value: {fileID: 968312015584398754, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.6333333
value: {fileID: 4495364199203803732, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.6666666
value: {fileID: 2817791512538517074, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.7
value: {fileID: -5723140682562558373, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.7333333
value: {fileID: -6830317879503268643, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.7666667
value: {fileID: -4551283656750122528, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.8
value: {fileID: -8569178273887389552, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.8333334
value: {fileID: 9157874823898172556, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.8666667
value: {fileID: -5428588453411650232, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.9
value: {fileID: 8888124158344842345, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.9333333
value: {fileID: -7045093028198528674, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 1.9666667
value: {fileID: 8209317860077023960, guid: f736f6405127c804ba8d291c97625165, type: 3}
- time: 2
value: {fileID: -7526547404372537214, guid: f736f6405127c804ba8d291c97625165, type: 3}
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.5
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.56666666
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6333333
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.7
value: {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.73333335
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.76666665
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:
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}
@@ -153,7 +87,7 @@ AnimationClip:
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
path: 690650095
attribute: 0
script: {fileID: 0}
typeID: 212
@@ -162,77 +96,44 @@ AnimationClip:
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 6464604027884114943, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 4827937951022368601, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -4857172496840081466, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -5829131890598667936, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -966538637964967284, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 862406864542277302, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -7179897477118827577, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 1201420038150117306, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -1092622337571923679, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -4125781728196512783, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 7131324833075583536, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -2793724697028114386, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 3039678970788820905, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -8551694706664481477, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 953697063996347726, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -2989501521727851053, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 5291523519844640038, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -814615177725480278, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -8877953256931262049, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 6881018312884367717, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 6720514247260485534, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 1313563105410843706, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 8676726198441277928, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 7691575916191078511, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 7990960014891221857, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -3808402715784617340, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -5908061706838315912, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -8279042720077149668, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 2115083198399111744, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -4551970622923143639, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -8464403999002125873, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -510003267478739486, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -8584203760091052140, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 477986972137097501, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 392404492137660961, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 8181067975591356709, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -5491064061586696620, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -6087662744547590717, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -7142927977586663704, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -2881924753467159024, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -5237685525853847133, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -2257545115315555892, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -914976240184656072, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 1743086601946422105, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 2824556778882607636, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 1258241449541270030, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 5605415899318557575, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 968312015584398754, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 4495364199203803732, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 2817791512538517074, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -5723140682562558373, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -6830317879503268643, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -4551283656750122528, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -8569178273887389552, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 9157874823898172556, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -5428588453411650232, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 8888124158344842345, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -7045093028198528674, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: 8209317860077023960, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -7526547404372537214, guid: f736f6405127c804ba8d291c97625165, type: 3}
- {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 4734585827436184375, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2418630947029704618, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.0166667
m_StopTime: 1.0666666
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0

View File

@@ -17,21 +17,52 @@ AnimationClip:
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves: []
m_SampleRate: 60
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 409820302571474225, 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.73333335
value: {fileID: 2590761823639534279, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- 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: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings: []
pptrCurveMapping: []
genericBindings:
- serializedVersion: 2
path: 1518854941
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 409820302571474225, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- {fileID: -7526192130359645791, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- {fileID: 7940957057387369932, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- {fileID: 2590761823639534279, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
- {fileID: 987614732349934808, guid: cba56854f51756c48aa78d8ce5b64418, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1
m_StopTime: 1.0333333
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0

View File

@@ -21,71 +21,69 @@ AnimationClip:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -8743994222981818220, guid: a046781edf2b40442ade521a2b844492, type: 3}
value: {fileID: -2418630947029704618, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.13333334
value: {fileID: -2511874812283630395, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.21666667
value: {fileID: -6335795600380635014, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.31666666
value: {fileID: -2066342758605951756, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.45
value: {fileID: 2697125675887702655, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.5833333
value: {fileID: 4514986903487731777, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.6666667
value: {fileID: 5118470891769903284, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.75
value: {fileID: 476058763619885369, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 0.95
value: {fileID: -2151382835388237978, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.05
value: {fileID: 8317735639489062057, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.1833333
value: {fileID: 8997057000589192139, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.2666667
value: {fileID: -4987474643421042090, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.4
value: {fileID: 205459826063117924, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.4833333
value: {fileID: -2395122861569259444, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.6166667
value: {fileID: 2821442386421367523, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.7166667
value: {fileID: -1507296017295236417, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.85
value: {fileID: 8561642639534444375, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 1.9333333
value: {fileID: -3398069156881634388, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.0666666
value: {fileID: -5466413136122416020, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.15
value: {fileID: -2077688136282281817, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.2833333
value: {fileID: -920635311199699406, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.3833334
value: {fileID: -6734921027557455312, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.5333333
value: {fileID: -1495033934080238324, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.6666667
value: {fileID: 8697503064681404489, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.75
value: {fileID: -2443459294012769004, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.8833334
value: {fileID: 1227497600851492259, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 2.9833333
value: {fileID: -7759545305414582108, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 3.1166666
value: {fileID: 453606453438798635, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 3.25
value: {fileID: -7503970642920619390, guid: a046781edf2b40442ade521a2b844492, type: 3}
- time: 3.3333333
value: {fileID: -4851710929211389768, guid: a046781edf2b40442ade521a2b844492, type: 3}
value: {fileID: 2674273452559934012, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.3
value: {fileID: -2698605909685488034, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.43333334
value: {fileID: 3861976936690819325, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 0.56666666
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: -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: -8439729946137456171, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- time: 1.5666667
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:
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}
@@ -93,7 +91,7 @@ AnimationClip:
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
path: 690650095
attribute: 0
script: {fileID: 0}
typeID: 212
@@ -102,47 +100,46 @@ AnimationClip:
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -8743994222981818220, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2511874812283630395, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -6335795600380635014, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2066342758605951756, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 2697125675887702655, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 4514986903487731777, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 5118470891769903284, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 476058763619885369, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2151382835388237978, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 8317735639489062057, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 8997057000589192139, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -4987474643421042090, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 205459826063117924, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2395122861569259444, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 2821442386421367523, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -1507296017295236417, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 8561642639534444375, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -3398069156881634388, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -5466413136122416020, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2077688136282281817, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -920635311199699406, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -6734921027557455312, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -1495033934080238324, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 8697503064681404489, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2443459294012769004, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 1227497600851492259, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -7759545305414582108, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: 453606453438798635, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -7503970642920619390, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -4851710929211389768, guid: a046781edf2b40442ade521a2b844492, type: 3}
- {fileID: -2418630947029704618, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 2674273452559934012, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -2698605909685488034, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 3861976936690819325, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -6689870935560218674, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 7461197226090594249, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -924226019851306031, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -6780147634687105545, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -2535309933509542117, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 1533827117853223934, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -8439729946137456171, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 1198232512917018545, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 8417572472515901457, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -2089482225516024132, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -9154026772805048227, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 8710589816849778765, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -4178953323708561460, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 1655498968633830498, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 4332688065003410644, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -4097196431023125937, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 3366559405002510065, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -3160329582883260081, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -8010593566981225273, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 5470457927680665288, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -6580361640191485552, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -4569953206706430958, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 5448712653706865606, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: -494583595472008175, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
- {fileID: 6624740418941178713, guid: fbbc627f5a8f06e47a23369fd19f3998, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 3.35
m_StopTime: 3.6333332
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
@@ -156,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

@@ -0,0 +1,397 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: LongAnimPicnicPPLShoo
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.033333335
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.05
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.083333336
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.11666667
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.13333334
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.15
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.18333334
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.2
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.21666667
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.23333333
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.26666668
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.28333333
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.3
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.33333334
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.36666667
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.38333333
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.41666666
value: {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.43333334
value: {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.46666667
value: {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.5
value: {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.53333336
value: {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.55
value: {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.56666666
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6166667
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6333333
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.65
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.68333334
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.7
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.71666664
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.75
value: {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.78333336
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8333333
value: {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8666667
value: {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8833333
value: {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.9166667
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.95
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.96666664
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.98333335
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0166667
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0333333
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.05
value: {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0666667
value: {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1
value: {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1166667
value: {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1333333
value: {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1666666
value: {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.2
value: {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.2166667
value: {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.25
value: {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
attribute: m_Sprite
path: Picnic PPL Angry/PicnicPPl
classID: 212
script: {fileID: 0}
flags: 2
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.033333335
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.05
value: {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.083333336
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.11666667
value: {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.13333334
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.15
value: {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.18333334
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.2
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.21666667
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.23333333
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.26666668
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.28333333
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.3
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.33333334
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.36666667
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.38333333
value: {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.41666666
value: {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.43333334
value: {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.46666667
value: {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.5
value: {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.53333336
value: {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.55
value: {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.56666666
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6
value: {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6166667
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.6333333
value: {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.65
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.68333334
value: {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.7
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.71666664
value: {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.75
value: {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.78333336
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8
value: {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8333333
value: {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8666667
value: {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.8833333
value: {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.9166667
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.95
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.96666664
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 0.98333335
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0166667
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0333333
value: {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.05
value: {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.0666667
value: {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1
value: {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1166667
value: {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1333333
value: {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.1666666
value: {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.2
value: {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.2166667
value: {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- time: 1.25
value: {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
attribute: m_Sprite
path: Picnic PPL Chilling/PicnicPPl
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 2091992553
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 690650095
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2750537682534617798, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1313958663299761363, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1368304682000560889, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5148152578091295131, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5175152572798960515, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2624835572783650142, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 1480404424803140867, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5797253797174565556, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3161109987679049733, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 6661843629064032450, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1446816102361218634, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6694388007177635723, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1324742394439945141, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 240858685518691627, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -1336080830172673940, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 7198661290457402786, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 5039228973940303016, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6630282325460440043, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -3351056254805331608, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 3654700337104154398, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 2728646838695724461, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -2581698265875387897, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: -6943440077437072623, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 4086135313560770538, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
- {fileID: 8284415363918423251, guid: 6801cb749018fc14eb534cd4d85a572f, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.2666667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 0
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -10,7 +10,8 @@ AnimatorState:
m_Name: Anim_PicnicPPL_Distracted
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_Transitions:
- {fileID: -5236073625168017576}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
@@ -40,10 +41,13 @@ AnimatorStateMachine:
m_Position: {x: 30, y: 230, z: 0}
- serializedVersion: 1
m_State: {fileID: 4132696506529250174}
m_Position: {x: 65, y: 295, z: 0}
m_Position: {x: 260, y: 230, z: 0}
- serializedVersion: 1
m_State: {fileID: -7558122856987167529}
m_Position: {x: 100, y: 360, z: 0}
m_Position: {x: 30, y: 300, z: 0}
- serializedVersion: 1
m_State: {fileID: 1286523504048593293}
m_Position: {x: 400, y: 100, z: 0}
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
@@ -54,6 +58,81 @@ AnimatorStateMachine:
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: 564437090677851590}
--- !u!1101 &-5236073625168017576
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 2
m_ConditionEvent: theyDistracted
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 564437090677851590}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.516129
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &-4519341069038553901
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: theyDistracted
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: -7558122856987167529}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.87603307
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1101 &-159810724103494173
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions:
- m_ConditionMode: 1
m_ConditionEvent: theyAngry
m_EventTreshold: 0
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 4132696506529250174}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.87603307
m_HasExitTime: 0
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
@@ -62,7 +141,19 @@ AnimatorController:
m_PrefabAsset: {fileID: 0}
m_Name: PicnicPPL_Animator
serializedVersion: 5
m_AnimatorParameters: []
m_AnimatorParameters:
- m_Name: theyAngry
m_Type: 9
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
- m_Name: theyDistracted
m_Type: 4
m_DefaultFloat: 0
m_DefaultInt: 0
m_DefaultBool: 0
m_Controller: {fileID: 9100000}
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
@@ -86,7 +177,9 @@ AnimatorState:
m_Name: Anim_PicnicPPL_Flirting
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_Transitions:
- {fileID: -4519341069038553901}
- {fileID: -159810724103494173}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
@@ -102,6 +195,54 @@ AnimatorState:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1101 &622718680960508754
AnimatorStateTransition:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name:
m_Conditions: []
m_DstStateMachine: {fileID: 0}
m_DstState: {fileID: 564437090677851590}
m_Solo: 0
m_Mute: 0
m_IsExit: 0
serializedVersion: 3
m_TransitionDuration: 0
m_TransitionOffset: 0
m_ExitTime: 0.75409836
m_HasExitTime: 1
m_HasFixedDuration: 1
m_InterruptionSource: 0
m_OrderedInterruption: 1
m_CanTransitionToSelf: 1
--- !u!1102 &1286523504048593293
AnimatorState:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: LongAnimPicnicPPLShoo
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0
m_WriteDefaultValues: 1
m_Mirror: 0
m_SpeedParameterActive: 0
m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0
m_Motion: {fileID: 7400000, guid: 8b4539a2ef3c97749a0055613875a07d, type: 2}
m_Tag:
m_SpeedParameter:
m_MirrorParameter:
m_CycleOffsetParameter:
m_TimeParameter:
--- !u!1102 &4132696506529250174
AnimatorState:
serializedVersion: 6
@@ -112,7 +253,8 @@ AnimatorState:
m_Name: Anim_PicnicPPL_Angry
m_Speed: 1
m_CycleOffset: 0
m_Transitions: []
m_Transitions:
- {fileID: 622718680960508754}
m_StateMachineBehaviours: []
m_Position: {x: 50, y: 50, z: 0}
m_IKOnFeet: 0

View File

@@ -1,43 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1107 &-3219251165592604306
AnimatorStateMachine:
serializedVersion: 6
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: Base Layer
m_ChildStates: []
m_ChildStateMachines: []
m_AnyStateTransitions: []
m_EntryTransitions: []
m_StateMachineTransitions: {}
m_StateMachineBehaviours: []
m_AnyStatePosition: {x: 50, y: 20, z: 0}
m_EntryPosition: {x: 50, y: 120, z: 0}
m_ExitPosition: {x: 800, y: 120, z: 0}
m_ParentStateMachinePosition: {x: 800, y: 20, z: 0}
m_DefaultState: {fileID: 0}
--- !u!91 &9100000
AnimatorController:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: AC_Pulver
serializedVersion: 5
m_AnimatorParameters: []
m_AnimatorLayers:
- serializedVersion: 5
m_Name: Base Layer
m_StateMachine: {fileID: -3219251165592604306}
m_Mask: {fileID: 0}
m_Motions: []
m_Behaviours: []
m_BlendingMode: 0
m_SyncedLayerIndex: -1
m_DefaultWeight: 0
m_IKPass: 0
m_SyncedLayerAffectsTiming: 0
m_Controller: {fileID: 9100000}

View File

@@ -1,8 +0,0 @@
fileFormatVersion: 2
guid: 579e13fd45217ab4a9c275bb306a188b
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 9100000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,380 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_PulverCombine
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0.6, y: 0.6, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: 263105632, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.033333335
value: {fileID: -1812988591, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.06666667
value: {fileID: -1090178663, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.1
value: {fileID: 435788048, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.13333334
value: {fileID: 1131685978, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.16666667
value: {fileID: 1731845327, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.2
value: {fileID: 1607961555, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.23333333
value: {fileID: -2004317814, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.26666668
value: {fileID: -1112803850, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.3
value: {fileID: 1365610583, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.33333334
value: {fileID: 532678314, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.36666667
value: {fileID: -2121275635, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.4
value: {fileID: -627404477, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.43333334
value: {fileID: 266738615, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.46666667
value: {fileID: 1949553887, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.5
value: {fileID: 838312546, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.53333336
value: {fileID: -1672482298, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.56666666
value: {fileID: 1942478426, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.6
value: {fileID: -1711440152, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.6333333
value: {fileID: 149110574, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.6666667
value: {fileID: 707155314, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.7
value: {fileID: 1633370117, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.73333335
value: {fileID: -1725739569, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.76666665
value: {fileID: -1993146538, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.8
value: {fileID: -1126419074, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.8333333
value: {fileID: -155569751, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.8666667
value: {fileID: -1837712550, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.9
value: {fileID: -139197686, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.93333334
value: {fileID: -978546395, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 0.96666664
value: {fileID: 404084961, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1
value: {fileID: -807765816, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.0333333
value: {fileID: -605922950, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.0666667
value: {fileID: 2001239777, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.1
value: {fileID: 1655593012, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.1333333
value: {fileID: -1738512165, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.1666666
value: {fileID: -1137739122, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.2
value: {fileID: 1285172798, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.2333333
value: {fileID: -1896649918, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.2666667
value: {fileID: 1806292744, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.3
value: {fileID: -1160886992, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.3333334
value: {fileID: 496162698, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.3666667
value: {fileID: -153119636, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.4
value: {fileID: -982091652, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.4333333
value: {fileID: -470044154, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.4666667
value: {fileID: -973132521, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.5
value: {fileID: 633286941, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.5333333
value: {fileID: -1891868464, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.5666667
value: {fileID: -1689168775, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.6
value: {fileID: -55477105, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.6333333
value: {fileID: -1987357179, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.6666666
value: {fileID: 589807064, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.7
value: {fileID: 1949537853, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.7333333
value: {fileID: 127442646, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.7666667
value: {fileID: -1098328029, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.8
value: {fileID: 1429341976, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.8333334
value: {fileID: 239290956, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- time: 1.8666667
value: {fileID: -1528274889, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 1.9
value: {fileID: -1929627303, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 1.9333333
value: {fileID: 1523615096, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 1.9666667
value: {fileID: 1799079079, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2
value: {fileID: -1038491181, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.0333333
value: {fileID: 1206872090, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.0666666
value: {fileID: 1820647834, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.1
value: {fileID: 2010811095, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.1333334
value: {fileID: -1103412090, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.1666667
value: {fileID: -2117110224, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.2
value: {fileID: 361146204, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.2333333
value: {fileID: -2065035201, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.2666667
value: {fileID: -832214342, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.3
value: {fileID: 1510424321, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.3333333
value: {fileID: 1613224031, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- time: 2.3666666
value: {fileID: 1882383981, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: 263105632, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1812988591, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1090178663, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 435788048, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1131685978, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1731845327, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1607961555, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -2004317814, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1112803850, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1365610583, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 532678314, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -2121275635, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -627404477, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 266738615, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1949553887, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 838312546, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1672482298, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1942478426, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1711440152, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 149110574, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 707155314, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1633370117, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1725739569, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1993146538, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1126419074, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -155569751, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1837712550, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -139197686, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -978546395, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 404084961, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -807765816, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -605922950, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 2001239777, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1655593012, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1738512165, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1137739122, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1285172798, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1896649918, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1806292744, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1160886992, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 496162698, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -153119636, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -982091652, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -470044154, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -973132521, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 633286941, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1891868464, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1689168775, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -55477105, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1987357179, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 589807064, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1949537853, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 127442646, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1098328029, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 1429341976, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: 239290956, guid: c88473e983731e34ab9b788192786c8f, type: 3}
- {fileID: -1528274889, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: -1929627303, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1523615096, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1799079079, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: -1038491181, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1206872090, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1820647834, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 2010811095, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: -1103412090, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: -2117110224, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 361146204, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: -2065035201, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: -832214342, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1510424321, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1613224031, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
- {fileID: 1882383981, guid: 9a28c23c27c7fb345a5a588d28dd3997, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 2.4
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path:
classID: 4
script: {fileID: 0}
flags: 0
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events:
- time: 2.4
functionName: OnStationaryAnimationComplete
data:
objectReferenceParameter: {fileID: 0}
floatParameter: 0
intParameter: 0
messageOptions: 0

View File

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

View File

@@ -1,75 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_PulverIdle
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves: []
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -46950309, guid: 8af0253099943e84e960c630bafbbdb4, type: 3}
- time: 1
value: {fileID: -46950309, guid: 8af0253099943e84e960c630bafbbdb4, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -46950309, guid: 8af0253099943e84e960c630bafbbdb4, type: 3}
- {fileID: -46950309, guid: 8af0253099943e84e960c630bafbbdb4, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 1.0166667
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves: []
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,160 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_PulverIdle_Carry_Back
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0.6, y: 0.6, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -1669662453, guid: ffd5441cd6cd1514bb85036a3722155a, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 60
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -1669662453, guid: ffd5441cd6cd1514bb85036a3722155a, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.016666668
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path:
classID: 4
script: {fileID: 0}
flags: 0
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

View File

@@ -0,0 +1,160 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_PulverIdle_Carry_Front
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0.6, y: 0.6, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_FloatCurves: []
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -1487224492, guid: 74e915b2f64b73347b3b8f6db62ef1fb, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -1487224492, guid: 74e915b2f64b73347b3b8f6db62ef1fb, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.033333335
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path:
classID: 4
script: {fileID: 0}
flags: 0
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 409f0b362de9c03448284cac42f65571
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 7400000
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,211 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!74 &7400000
AnimationClip:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: ANIM_PulverIdle_Carry_Left
serializedVersion: 7
m_Legacy: 0
m_Compressed: 0
m_UseHighQualityCurve: 1
m_RotationCurves: []
m_CompressedRotationCurves: []
m_EulerCurves: []
m_PositionCurves: []
m_ScaleCurves:
- curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: {x: 0.6, y: 0.6, z: 1}
inSlope: {x: 0, y: 0, z: 0}
outSlope: {x: 0, y: 0, z: 0}
tangentMode: 0
weightedMode: 0
inWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
outWeight: {x: 0.33333334, y: 0.33333334, z: 0.33333334}
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
path:
m_FloatCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_FlipX
path:
classID: 212
script: {fileID: 0}
flags: 0
m_PPtrCurves:
- serializedVersion: 2
curve:
- time: 0
value: {fileID: -1709434146, guid: 74e915b2f64b73347b3b8f6db62ef1fb, type: 3}
attribute: m_Sprite
path:
classID: 212
script: {fileID: 0}
flags: 2
m_SampleRate: 30
m_WrapMode: 0
m_Bounds:
m_Center: {x: 0, y: 0, z: 0}
m_Extent: {x: 0, y: 0, z: 0}
m_ClipBindingConstant:
genericBindings:
- serializedVersion: 2
path: 0
attribute: 555744692
script: {fileID: 0}
typeID: 212
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 0
script: {fileID: 0}
typeID: 212
customType: 23
isPPtrCurve: 1
isIntCurve: 0
isSerializeReferenceCurve: 0
- serializedVersion: 2
path: 0
attribute: 3
script: {fileID: 0}
typeID: 4
customType: 0
isPPtrCurve: 0
isIntCurve: 0
isSerializeReferenceCurve: 0
pptrCurveMapping:
- {fileID: -1709434146, guid: 74e915b2f64b73347b3b8f6db62ef1fb, type: 3}
m_AnimationClipSettings:
serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0}
m_AdditiveReferencePoseTime: 0
m_StartTime: 0
m_StopTime: 0.033333335
m_OrientationOffsetY: 0
m_Level: 0
m_CycleOffset: 0
m_HasAdditiveReferencePose: 0
m_LoopTime: 1
m_LoopBlend: 0
m_LoopBlendOrientation: 0
m_LoopBlendPositionY: 0
m_LoopBlendPositionXZ: 0
m_KeepOriginalOrientation: 0
m_KeepOriginalPositionY: 1
m_KeepOriginalPositionXZ: 0
m_HeightFromFeet: 0
m_Mirror: 0
m_EditorCurves:
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.x
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 0.6
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.y
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: 0
outSlope: 0
tangentMode: 136
weightedMode: 0
inWeight: 0.33333334
outWeight: 0.33333334
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_LocalScale.z
path:
classID: 4
script: {fileID: 0}
flags: 0
- serializedVersion: 2
curve:
serializedVersion: 2
m_Curve:
- serializedVersion: 3
time: 0
value: 1
inSlope: Infinity
outSlope: Infinity
tangentMode: 103
weightedMode: 0
inWeight: 0
outWeight: 0
m_PreInfinity: 2
m_PostInfinity: 2
m_RotationOrder: 4
attribute: m_FlipX
path:
classID: 212
script: {fileID: 0}
flags: 0
m_EulerEditorCurves: []
m_HasGenericRootTransform: 0
m_HasMotionFloatCurves: 0
m_Events: []

View File

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

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