mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
This commit is contained in:
parent
cabe0439e5
commit
64d1ff8da5
381 changed files with 363 additions and 8758 deletions
|
@ -1,8 +1,8 @@
|
|||
name: Build MacOS
|
||||
name: Build Heaven Studio
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "release_1" ]
|
||||
branches: [ "master", "release_1", "actions_rework" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -12,16 +12,18 @@ jobs:
|
|||
fail-fast: false
|
||||
matrix:
|
||||
targetPlatform:
|
||||
- StandaloneWindows64
|
||||
- StandaloneOSX
|
||||
- StandaloneLinux64
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
# with:
|
||||
# lfs: true
|
||||
|
||||
# Cache resued Library files to speed up compilation
|
||||
- uses: actions/cache@v2
|
||||
# Cache reused Library files to speed up compilation
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: Library
|
||||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||
|
@ -36,7 +38,6 @@ jobs:
|
|||
# with:
|
||||
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Build project with Unity
|
||||
- name: Build project
|
||||
uses: game-ci/unity-builder@v2
|
||||
env:
|
||||
|
@ -47,14 +48,28 @@ jobs:
|
|||
unityVersion: auto
|
||||
buildName: Heaven Studio
|
||||
buildsPath: build
|
||||
buildMethod: UnityBuilderAction.BuildScript.Build
|
||||
targetPlatform: ${{ matrix.targetPlatform }}
|
||||
|
||||
# Required on Mac/Linux to keep executable permissions
|
||||
- name: Tar files
|
||||
if: matrix.targetPlatform != 'StandaloneWindows64'
|
||||
run: tar -cvf ${{ matrix.targetPlatform }}.tar ./build/${{ matrix.targetPlatform }}
|
||||
|
||||
- name: Upload Artifact
|
||||
- name: Upload Artifact (Windows)
|
||||
if: matrix.targetPlatform == 'StandaloneWindows64'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.targetPlatform }}-build
|
||||
path: ./build/${{ matrix.targetPlatform }}/
|
||||
|
||||
- name: Upload Artifact (macOS / Linux)
|
||||
if: matrix.targetPlatform != 'StandaloneWindows64'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.targetPlatform }}-build
|
||||
path: ${{ matrix.targetPlatform }}.tar
|
||||
|
||||
- name: debug thing
|
||||
run: tree .
|
||||
|
56
.github/workflows/linux.yml
vendored
56
.github/workflows/linux.yml
vendored
|
@ -1,56 +0,0 @@
|
|||
name: Build Linux
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "release_1" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build for ${{ matrix.targetPlatform }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
targetPlatform:
|
||||
- StandaloneLinux64
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
# with:
|
||||
# lfs: true
|
||||
|
||||
# Cache resued Library files to speed up compilation
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: Library
|
||||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||
restore-keys: |
|
||||
Library-
|
||||
|
||||
# Test (No tests yet, leaving this here for future.)
|
||||
# - name: Run tests
|
||||
# uses: game-ci/unity-test-runner@v2
|
||||
# env:
|
||||
# UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
||||
# with:
|
||||
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Build project with Unity
|
||||
- name: Build project
|
||||
uses: game-ci/unity-builder@v2
|
||||
env:
|
||||
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
||||
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
|
||||
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
|
||||
with:
|
||||
unityVersion: auto
|
||||
buildName: Heaven Studio
|
||||
buildsPath: build
|
||||
targetPlatform: ${{ matrix.targetPlatform }}
|
||||
|
||||
# Output
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ matrix.targetPlatform }}-build
|
||||
path: ./build/${{ matrix.targetPlatform }}/
|
56
.github/workflows/windows.yml
vendored
56
.github/workflows/windows.yml
vendored
|
@ -1,56 +0,0 @@
|
|||
name: Build Windows
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "master", "release_1" ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Build for ${{ matrix.targetPlatform }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
targetPlatform:
|
||||
- StandaloneWindows64
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v2
|
||||
# with:
|
||||
# lfs: true
|
||||
|
||||
# Cache resued Library files to speed up compilation
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: Library
|
||||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||
restore-keys: |
|
||||
Library-
|
||||
|
||||
# Test (No tests yet, leaving this here for future.)
|
||||
# - name: Run tests
|
||||
# uses: game-ci/unity-test-runner@v2
|
||||
# env:
|
||||
# UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
||||
# with:
|
||||
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Build project with Unity
|
||||
- name: Build project
|
||||
uses: game-ci/unity-builder@v2
|
||||
env:
|
||||
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
||||
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
|
||||
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
|
||||
with:
|
||||
unityVersion: auto
|
||||
buildName: Heaven Studio
|
||||
buildsPath: build
|
||||
targetPlatform: ${{ matrix.targetPlatform }}
|
||||
|
||||
# Output
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ matrix.targetPlatform }}-build
|
||||
path: ./build/${{ matrix.targetPlatform }}/
|
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,8 +1,3 @@
|
|||
# TEMPORARY ------------------------------
|
||||
/Assets/Test
|
||||
/Assets/Resources/Music/Unconfirmed
|
||||
# ----------------------------------------
|
||||
|
||||
/[Ll]ibrary/
|
||||
/[Tt]emp/
|
||||
/[Oo]bj/
|
||||
|
@ -84,3 +79,7 @@ crashlytics-build.properties
|
|||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# Built AssetBundles
|
||||
/[Aa]ssets/[Ss]treamingAssets/*/*
|
||||
/[Aa]ssets/[Ss]treamingAssets/*.manifest
|
Binary file not shown.
|
@ -1,52 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 2315884584
|
||||
AssetBundleManifest:
|
||||
AssetBundleInfos:
|
||||
Info_0:
|
||||
Name: ntridol/common
|
||||
Dependencies: {}
|
||||
Info_1:
|
||||
Name: karate/common
|
||||
Dependencies: {}
|
||||
Info_2:
|
||||
Name: ntrsamurai/common
|
||||
Dependencies: {}
|
||||
Info_3:
|
||||
Name: ctrpillow/common
|
||||
Dependencies: {}
|
||||
Info_4:
|
||||
Name: ntrcoin/common
|
||||
Dependencies: {}
|
||||
Info_5:
|
||||
Name: ctrpillow/locale.ko
|
||||
Dependencies: {}
|
||||
Info_6:
|
||||
Name: karate/locale.en
|
||||
Dependencies: {}
|
||||
Info_7:
|
||||
Name: ctrpillow/locale.jp
|
||||
Dependencies: {}
|
||||
Info_8:
|
||||
Name: ntridol/locale.jp
|
||||
Dependencies: {}
|
||||
Info_9:
|
||||
Name: ctrpillow/locale.en
|
||||
Dependencies: {}
|
||||
Info_10:
|
||||
Name: agbmarcher/common
|
||||
Dependencies: {}
|
||||
Info_11:
|
||||
Name: ctrcatchy/common
|
||||
Dependencies: {}
|
||||
Info_12:
|
||||
Name: agbmarcher/locale.en
|
||||
Dependencies: {}
|
||||
Info_13:
|
||||
Name: agbmarcher/locale.jp
|
||||
Dependencies: {}
|
||||
Info_14:
|
||||
Name: ntrdj/common
|
||||
Dependencies: {}
|
||||
Info_15:
|
||||
Name: ntrsamurai/locale.en
|
||||
Dependencies: {}
|
Binary file not shown.
|
@ -1,23 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 4290178227
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: f829a501369398226ae8e54d4ebdcb78
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/marchingOrders/halt2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/marchStart.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/turnAction.wav
|
||||
- Assets/Resources/Sfx/games/marchingOrders/faceTurnOther.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/turnActionPlayer.wav
|
||||
- Assets/Resources/Sfx/games/marchingOrders/stepOther.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/stepPlayer.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,33 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 674996244
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: e91d85cc9667dd8011e284f2673bbde5
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/attention1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/attention2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn3fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn2fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/march1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/attention3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn1fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn1fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn2fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn3fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/halt1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn2.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,34 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 2882341362
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 21a9497f492f5c798829110c19c1ea64
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn3Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/march2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/march1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/attention1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/march3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/halt1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/attention2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn2Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn2Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn1Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn3Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn1Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn3.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,84 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 3784579313
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: f383d111543007cf1ae0432356438af5
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: d2623ac67fb3abdc3163e95f50112f30
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 54ed8f81614b9564b99577f03cb58602, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 066a41e004f415b4eb74d5e61a2aadbe, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 5b9d796f35f4e624089f267d51df9223, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: b0cca3244f403c24f819a870f31cdc29, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
- Class: 221
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Games.Minigame/Eligible
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/catchyTune/whiff.wav
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/idle.anim
|
||||
- Assets/Resources/Sfx/games/catchyTune/fruitThrough.wav
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/stopsmile.anim
|
||||
- Assets/Resources/Sfx/games/catchyTune/rightPineapple.ogg
|
||||
- Assets/Resources/Games/catchyTune.prefab
|
||||
- Assets/Resources/Sfx/games/catchyTune/missTest.wav
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/ct2.png
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/sky.png
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/miss pineapple.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/catch orange.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/catch pineapple.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Fruit/pineapple bounce.anim
|
||||
- Assets/Resources/Sfx/games/catchyTune/barely left.wav
|
||||
- Assets/Resources/Sfx/games/catchyTune/leftPineappleCatch.ogg
|
||||
- Assets/Resources/Sfx/games/catchyTune/rightOrangeCatch.ogg
|
||||
- Assets/Resources/Sfx/games/catchyTune/rightPineappleCatch.ogg
|
||||
- Assets/Resources/Sfx/games/catchyTune/leftOrangeCatch.ogg
|
||||
- Assets/Resources/Sfx/games/catchyTune/rightOrange.ogg
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/Alalin and plalin.controller
|
||||
- Assets/Resources/Sfx/games/catchyTune/leftOrange.ogg
|
||||
- Assets/Resources/Sfx/games/catchyTune/barely right.wav
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/still.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/bop.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/smile.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/miss.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Characters/whiff.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Fruit/orange bounce.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/ct1.png
|
||||
- Assets/Resources/Sfx/games/catchyTune/leftPineapple.ogg
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Fruit/fruit barely.anim
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Fruit/pineapple.overrideController
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/Animations/Fruit/orange.controller
|
||||
- Assets/Resources/Sprites/Games/CatchyTune/sprites.png
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,115 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 2761047199
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 15f79de095b76eba0dfcf65a85643447
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: f7c97b63c72a16f96d1364bd2603929e
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 001bfcff024077442be36970f043aa29, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: eb277585c35c35b4782c158384375c49, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 2d6fefe3a12017248ad1d7d18e5d11b2, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 210
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/pillow_obj.png
|
||||
- Assets/Resources/Games/pajamaParty.prefab
|
||||
- Assets/Resources/Sfx/games/pajamaParty/jumpJust.wav
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoPickUp.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/MakoPillow/ThrowOut.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/MakoPillow/Mako_Pillow.controller
|
||||
- Assets/Resources/Sfx/games/pajamaParty/siesta2.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/five4.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/charge.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoReadySleep.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/BG/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoCatchNg.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/pillow_half_half.png
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyBeat.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/siesta1.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/pillow_objMapped.mat
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeySleep01.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/throw2.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoAwake.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeySleep02.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoCatch.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoLand.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/five3.ogg
|
||||
- Assets/Resources/Prefabs/Games/PajamaParty/Monkey.prefab
|
||||
- Assets/Resources/Sfx/games/pajamaParty/throw1.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/three1.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoReady.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/siesta3.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoThrow.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoSleep00.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/five1.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyThrow.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyJump02.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/siestaDone.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/throw3.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoThrowOut.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyJump.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/pillow_obj02.png
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoJump.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoSleepNg.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoThrough.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyJump03.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyReady.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/five2.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Bed/NoPose.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/five5.wav
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyAwake.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoSleep01.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Bed/Bed.controller
|
||||
- Assets/Resources/Sfx/games/pajamaParty/three3.wav
|
||||
- Assets/Resources/Sfx/games/pajamaParty/three2.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/Mako.controller
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyReadySleep.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/siestaBad.wav
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoReadySleep01.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoSleepThrough.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/MakoPillow/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoSleepJust.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/BG/Bg.controller
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/Monkey.controller
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoSleepOut.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Bed/BedImpact.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/BG/SlideOpen.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeySleep00.anim
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Monkey/MonkeyLand.anim
|
||||
- Assets/Resources/Sfx/games/pajamaParty/siesta4.ogg
|
||||
- Assets/Resources/Sprites/Games/PajamaParty/Anime/Mako/MakoBeat.anim
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,21 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 3002949337
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: e8f2528dabecc802755f30fef2507063
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/pajamaParty/en/throw5.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/en/catch0.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/en/throw4a.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/en/catch1.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/en/throw4.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,21 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 856304629
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 993d17828cc8c2ead270259d71223ae7
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/pajamaParty/jp/throw5.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/jp/catch1.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/jp/catch0.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/jp/throw4a.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/jp/throw4.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,21 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 71553762
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: a6ede3d4f682835b36b3ca9fb6cdcb00
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/pajamaParty/ko/catch0.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/ko/throw4.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/ko/throw5.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/ko/throw4a.ogg
|
||||
- Assets/Resources/Sfx/games/pajamaParty/ko/catch1.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,211 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 3687501793
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 7037f57831ccff4242343ba21883aced
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 98a6d4eb4172ec02b55d5f14afb2d5a8
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 43
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 3f1678e3fe1b7c94f9a1558cfd247853, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 066a41e004f415b4eb74d5e61a2aadbe, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: e6ef00cb3bdcfd647bd634066ce4107d, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 9fe0aa75ca1a42347aea0b0b14b024a4, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: d73c427be556896499214ab4666ff3b3, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: b0cca3244f403c24f819a870f31cdc29, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: af41fb607b88d8644b683298f8fcaf54, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 182
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 210
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
- Class: 222
|
||||
Script: {instanceID: 0}
|
||||
- Class: 223
|
||||
Script: {instanceID: 0}
|
||||
- Class: 224
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Games.Minigame/Eligible
|
||||
- AssemblyName: UnityEngine.CoreModule
|
||||
ClassName: UnityEngine.Events.PersistentCallGroup
|
||||
- AssemblyName: UnityEngine.CoreModule
|
||||
ClassName: UnityEngine.RectOffset
|
||||
- AssemblyName: UnityEngine.UI
|
||||
ClassName: UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_rings_2.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/krt_rock.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/fire.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/ToReady.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/bg/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/bg/BGeffect.controller
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item00.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item03.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/barrelWoodRecolorable.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item09.anim
|
||||
- Assets/Resources/Sfx/games/karateman/gogoSwitch.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/nori_ng.wav
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/potStar.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/kickFragment.png
|
||||
- Assets/Resources/Sfx/games/karateman/swingKick.wav
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/barrelWood.png
|
||||
- Assets/Resources/Sfx/games/karateman/gogo.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/offbeatLightbulbOut.wav
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_sunburst_1.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/JabNoNuri.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_rings_1.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/ManCharge.anim
|
||||
- Assets/Resources/Sfx/games/karateman/tacobell.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word00.anim
|
||||
- Assets/Resources/Sfx/games/karateman/swingNoHit_alt.wav
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_word.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/krt_kick.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/barrelPartsRecolorable01.png
|
||||
- Assets/Resources/Sfx/games/karateman/swingNoHit.wav
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face08.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face06.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/krt_bombfire.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/krt_bombimpact.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/ManKick.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/ItemObject.controller
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/LowKick.anim
|
||||
- Assets/Resources/Sfx/games/karateman/hitNoNori.wav
|
||||
- Assets/Resources/Sfx/games/karateman/potHit.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/overlay/NoriFull.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/overlay/NoriNone.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Jab.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face04.anim
|
||||
- Assets/Resources/Sfx/games/karateman/rockHit.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/punchKickHit1.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Beat.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face03.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/karateman_bulbhit_fx_0.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/bg/Sunburst.anim
|
||||
- Assets/Resources/Sfx/games/karateman/comboHit2.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/LowJab.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_cellshader.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word04.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_sunburst_2.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_nonurijab.mat
|
||||
- Assets/Resources/Sfx/games/karateman/rockHit_fullNori.wav
|
||||
- Assets/Resources/Sfx/games/karateman/lightbulbOut.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word06.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item08.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_gradient.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/impact.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/barrelParts00.png
|
||||
- Assets/Resources/Sfx/games/karateman/bombBreak.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/barrelBreak.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/barrelPartsRecolorable00.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/kickHit.png
|
||||
- Assets/Resources/Games/karateman.prefab
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word03.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item05.anim
|
||||
- Assets/Resources/Sfx/games/karateman/comboMiss.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item99.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face05.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_overlaydeco00.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/NoPose.anim
|
||||
- Assets/Resources/Sfx/games/karateman/comboHit1.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/LowKickMiss.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word05.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/overlay/NoriHeart.controller
|
||||
- Assets/Resources/Sfx/games/karateman/karate_through.wav
|
||||
- Assets/Resources/Sfx/games/karateman/bombHit.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_main.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word.controller
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item07.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face02.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_radial.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/karateman_bulbhit_fx_1.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_norimapping.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/UpperCut.anim
|
||||
- Assets/Resources/Sfx/games/karateman/potHit_lowNori.wav
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/HitMark.controller
|
||||
- Assets/Resources/Sfx/games/karateman/lightbulbHit.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/krt_pot.mat
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/HitMark.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/rockEmitter.png
|
||||
- Assets/Resources/Sfx/games/karateman/objectOut.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/barrelOutCombos.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item04.anim
|
||||
- Assets/Resources/Sfx/games/karateman/comboHit3.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karate_bg_bloody.png
|
||||
- Assets/Resources/Sfx/games/karateman/cookingPot.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face01.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_overlays.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word01.anim
|
||||
- Assets/Resources/Sfx/games/karateman/barrelOutKicks.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/bombKick.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item01.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/word/Word02.anim
|
||||
- Assets/Resources/Sfx/games/karateman/alienHit.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/bg/Rings.anim
|
||||
- Assets/Resources/Sfx/games/karateman/comboHit4.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/KarateManHead.controller
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item06.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/KarateMan.controller
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/barrelParts01.png
|
||||
- Assets/Resources/Sfx/games/karateman/punchKickHit2.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/effect/other.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/BackHand.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Straight.anim
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face07.anim
|
||||
- Assets/Resources/Sfx/games/karateman/lightbulbBreak.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/item/Item02.anim
|
||||
- Assets/Resources/Sfx/games/karateman/nori_through.wav
|
||||
- Assets/Resources/Sfx/games/karateman/offbeatObjectOut.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/nori_just.wav
|
||||
- Assets/Resources/Sfx/games/karateman/soccerHit.ogg
|
||||
- Assets/Resources/Sprites/Games/KarateMan/karateman_bulb_light.png
|
||||
- Assets/Resources/Sprites/Games/KarateMan/anime/karateman/Head/Face00.anim
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,33 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 424929736
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 20c0bb0f144ef793bda24fdef430d30d
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchKick4.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/one.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchy2.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/threeAlt.wav
|
||||
- Assets/Resources/Sfx/games/karateman/en/hitAlt.wav
|
||||
- Assets/Resources/Sfx/games/karateman/en/two.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchKick3.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/four.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchKick1.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/pow.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchy3.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/ko.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchy1.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchy4.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/hit.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/three.ogg
|
||||
- Assets/Resources/Sfx/games/karateman/en/punchKick2.ogg
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,52 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1508264833
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 2a9e68c23fda6af861ae7c2eae7f8ff9
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 139f759006457bf43e15a8517f8ee5c0
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 5e3903a882e6af341896ffb744aae583, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/CoinToss/Animations/Catch_success.anim
|
||||
- Assets/Resources/Sfx/games/coinToss/women_you.wav
|
||||
- Assets/Resources/Sprites/Games/CoinToss/Animations/Throw.anim
|
||||
- Assets/Resources/Sprites/Games/CoinToss/Animations/Idle.anim
|
||||
- Assets/Resources/Games/coinToss.prefab
|
||||
- Assets/Resources/Sfx/games/coinToss/throw.wav
|
||||
- Assets/Resources/Sprites/Games/CoinToss/Animations/Pickup.anim
|
||||
- Assets/Resources/Sfx/games/coinToss/catch.wav
|
||||
- Assets/Resources/Sprites/Games/CoinToss/Animations/Catch_empty.anim
|
||||
- Assets/Resources/Sprites/Games/CoinToss/sprsh_cointoss.png
|
||||
- Assets/Resources/Sfx/games/coinToss/women_thank.wav
|
||||
- Assets/Resources/Sprites/Games/CoinToss/Animations/CoinTossController.controller
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,132 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 2164780624
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 95bc7c911baca14e45ca4237dc64ba22
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: b0396ee8cf677796daf23b65e38d1ad2
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 54588eb7ee0680643aeaf61dcf609903, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 23185f6d213e9184fae5e6841b42c226, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 36f587267a500e643bcbf5b9c04bb1b5, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Games.Minigame/Eligible
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Boy/Boy.controller
|
||||
- Assets/Resources/Sfx/games/djSchool/breakCmonLoud2.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeahAlt1.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/checkItOut2.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/IdleBop.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Turntable/Student_Turntable_Swipe.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Student/Hold.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/Scratcho2.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHey1.ogg
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Student/Idle.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/BreakCmon.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/DJ Yellow.controller
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/Scratcho.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/slam.png
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeah1.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/andStop2.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/recordStop.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/breakCmon2.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyLoud4.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/breakCmonLoud1.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeahAlt.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/table.png
|
||||
- Assets/Resources/Sfx/games/djSchool/breakCmonAlt2.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/letsGo1.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/heyAlt.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/FlashInverse.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyAlt1.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyAlt3.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/yay.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/background.png
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/flashInverse.controller
|
||||
- Assets/Resources/Sprites/Games/DJSchool/turntable.png
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyAlt4.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/ooh.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/Hold.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/cheer.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Student/HoldBop.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyLoud1.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/letsGo2.ogg
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Student/IdleBop.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/andStop1.ogg
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Boy/IdleBop2.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/Hey.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/checkItOut3.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/checkItOut.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/checkItOut1.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/djYellow/djYellow_Torso.png
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHey3.ogg
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Boy/Idle.anim
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Student/Hold.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeahAlt3.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/djYellow/djYellow_Heads.png
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeah.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/IdleBop2.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyLoud3.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/breakCmon1.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/flash.controller
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Student/Student.controller
|
||||
- Assets/Resources/Sfx/games/djSchool/oohAlt.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/breakCmonAlt1.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Turntable/TurnTable.controller
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Student/HoldBop.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/student.png
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeah2.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Flash.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/heyLoud.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyAlt2.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHey4.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/recordSwipe.ogg
|
||||
- Assets/Resources/Games/djSchool.prefab
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHey2.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Turntable/TurnTable_Player.controller
|
||||
- Assets/Resources/Sprites/Games/DJSchool/flash.png
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/Idle.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/letsGo.ogg
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Student/Swipe.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/ohYeahAlt2.ogg
|
||||
- Assets/Resources/Sprites/Games/DoubleDate/Animations/test files/Student/Student.controller
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/DJ Yellow/HoldBop.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/scratchoHeyLoud2.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Student/Idle.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Student/Swipe.anim
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Turntable/DJYellow_Turntable.anim
|
||||
- Assets/Resources/Sfx/games/djSchool/oohLoud.ogg
|
||||
- Assets/Resources/Sfx/games/djSchool/hey.ogg
|
||||
- Assets/Resources/Sprites/Games/DJSchool/Animations/Student/IdleBop.anim
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,128 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 3995906146
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 7d93360d0e4115a84e52a5dc1f1906a8
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 6c542f6873f7e3067be67f888d87c947
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 43
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: c8bf5d56f80c8814489e7b35cc9421ff, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: f77451de3e6820d46a0706da521031a6, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 9446bd86cfdf08f4685a84d3c5348781, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 210
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Games.Minigame/Eligible
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Util.SoundSequence
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Util.SoundSequence/SequenceClip
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Util.SoundSequence/SequenceKeyValue
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolBigCall1Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/Head/FanHead.controller
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolPeaceArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Stage/Background.controller
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanJump.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Materials/NtrIdol_Idol.mat
|
||||
- Assets/Resources/Sprites/Games/FanClub/Materials/idol_wink_circle.mat
|
||||
- Assets/Resources/Sprites/Games/FanClub/idol_wink_star.png
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolLandArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/Head/FanFaceNormal.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/fanClub_DVLight.png
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolDabArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Stage/Bg_Light.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/fanClub_DVParts.png
|
||||
- Assets/Resources/Games/fanClub.prefab
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanPrepare.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolSquat1Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanCharge.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolWink1.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/NoPoseArrange.anim
|
||||
- Assets/Resources/Prefabs/Games/FanClub/Fan.prefab
|
||||
- Assets/Resources/Sprites/Games/FanClub/Materials/NtrIdol_Spectator.mat
|
||||
- Assets/Resources/Sfx/games/fanClub/play_jump.wav
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolCrap.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanBigReady.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanClap.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Materials/idol_wink_star.mat
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolWink0.anim
|
||||
- Assets/Resources/Sfx/games/fanClub/crap_impact.wav
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolWink1Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/Head/FanFaceAngry.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolLand.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanFree.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolPeaceNoSync.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolResponse.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolBigCall0.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolJumpArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolWink0Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanBeat.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolResponseArrange.anim
|
||||
- Assets/Resources/Sfx/games/fanClub/landing_impact.wav
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolSquat0.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/Fan.controller
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolCrapArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/idol_wink_circle.png
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolCall0.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolBeatArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolCall1Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolSquat1.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolBeat.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolCall1.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolJump.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arisa.controller
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolSquat0Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/FanClapCharge.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolCall0Arrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Fan/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolPeaceNoSyncArrange.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Stage/Bg.anim
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_dab.wav
|
||||
- Assets/Resources/Sprites/Games/FanClub/fanClub_IdolParts.png
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolBigCall1.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolDab.anim
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Arrange/IdolBigCall0Arrange.anim
|
||||
- Assets/Resources/Sfx/games/fanClub/play_clap.wav
|
||||
- Assets/Resources/Sprites/Games/FanClub/Animations/Arisa/Long/IdolPeace.anim
|
||||
- Assets/Resources/Sfx/games/fanClub/crowd_big_ready.wav
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,30 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1242000953
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: b5dc75cae061ba378961c9ce2792d694
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_ne_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_mo_fast_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/crowd_ne_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/crowd_hey_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/crowd_mo_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_hai_2_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/crowd_ka_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_hai_3_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_mo_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/crowd_hai_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_ne_fast_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_ka_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_hai_1_jp.wav
|
||||
- Assets/Resources/Sfx/games/fanClub/arisa_ka_fast_jp.wav
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,98 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1360256251
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: e5544d993f91389352c38d84d2b773bd
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: c6f2fa553316a4075c6f2b9622a36b58
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 066a41e004f415b4eb74d5e61a2aadbe, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 00eae865695fcff4e8ccadf976355847, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: ae0b3df22f9080c4cad91e4b72fe7105, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 91edf50b6967f864ca699d5f3dd0de5c, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: b0cca3244f403c24f819a870f31cdc29, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: bfdb7063344c23f42b3c36732758c247, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 210
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/holy_mackerel3.wav
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_just00.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Samurai/Slash.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Launcher/NoPose.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_just01.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/ntr_samurai_launcher.png
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Child/ChildWalk.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_in01.wav
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_launchThrough.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjFishDebris.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_launchBoard.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/Object.controller
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjDemonDebris02.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjFish.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjMelonDebris.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Samurai/Samurai.controller
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_catch.wav
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/holy_mackerel1.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjDemon.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/melon_dig.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/ntr_samurai_obj.png
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Launcher/UnStep.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjDemonDebris01.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Samurai/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/ntr_samurai_man.png
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Samurai/StepSeathe.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_ng.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Child/NoPose.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Launcher/Launch.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Child/Child.controller
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Samurai/Beat.anim
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Samurai/Step.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/holy_mackerel2.wav
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_in00.wav
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_launchImpact.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Object/ObjMelon.anim
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_scoreMany.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Child/ChildBeat.anim
|
||||
- Assets/Resources/Games/samuraiSliceNtr.prefab
|
||||
- Assets/Resources/Sfx/games/samuraiSliceNtr/ntrSamurai_through.wav
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/Anime/Launcher/SamuraiLauncher.controller
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/ntr_samurai_bg.png
|
||||
Dependencies: []
|
Binary file not shown.
|
@ -1,19 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1346118794
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: a94c1f8bb70a7943cfa79f24ff70b48d
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 4df8c69f2c8a6ad9e3cbf82bb83e4dc3
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/SamuraiSliceNtr/ntr_samurai_speedUp.png
|
||||
Dependencies: []
|
276
Assets/Editor/BuildScript.cs
Normal file
276
Assets/Editor/BuildScript.cs
Normal file
|
@ -0,0 +1,276 @@
|
|||
using System.IO;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEditor;
|
||||
using UnityEditor.Build;
|
||||
using UnityEditor.Build.Reporting;
|
||||
using UnityEngine;
|
||||
|
||||
namespace UnityBuilderAction
|
||||
{
|
||||
public static class BuildScript
|
||||
{
|
||||
private static readonly string Eol = Environment.NewLine;
|
||||
|
||||
private static readonly string[] Secrets =
|
||||
{"androidKeystorePass", "androidKeyaliasName", "androidKeyaliasPass"};
|
||||
|
||||
[MenuItem("File/Build Windows")]
|
||||
public static void StartWindows()
|
||||
{
|
||||
string appName = PlayerSettings.productName;
|
||||
// Get filename.
|
||||
string path = EditorUtility.SaveFilePanel("Build out WINDOWS to...", "", appName, "exe");
|
||||
Build( BuildTarget.StandaloneWindows, 0, path);
|
||||
}
|
||||
|
||||
[MenuItem("File/Build Linux")]
|
||||
public static void StartLinux()
|
||||
{
|
||||
string appName = PlayerSettings.productName;
|
||||
// Get filename.
|
||||
string path = EditorUtility.SaveFilePanel("Build out LINUX to...", "", appName, "");
|
||||
Build( BuildTarget.StandaloneLinux64, 0, path);
|
||||
}
|
||||
|
||||
[MenuItem("File/Build Mac")]
|
||||
public static void StartMac()
|
||||
{
|
||||
string appName = PlayerSettings.productName;
|
||||
// Get filename.
|
||||
string path = EditorUtility.SaveFilePanel("Build out MAC to...", "", appName, "app");
|
||||
Build( BuildTarget.StandaloneOSX, 0, path);
|
||||
}
|
||||
|
||||
public static void Build()
|
||||
{
|
||||
// Gather values from args
|
||||
Dictionary<string, string> options = GetValidatedOptions();
|
||||
|
||||
// Set version for this build
|
||||
PlayerSettings.bundleVersion = options["buildVersion"];
|
||||
PlayerSettings.macOS.buildNumber = options["buildVersion"];
|
||||
PlayerSettings.Android.bundleVersionCode = int.Parse(options["androidVersionCode"]);
|
||||
|
||||
// Apply build target
|
||||
var buildTarget = (BuildTarget) Enum.Parse(typeof(BuildTarget), options["buildTarget"]);
|
||||
switch (buildTarget)
|
||||
{
|
||||
case BuildTarget.Android:
|
||||
{
|
||||
EditorUserBuildSettings.buildAppBundle = options["customBuildPath"].EndsWith(".aab");
|
||||
if (options.TryGetValue("androidKeystoreName", out string keystoreName) &&
|
||||
!string.IsNullOrEmpty(keystoreName))
|
||||
{
|
||||
PlayerSettings.Android.useCustomKeystore = true;
|
||||
PlayerSettings.Android.keystoreName = keystoreName;
|
||||
}
|
||||
if (options.TryGetValue("androidKeystorePass", out string keystorePass) &&
|
||||
!string.IsNullOrEmpty(keystorePass))
|
||||
PlayerSettings.Android.keystorePass = keystorePass;
|
||||
if (options.TryGetValue("androidKeyaliasName", out string keyaliasName) &&
|
||||
!string.IsNullOrEmpty(keyaliasName))
|
||||
PlayerSettings.Android.keyaliasName = keyaliasName;
|
||||
if (options.TryGetValue("androidKeyaliasPass", out string keyaliasPass) &&
|
||||
!string.IsNullOrEmpty(keyaliasPass))
|
||||
PlayerSettings.Android.keyaliasPass = keyaliasPass;
|
||||
if (options.TryGetValue("androidTargetSdkVersion", out string androidTargetSdkVersion) &&
|
||||
!string.IsNullOrEmpty(androidTargetSdkVersion))
|
||||
{
|
||||
var targetSdkVersion = AndroidSdkVersions.AndroidApiLevelAuto;
|
||||
try
|
||||
{
|
||||
targetSdkVersion =
|
||||
(AndroidSdkVersions) Enum.Parse(typeof(AndroidSdkVersions), androidTargetSdkVersion);
|
||||
}
|
||||
catch
|
||||
{
|
||||
UnityEngine.Debug.Log("Failed to parse androidTargetSdkVersion! Fallback to AndroidApiLevelAuto");
|
||||
}
|
||||
|
||||
PlayerSettings.Android.targetSdkVersion = targetSdkVersion;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
case BuildTarget.StandaloneOSX:
|
||||
PlayerSettings.SetScriptingBackend(BuildTargetGroup.Standalone, ScriptingImplementation.Mono2x);
|
||||
break;
|
||||
}
|
||||
|
||||
// Determine subtarget
|
||||
int buildSubtarget = 0;
|
||||
#if UNITY_2021_2_OR_NEWER
|
||||
if (!options.TryGetValue("standaloneBuildSubtarget", out var subtargetValue) || !Enum.TryParse(subtargetValue, out StandaloneBuildSubtarget buildSubtargetValue)) {
|
||||
buildSubtargetValue = default;
|
||||
}
|
||||
buildSubtarget = (int) buildSubtargetValue;
|
||||
#endif
|
||||
|
||||
// Custom build
|
||||
Build(buildTarget, buildSubtarget, options["customBuildPath"]);
|
||||
}
|
||||
|
||||
private static Dictionary<string, string> GetValidatedOptions()
|
||||
{
|
||||
ParseCommandLineArguments(out Dictionary<string, string> validatedOptions);
|
||||
|
||||
if (!validatedOptions.TryGetValue("projectPath", out string _))
|
||||
{
|
||||
Console.WriteLine("Missing argument -projectPath");
|
||||
EditorApplication.Exit(110);
|
||||
}
|
||||
|
||||
if (!validatedOptions.TryGetValue("buildTarget", out string buildTarget))
|
||||
{
|
||||
Console.WriteLine("Missing argument -buildTarget");
|
||||
EditorApplication.Exit(120);
|
||||
}
|
||||
|
||||
if (!Enum.IsDefined(typeof(BuildTarget), buildTarget ?? string.Empty))
|
||||
{
|
||||
Console.WriteLine($"{buildTarget} is not a defined {nameof(BuildTarget)}");
|
||||
EditorApplication.Exit(121);
|
||||
}
|
||||
|
||||
if (!validatedOptions.TryGetValue("customBuildPath", out string _))
|
||||
{
|
||||
Console.WriteLine("Missing argument -customBuildPath");
|
||||
EditorApplication.Exit(130);
|
||||
}
|
||||
|
||||
const string defaultCustomBuildName = "TestBuild";
|
||||
if (!validatedOptions.TryGetValue("customBuildName", out string customBuildName))
|
||||
{
|
||||
Console.WriteLine($"Missing argument -customBuildName, defaulting to {defaultCustomBuildName}.");
|
||||
validatedOptions.Add("customBuildName", defaultCustomBuildName);
|
||||
}
|
||||
else if (customBuildName == "")
|
||||
{
|
||||
Console.WriteLine($"Invalid argument -customBuildName, defaulting to {defaultCustomBuildName}.");
|
||||
validatedOptions.Add("customBuildName", defaultCustomBuildName);
|
||||
}
|
||||
|
||||
return validatedOptions;
|
||||
}
|
||||
|
||||
private static void ParseCommandLineArguments(out Dictionary<string, string> providedArguments)
|
||||
{
|
||||
providedArguments = new Dictionary<string, string>();
|
||||
string[] args = Environment.GetCommandLineArgs();
|
||||
|
||||
Console.WriteLine(
|
||||
$"{Eol}" +
|
||||
$"###########################{Eol}" +
|
||||
$"# Parsing settings #{Eol}" +
|
||||
$"###########################{Eol}" +
|
||||
$"{Eol}"
|
||||
);
|
||||
|
||||
// Extract flags with optional values
|
||||
for (int current = 0, next = 1; current < args.Length; current++, next++)
|
||||
{
|
||||
// Parse flag
|
||||
bool isFlag = args[current].StartsWith("-");
|
||||
if (!isFlag) continue;
|
||||
string flag = args[current].TrimStart('-');
|
||||
|
||||
// Parse optional value
|
||||
bool flagHasValue = next < args.Length && !args[next].StartsWith("-");
|
||||
string value = flagHasValue ? args[next].TrimStart('-') : "";
|
||||
bool secret = Secrets.Contains(flag);
|
||||
string displayValue = secret ? "*HIDDEN*" : "\"" + value + "\"";
|
||||
|
||||
// Assign
|
||||
Console.WriteLine($"Found flag \"{flag}\" with value {displayValue}.");
|
||||
providedArguments.Add(flag, value);
|
||||
}
|
||||
}
|
||||
|
||||
private static void Build(BuildTarget buildTarget, int buildSubtarget, string filePath)
|
||||
{
|
||||
string appName = PlayerSettings.productName;
|
||||
string[] scenes = EditorBuildSettings.scenes.Where(scene => scene.enabled).Select(s => s.path).ToArray();
|
||||
|
||||
string dataPath = "";
|
||||
switch ( buildTarget ) {
|
||||
case BuildTarget.StandaloneWindows:
|
||||
case BuildTarget.StandaloneWindows64:
|
||||
dataPath = $"_Data/";
|
||||
break;
|
||||
case BuildTarget.StandaloneOSX:
|
||||
dataPath = $".app/Contents/";
|
||||
break;
|
||||
case BuildTarget.StandaloneLinux64:
|
||||
dataPath = $"_Data/";
|
||||
break;
|
||||
}
|
||||
|
||||
var buildPlayerOptions = new BuildPlayerOptions
|
||||
{
|
||||
scenes = scenes,
|
||||
target = buildTarget,
|
||||
// targetGroup = BuildPipeline.GetBuildTargetGroup(buildTarget),
|
||||
locationPathName = filePath,
|
||||
// options = UnityEditor.BuildOptions.Development
|
||||
#if UNITY_2021_2_OR_NEWER
|
||||
subtarget = buildSubtarget
|
||||
#endif
|
||||
};
|
||||
|
||||
string buildDirectory = filePath.Substring(0, filePath.LastIndexOf('/')) + "/";
|
||||
string assetBundleDirectory = buildDirectory + appName + dataPath + "StreamingAssets";
|
||||
if (!Directory.Exists(assetBundleDirectory))
|
||||
{
|
||||
Directory.CreateDirectory(assetBundleDirectory);
|
||||
}
|
||||
BuildPipeline.BuildAssetBundles(assetBundleDirectory, BuildAssetBundleOptions.ForceRebuildAssetBundle, buildTarget);
|
||||
|
||||
BuildSummary buildSummary = BuildPipeline.BuildPlayer(buildPlayerOptions).summary;
|
||||
ReportSummary(buildSummary);
|
||||
if (!Application.isEditor)
|
||||
ExitWithResult(buildSummary.result);
|
||||
}
|
||||
|
||||
private static void ReportSummary(BuildSummary summary)
|
||||
{
|
||||
Console.WriteLine(
|
||||
$"{Eol}" +
|
||||
$"###########################{Eol}" +
|
||||
$"# Build results #{Eol}" +
|
||||
$"###########################{Eol}" +
|
||||
$"{Eol}" +
|
||||
$"Duration: {summary.totalTime.ToString()}{Eol}" +
|
||||
$"Warnings: {summary.totalWarnings.ToString()}{Eol}" +
|
||||
$"Errors: {summary.totalErrors.ToString()}{Eol}" +
|
||||
$"Size: {summary.totalSize.ToString()} bytes{Eol}" +
|
||||
$"{Eol}"
|
||||
);
|
||||
}
|
||||
|
||||
private static void ExitWithResult(BuildResult result)
|
||||
{
|
||||
switch (result)
|
||||
{
|
||||
case BuildResult.Succeeded:
|
||||
Console.WriteLine("Build succeeded!");
|
||||
EditorApplication.Exit(0);
|
||||
break;
|
||||
case BuildResult.Failed:
|
||||
Console.WriteLine("Build failed!");
|
||||
EditorApplication.Exit(101);
|
||||
break;
|
||||
case BuildResult.Cancelled:
|
||||
Console.WriteLine("Build cancelled!");
|
||||
EditorApplication.Exit(102);
|
||||
break;
|
||||
case BuildResult.Unknown:
|
||||
default:
|
||||
Console.WriteLine("Build result is unknown!");
|
||||
EditorApplication.Exit(103);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
11
Assets/Editor/BuildScript.cs.meta
Normal file
11
Assets/Editor/BuildScript.cs.meta
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 886568923d51ab64bac132c52b554e2d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,6 +1,11 @@
|
|||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
using System.IO;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using UnityEditor;
|
||||
using UnityEditor.Build;
|
||||
using UnityEditor.Build.Reporting;
|
||||
using UnityEngine;
|
||||
|
||||
public class CreateAssetBundles
|
||||
{
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,8 @@
|
|||
using System;
|
||||
|
||||
public static class AppInfo {
|
||||
public const string Version = "0.0.976";
|
||||
public static readonly DateTime Date = new DateTime(2023, 06, 18, 18, 15, 53, 943, DateTimeKind.Utc);
|
||||
public const string Version = "0.0.981";
|
||||
public static readonly DateTime Date = new DateTime(2023, 06, 19, 03, 38, 42, 219, DateTimeKind.Utc);
|
||||
}
|
||||
|
||||
|
||||
|
@ -18,7 +18,7 @@ public class BuildNumberUpdater : UnityEditor.Build.IPreprocessBuild
|
|||
private const string AppInfoFileName = "AppInfo.cs";
|
||||
|
||||
public int callbackOrder {
|
||||
get { return 0; }
|
||||
get { return 1; }
|
||||
}
|
||||
|
||||
void UnityEditor.Build.IPreprocessBuild.OnPreprocessBuild(UnityEditor.BuildTarget target, string path) {
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 06e6e979954795a49824e8435a5298fc
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,219 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1335531345
|
||||
AssetBundleManifest:
|
||||
AssetBundleInfos:
|
||||
Info_0:
|
||||
Name: karate/common
|
||||
Dependencies: {}
|
||||
Info_1:
|
||||
Name: ntrsamurai/common
|
||||
Dependencies: {}
|
||||
Info_2:
|
||||
Name: agbmarcher/common
|
||||
Dependencies: {}
|
||||
Info_3:
|
||||
Name: ctrcatchy/common
|
||||
Dependencies: {}
|
||||
Info_4:
|
||||
Name: ntrdj/common
|
||||
Dependencies:
|
||||
Dependency_0: rvldate/common
|
||||
Info_5:
|
||||
Name: ctrpillow/locale.en
|
||||
Dependencies: {}
|
||||
Info_6:
|
||||
Name: rvlbooks/locale.en
|
||||
Dependencies: {}
|
||||
Info_7:
|
||||
Name: ntridol/locale.jp
|
||||
Dependencies: {}
|
||||
Info_8:
|
||||
Name: ctrpillow/common
|
||||
Dependencies: {}
|
||||
Info_9:
|
||||
Name: rvlbooks/common
|
||||
Dependencies: {}
|
||||
Info_10:
|
||||
Name: ntridol/common
|
||||
Dependencies: {}
|
||||
Info_11:
|
||||
Name: agbmarcher/locale.en
|
||||
Dependencies: {}
|
||||
Info_12:
|
||||
Name: karate/locale.en
|
||||
Dependencies: {}
|
||||
Info_13:
|
||||
Name: agbmarcher/locale.jp
|
||||
Dependencies: {}
|
||||
Info_14:
|
||||
Name: ctrpillow/locale.ko
|
||||
Dependencies: {}
|
||||
Info_15:
|
||||
Name: ctrpillow/locale.jp
|
||||
Dependencies: {}
|
||||
Info_16:
|
||||
Name: ntrcoin/common
|
||||
Dependencies: {}
|
||||
Info_17:
|
||||
Name: ntrsamurai/locale.en
|
||||
Dependencies: {}
|
||||
Info_18:
|
||||
Name: rvlbadminton/common
|
||||
Dependencies: {}
|
||||
Info_19:
|
||||
Name: agbghost/common
|
||||
Dependencies: {}
|
||||
Info_20:
|
||||
Name: agbclap/common
|
||||
Dependencies: {}
|
||||
Info_21:
|
||||
Name: ctrteppan/common
|
||||
Dependencies: {}
|
||||
Info_22:
|
||||
Name: rvldough/common
|
||||
Dependencies: {}
|
||||
Info_23:
|
||||
Name: rvlseesaw/common
|
||||
Dependencies: {}
|
||||
Info_24:
|
||||
Name: rvlfork/common
|
||||
Dependencies: {}
|
||||
Info_25:
|
||||
Name: mobtrick/common
|
||||
Dependencies: {}
|
||||
Info_26:
|
||||
Name: rvlinterview/locale.en
|
||||
Dependencies: {}
|
||||
Info_27:
|
||||
Name: rvlseal/locale.en
|
||||
Dependencies: {}
|
||||
Info_28:
|
||||
Name: agbtoss/common
|
||||
Dependencies: {}
|
||||
Info_29:
|
||||
Name: ntrassembly/common
|
||||
Dependencies: {}
|
||||
Info_30:
|
||||
Name: rvlinterview/common
|
||||
Dependencies: {}
|
||||
Info_31:
|
||||
Name: rvlrotation/common
|
||||
Dependencies: {}
|
||||
Info_32:
|
||||
Name: agbhair/common
|
||||
Dependencies: {}
|
||||
Info_33:
|
||||
Name: ctrinterpreter/common
|
||||
Dependencies: {}
|
||||
Info_34:
|
||||
Name: rvllegs/common
|
||||
Dependencies: {}
|
||||
Info_35:
|
||||
Name: rvlbadminton/locale.en
|
||||
Dependencies: {}
|
||||
Info_36:
|
||||
Name: pcosomen/common
|
||||
Dependencies: {}
|
||||
Info_37:
|
||||
Name: ctrintro/common
|
||||
Dependencies: {}
|
||||
Info_38:
|
||||
Name: agbquiz/common
|
||||
Dependencies:
|
||||
Dependency_0: karate/common
|
||||
Info_39:
|
||||
Name: ntrshugyo/locale.en
|
||||
Dependencies: {}
|
||||
Info_40:
|
||||
Name: agboffbeat/common
|
||||
Dependencies: {}
|
||||
Info_41:
|
||||
Name: ctrbear/common
|
||||
Dependencies: {}
|
||||
Info_42:
|
||||
Name: ntrninja/common
|
||||
Dependencies: {}
|
||||
Info_43:
|
||||
Name: ntrsoccer/common
|
||||
Dependencies: {}
|
||||
Info_44:
|
||||
Name: ntrbackbeat/common
|
||||
Dependencies: {}
|
||||
Info_45:
|
||||
Name: rvlrocket/common
|
||||
Dependencies: {}
|
||||
Info_46:
|
||||
Name: ntrstomp/common
|
||||
Dependencies: {}
|
||||
Info_47:
|
||||
Name: agbspacedance/common
|
||||
Dependencies: {}
|
||||
Info_48:
|
||||
Name: agbbatter/common
|
||||
Dependencies:
|
||||
Dependency_0: karate/common
|
||||
Info_49:
|
||||
Name: rvldate/common
|
||||
Dependencies:
|
||||
Dependency_0: ntrdj/common
|
||||
Info_50:
|
||||
Name: ntrboxshow/common
|
||||
Dependencies: {}
|
||||
Info_51:
|
||||
Name: agbexplode/common
|
||||
Dependencies: {}
|
||||
Info_52:
|
||||
Name: ntrcork/common
|
||||
Dependencies: {}
|
||||
Info_53:
|
||||
Name: pcomeat/common
|
||||
Dependencies: {}
|
||||
Info_54:
|
||||
Name: ntrsoccer/locale.en
|
||||
Dependencies: {}
|
||||
Info_55:
|
||||
Name: agbspacedance/locale.jp
|
||||
Dependencies: {}
|
||||
Info_56:
|
||||
Name: rvldrum/common
|
||||
Dependencies: {}
|
||||
Info_57:
|
||||
Name: ntrtunnel/locale.en
|
||||
Dependencies: {}
|
||||
Info_58:
|
||||
Name: rvlseal/common
|
||||
Dependencies: {}
|
||||
Info_59:
|
||||
Name: ntrboxshow/locale.en
|
||||
Dependencies: {}
|
||||
Info_60:
|
||||
Name: ntrpingpong/common
|
||||
Dependencies: {}
|
||||
Info_61:
|
||||
Name: ntrtunnel/common
|
||||
Dependencies: {}
|
||||
Info_62:
|
||||
Name: ntrshugyo/common
|
||||
Dependencies: {}
|
||||
Info_63:
|
||||
Name: ntrchorus/common
|
||||
Dependencies: {}
|
||||
Info_64:
|
||||
Name: rvlseesaw/locale.en
|
||||
Dependencies: {}
|
||||
Info_65:
|
||||
Name: agbwizard/common
|
||||
Dependencies: {}
|
||||
Info_66:
|
||||
Name: agbtap/common
|
||||
Dependencies:
|
||||
Dependency_0: ntridol/common
|
||||
Info_67:
|
||||
Name: ntrchorus/locale.en
|
||||
Dependencies: {}
|
||||
Info_68:
|
||||
Name: rvlrotation/locale.en
|
||||
Dependencies: {}
|
||||
Info_69:
|
||||
Name: rvllegs/locale.en
|
||||
Dependencies: {}
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 0d124ee255b701b4b8832326c3cb17e0
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: e65d8db735d4d294083f0688b257fad8
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 2094e7e951ad51f4bbd88a9ab252fbe9
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,99 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1122017321
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 7a6ba1a59eb400a7c52f9daf4fe9b3dd
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 4f2ec9d4a37fcaf8265a07a3a5b7905b
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 49dd9168d46a2ad41a47802c26b5dbb3, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 9d5579033013148498d767bb11e43f60, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 09594549474ef4447a9f830333a42aa9, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 066a41e004f415b4eb74d5e61a2aadbe, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: aae9454ad2ee24c4e9988472183c51fd, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: b0cca3244f403c24f819a870f31cdc29, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: fdd5be636e18a974c94d01c287c07dd7, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Games.Scripts_Spaceball.SpaceballPlayer/HatSprite
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/Spaceball/spaceball.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/hole.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/dispensersheet.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/playershadow.png
|
||||
- Assets/Resources/Sfx/games/spaceball/swing.wav
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/AlienShow.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/star.mat
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/DispenserPrepare.anim
|
||||
- Assets/Resources/Sfx/games/spaceball/tacobell.ogg
|
||||
- Assets/Resources/Sfx/games/spaceball/hit.ogg
|
||||
- Assets/Resources/Sprites/Games/Spaceball/player_3.mat
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/AlienIdle.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Player.controller
|
||||
- Assets/Resources/Games/spaceball.prefab
|
||||
- Assets/Resources/Sprites/Games/Spaceball/player_1.mat
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/AlienSwing.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Alien.controller
|
||||
- Assets/Resources/Sprites/Games/Spaceball/star.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/alien.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/DispenserShoot.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/dust.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Dust.controller
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Dispenser.controller
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Spaceball_Player_2.png
|
||||
- Assets/Resources/Sfx/games/spaceball/fall.wav
|
||||
- Assets/Resources/Sprites/Games/Spaceball/tacobell.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/room.png
|
||||
- Assets/Resources/Sfx/games/spaceball/shoot.ogg
|
||||
- Assets/Resources/Sprites/Games/Spaceball/riceball.png
|
||||
- Assets/Resources/Sfx/games/spaceball/hit_old.ogg
|
||||
- Assets/Resources/Sprites/Games/Spaceball/player_2.mat
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Swing.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/alien_shadow.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Spaceball_Player_3.png
|
||||
- Assets/Resources/Sfx/games/spaceball/longShoot.ogg
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/AlienHide.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Spaceball_Player_1.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Dust.anim
|
||||
- Assets/Resources/Sprites/Games/Spaceball/baseball.png
|
||||
- Assets/Resources/Sprites/Games/Spaceball/Animations/Idle.anim
|
||||
Dependencies:
|
||||
- F:/Github/HeavenStudio/Assets/StreamingAssets/karate/common
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: efb1b5cd9b63e2b4a8bdab71c375e527
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 52543bc95414a1e4d9033fe93af42c2a
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 14bd7fcb37f382645a0651c3c6915df0
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,59 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 4055765763
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 33f0474953641354c81c369c6cd3901c
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: b1e8bb68d3d87d505cf1e976704538c6
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: a7c8ebd2f1b0ce448acc55b6f6608e15, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/SignIdle.anim
|
||||
- Assets/Resources/Sfx/games/clappyTrio/sign.ogg
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Prologue_1.png
|
||||
- Assets/Resources/Sfx/games/clappyTrio/ready.ogg
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Title.png
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/GameSprites.png
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Bop.anim
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Idle.anim
|
||||
- Assets/Resources/Sfx/games/clappyTrio/middleClap.ogg
|
||||
- Assets/Resources/Games/clappyTrio.prefab
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Lion.controller
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Prepare.anim
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Enter.anim
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Epilogue.png
|
||||
- Assets/Resources/Sfx/games/clappyTrio/rightClap.ogg
|
||||
- Assets/Resources/Sfx/games/clappyTrio/leftClap.ogg
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Clap.anim
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Exit.anim
|
||||
- Assets/Resources/Sprites/Games/ClappyTrio/Animations/Sign.controller
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 7ecdf3b3edc06cb46acfee5023bf270b
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: a6425c931f74714428b3dc2bbad62ab3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6086a35427196484fbd136454f7dea4b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,77 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1593665114
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 44c3bdbc8066d8b9f8d29f107c6df42d
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: b7dda81a5a0adc681edb9e6a78b49c82
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 5d25335cea525ce4397a2f83a3050aef, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 066a41e004f415b4eb74d5e61a2aadbe, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: d8b2f480be153a4499d741b02b6ebc36, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: b0cca3244f403c24f819a870f31cdc29, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 7f156c79b8e773d40be2499ddc7d28d1, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/Fireworks/city.png
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/End.anim
|
||||
- Assets/Resources/Sfx/games/fireworks/rocket_2.wav
|
||||
- Assets/Resources/Sfx/games/fireworks/count2.ogg
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/Rocket.anim
|
||||
- Assets/Resources/Sfx/games/fireworks/count1.ogg
|
||||
- Assets/Resources/Sfx/games/fireworks/tamaya_4.wav
|
||||
- Assets/Resources/Sfx/games/fireworks/practiceAww.ogg
|
||||
- Assets/Resources/Sfx/games/fireworks/countHey.ogg
|
||||
- Assets/Resources/Sprites/Games/Fireworks/fireworks.png
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/Firework.controller
|
||||
- Assets/Resources/Sfx/games/fireworks/practice2.ogg
|
||||
- Assets/Resources/Sfx/games/fireworks/taikoExplode.wav
|
||||
- Assets/Resources/Games/fireworks.prefab
|
||||
- Assets/Resources/Sfx/games/fireworks/practice1.ogg
|
||||
- Assets/Resources/Sfx/games/fireworks/practiceHai.ogg
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/IdleBomb.anim
|
||||
- Assets/Resources/Sfx/games/fireworks/explode_5.wav
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/Bomb.controller
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/ExplodeBomb.anim
|
||||
- Assets/Resources/Sfx/games/fireworks/practice3.ogg
|
||||
- Assets/Resources/Sfx/games/fireworks/miss.wav
|
||||
- Assets/Resources/Sfx/games/fireworks/count3.ogg
|
||||
- Assets/Resources/Sprites/Games/Fireworks/Animations/Sparkler.anim
|
||||
- Assets/Resources/Sfx/games/fireworks/nuei.ogg
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: b4a4dfab416fcbc46b76569d705f0bdf
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1ea7851fd836e364486f0f149566e729
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6c8d1721bd793744e83545847fa9299d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,88 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1577974224
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: e3a5a1bab4b7b440c475f68ae9566f04
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 5097dbd2765acbc61afb9aa46e25c1a4
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: fdc9d92cf15fc704a97cf700a1086f62, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: dded6aad8b6300e46932ce958ba5071f, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 1f3e68a6616f5224ea69b11d1199ae63, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostDieNose.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostMiss.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Tree Stationary.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostDieCheek.anim
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/rainLoop.ogg
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Tree.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/DoorClosed.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/BowHolder.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostDeath.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Exit.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/SneakySpirits.png
|
||||
- Assets/Resources/Games/sneakySpirits.prefab
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/arrowMiss.ogg
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/hit.ogg
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Entered.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/BowIdle.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/BowDraw.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Tree_1.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/BowRecoil.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/TreeSlow.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Bow.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/ArrowMiss.controller
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/moving.ogg
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/laugh.ogg
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Door.controller
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostLaugh.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/DoorClose.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostBarely.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Move.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/DoorOpen.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostMiss.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/MoveDown.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/ArrowRecoil.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostDieMouth.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Enter.anim
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/ghostEscape.wav
|
||||
- Assets/Resources/Sfx/games/sneakySpirits/ghostScared.wav
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/Gone.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/GhostDieBody.anim
|
||||
- Assets/Resources/Sprites/Games/SneakySpirits/Animations/MovingGhost.controller
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 3ff9140d1e22376488edaa96cd769ec6
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: f75f18f0f0983dd4abba4fb59b8bf2c5
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: e6b274274dfa217418cf8115c144fc79
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,113 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 507864373
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 6bbf6024922d57739466e33aae70becb
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 6ab6f5dbbbc64091fe41d0a8194baa43
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 50
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 4e340a4511265794abbce4ce7b756b33, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 2c173ef5dba9631449b99fcbc50ff9e8, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 3279e585337e95a40b3621073b3c77b1, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 62c1e08c47081e84da8af20ea652e2a7, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: d8ea112b8d0c51343bca3ebc026d0295, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck1.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/longAppear.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck3.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck13.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Blink.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/register.ogg
|
||||
- Assets/Resources/Games/rhythmTweezers.prefab
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop6.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Vegetable.controller
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Tweezers/Tweezers_Pluck.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Hairs/LoopPull.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop10.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/longPull4.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/longPull3.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/AltSmile.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck14.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/HopFinal.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop2.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop5.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/hairAndThings.png
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/noPeek_2.controller
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Tweezers/Tweezers_Pluck_Success.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck5.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Hairs/LongAppear.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Hairs/SmallAppear.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop3.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck8.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck17.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/longPull2.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck12.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck19.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck6.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop0.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck4.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop4.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/face.png
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck9.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck16.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/longPull1.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Smile.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/longPullEnd.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortAppear.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck10.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Tweezers/Tweezers_Idle.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/NoPeekLower.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop7.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Tweezers/Tweezers_Pluck_Fail.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Idle.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop9.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/NoPeekRise.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Hairs/HairHolder.controller
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop1.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck2.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck7.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck18.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/veggies.png
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Tweezers/TweezerHolder.controller
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Vegetable/Hop8.anim
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/Tweezers/Tweezers_LongPluck.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck11.ogg
|
||||
- Assets/Resources/Sprites/Games/RhythmTweezers/Animations/NoPeekIdle.anim
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck20.ogg
|
||||
- Assets/Resources/Sfx/games/rhythmTweezers/shortPluck15.ogg
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 93dfff8dd3d90cb4dbe96f9b5b351f2d
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ed2e3e40895fd2f47952f5231d3cc1e3
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: d135051a25f3663429eff22b59d0cc9b
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,57 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 2493667358
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: a01397878cd927fcdf94e9a92868b4c5
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 7d376826375f2c77db0d94db3474ea48
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 86babf8846fa7a4498e3fa3648f95cc9, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 88781b295be0fe245b61208a9de66199, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Util.SoundSequence
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Util.SoundSequence/SequenceClip
|
||||
- AssemblyName: Assembly-CSharp
|
||||
ClassName: HeavenStudio.Util.SoundSequence/SequenceKeyValue
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/marchingOrders/halt2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/faceTurnPlayer.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/marchStart.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/turnAction.wav
|
||||
- Assets/Resources/Games/marchingOrders.prefab
|
||||
- Assets/Resources/Sfx/games/marchingOrders/faceTurnOther.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/turnActionPlayer.wav
|
||||
- Assets/Resources/Sfx/games/marchingOrders/stepOther.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/stepPlayer.ogg
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 7ede2fa4baf4ce548a660152a7ceb1ad
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 5481d3029d7e22048b8e79905f3e0a2f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,35 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 1609141172
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: ed79920bebe483d228c1d5e21056b88e
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/attention1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/attention2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn3fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn2fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/march1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn2fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/attention3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn1fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/march3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn1fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/leftFaceTurn3fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/halt1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/march2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/en/rightFaceTurn2.ogg
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 3bce225f1c6e832418db2b85cf7ea6cf
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c74c8196965fe6a42a19954b21ce45ae
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,35 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 46427984
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: e325f57db7bd684312614741a2bd709d
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn3Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/march2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/attention1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/march1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/march3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/halt1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/attention2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn2Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn2.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn2Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn1.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn1Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/rightFaceTurn3Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/attention3.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn1Fast.ogg
|
||||
- Assets/Resources/Sfx/games/marchingOrders/jp/leftFaceTurn3.ogg
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 92cbc7f9ee423fd4e9f850767d86ac07
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 44888da776dfe6e4eb1d0bf75b69d295
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 233dff20019f7dd468b49a704e74a56d
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,110 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 638092860
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 258bdeeaf15739d0b2cda5ee4321e42f
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: b20f138d4c27c64a38b438efe12d137f
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 23
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: a258517e5332c824a8b81a03036fc2a8, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: ab2114bdc8544297b417dfefe9f1e410, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 9541d86e2fd84c1d9990edf0852d74ab, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: e4fa18aec69a2e949a7e2d4e33bdd2b9, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 128
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
- Class: 224
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.FaceInfo_Legacy
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.FontAssetCreationSettings
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.KerningTable
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.TMP_Character
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.TMP_FontFeatureTable
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.TMP_FontWeightPair
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.TMP_Style
|
||||
- AssemblyName: Unity.TextMeshPro
|
||||
ClassName: TMPro.VertexGradient
|
||||
- AssemblyName: UnityEngine.CoreModule
|
||||
ClassName: UnityEngine.Events.PersistentCallGroup
|
||||
- AssemblyName: UnityEngine.TextCoreFontEngineModule
|
||||
ClassName: UnityEngine.TextCore.FaceInfo
|
||||
- AssemblyName: UnityEngine.TextCoreFontEngineModule
|
||||
ClassName: UnityEngine.TextCore.Glyph
|
||||
- AssemblyName: UnityEngine.TextCoreFontEngineModule
|
||||
ClassName: UnityEngine.TextCore.GlyphMetrics
|
||||
- AssemblyName: UnityEngine.TextCoreFontEngineModule
|
||||
ClassName: UnityEngine.TextCore.GlyphRect
|
||||
- AssemblyName: UnityEngine.UI
|
||||
ClassName: UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
|
||||
Assets:
|
||||
- Assets/Resources/Sfx/games/mrUpbeat/blip.ogg
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Fall.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/BlipAnimator.controller
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/MetronomeGoRight.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/LetterAnimator.controller
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Step.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Blip3.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Blip4.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/MrUpbeatAnimator.controller
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/LetterStepRight.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/MetronomeIdle.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/LetterStepLeft.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/blip.mat
|
||||
- Assets/Resources/Sfx/games/mrUpbeat/metronomeRight.ogg
|
||||
- Assets/Resources/Games/mrUpbeat.prefab
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Blip2.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/MetronomeGoLeft.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Metronome.controller
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Blip1.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/mrupbeat_main.png
|
||||
- Assets/Resources/Sfx/games/mrUpbeat/applause.ogg
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/MetronomeIdleLeft.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Idle.anim
|
||||
- Assets/Resources/Sfx/games/mrUpbeat/metronomeLeft.ogg
|
||||
- Assets/Resources/Sfx/games/mrUpbeat/ding.ogg
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/Blip5.anim
|
||||
- Assets/Resources/Sprites/Games/MrUpbeat/Animations/BlipIdle.anim
|
||||
- Assets/Resources/Sfx/games/mrUpbeat/step.ogg
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 880a950c8f6784145804e1fef4f22705
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 0c8d66ff37a0e724487945aa1574a815
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ae1e7b7c83a18844f805868af8706882
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,111 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 475114992
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 00245f07ed1e60e78624a147c6070fcf
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: 78b02268f01f8b6a77a608289ecb9d38
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: ca5101b95ec4d994783d6300b224575b, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 198
|
||||
Script: {instanceID: 0}
|
||||
- Class: 199
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers: []
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/Head.controller
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeSad.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/timerStart.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostLeftHit.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/incorrectJingle.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftArm.controller
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeHeadStage1.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftArmIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeHead.controller
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/SignIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostLeftPrepare.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostRightHit.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/audienceCheer.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftPrepareIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/Sign.controller
|
||||
- Assets/Resources/Sfx/games/quizShow/correctNoMusic.ogg
|
||||
- Assets/Resources/Sfx/games/quizShow/timeUp.ogg
|
||||
- Assets/Resources/Sfx/games/quizShow/incorrect.ogg
|
||||
- Assets/Resources/Sfx/games/quizShow/answerReveal.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/Exploded.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/audienceSad.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostPrepare.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeSmile.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeHeadIdle.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/correctJingle.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftArmPress.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftPrepare.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftRest.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RightArm 1.controller
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostStage3.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostRightArmIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RightArmHit.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RightRest.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/correct.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/quizeffects.png
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostSmile.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/contestantDPad.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostStage1.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RightArmIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostRightRest.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RightArm.controller
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostLeftRest.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/timerStop.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RightPrepareIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostIdleHead.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostSad.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/RIghtPrepare.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostLeftArmIdle.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/SignHolder.controller
|
||||
- Assets/Resources/Sprites/Games/QuizShow/RecolorableSign.mat
|
||||
- Assets/Resources/Sfx/games/quizShow/contestantExplode.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeHeadStage2.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostStage2.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostHead.controller
|
||||
- Assets/Resources/Sfx/games/quizShow/hostA.ogg
|
||||
- Assets/Resources/Sfx/games/quizShow/contestantA.ogg
|
||||
- Assets/Resources/Sfx/games/quizShow/correctNoApplause.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/HostStage4.anim
|
||||
- Assets/Resources/Sprites/Games/QuizShow/quiz_bg.png
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/ContesteeHeadStage3.anim
|
||||
- Assets/Resources/Sfx/games/quizShow/signExplode.ogg
|
||||
- Assets/Resources/Sprites/Games/QuizShow/quiz_parts.png
|
||||
- Assets/Resources/Sprites/Games/QuizShow/Animations/LeftArm 1.controller
|
||||
- Assets/Resources/Games/quizShow.prefab
|
||||
- Assets/Resources/Sfx/games/quizShow/hostDPad.ogg
|
||||
- Assets/Resources/Sfx/games/quizShow/hostExplode.ogg
|
||||
Dependencies:
|
||||
- C:/Users/evanb/OneDrive/Documents/GitHub/HeavenStudio/Assets/StreamingAssets/karate/common
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6892df4ace5eafc4eb11379a4fcd057f
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: bd06d307ca65aee4eacfc4b76daf27cb
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
|
@ -1,8 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 081a12a7bba194045941c566014e735f
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Binary file not shown.
|
@ -1,107 +0,0 @@
|
|||
ManifestFileVersion: 0
|
||||
CRC: 356229831
|
||||
Hashes:
|
||||
AssetFileHash:
|
||||
serializedVersion: 2
|
||||
Hash: 679d9c125a38f42ee552a09b2d8450ca
|
||||
TypeTreeHash:
|
||||
serializedVersion: 2
|
||||
Hash: ddb2c4a70034b0784bb73c06ec09460c
|
||||
HashAppended: 0
|
||||
ClassTypes:
|
||||
- Class: 1
|
||||
Script: {instanceID: 0}
|
||||
- Class: 4
|
||||
Script: {instanceID: 0}
|
||||
- Class: 21
|
||||
Script: {instanceID: 0}
|
||||
- Class: 28
|
||||
Script: {instanceID: 0}
|
||||
- Class: 48
|
||||
Script: {instanceID: 0}
|
||||
- Class: 74
|
||||
Script: {instanceID: 0}
|
||||
- Class: 83
|
||||
Script: {instanceID: 0}
|
||||
- Class: 91
|
||||
Script: {instanceID: 0}
|
||||
- Class: 95
|
||||
Script: {instanceID: 0}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: 8dbd5e988233f9a4f931eddbafe8719a, type: 3}
|
||||
- Class: 114
|
||||
Script: {fileID: 11500000, guid: a6dfb70e45ff5004cab0352936d3f10a, type: 3}
|
||||
- Class: 115
|
||||
Script: {instanceID: 0}
|
||||
- Class: 212
|
||||
Script: {instanceID: 0}
|
||||
- Class: 213
|
||||
Script: {instanceID: 0}
|
||||
- Class: 222
|
||||
Script: {instanceID: 0}
|
||||
- Class: 223
|
||||
Script: {instanceID: 0}
|
||||
- Class: 224
|
||||
Script: {instanceID: 0}
|
||||
SerializeReferenceClassIdentifiers:
|
||||
- AssemblyName: UnityEngine.CoreModule
|
||||
ClassName: UnityEngine.Events.PersistentCallGroup
|
||||
- AssemblyName: UnityEngine.UI
|
||||
ClassName: UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
|
||||
Assets:
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/Ouch.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsTurnRightDo.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/spacedancers.png
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsSitDownStart.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/dancer.controller
|
||||
- Assets/Resources/Sfx/games/spaceDance/inputBad.wav
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/PunchStartInner.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsTalk.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/spacegramps.png
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/gramps.controller
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsPunchStartOdd.anim
|
||||
- Assets/Resources/Games/spaceDance.prefab
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsPunchStartEven.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Effect.png
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsMiss.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsSitDownDo.anim
|
||||
- Assets/Resources/Sfx/games/spaceDance/voicelessTurn.wav
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/ShootingStar.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/Stand.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/BGStarsUS2.png
|
||||
- Assets/Resources/Sfx/games/spaceDance/voicelessSit.wav
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsPunchDo.anim
|
||||
- Assets/Resources/Sfx/games/spaceDance/inputBad2.wav
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/StarNothing.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/Bop.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/shootingStar.controller
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/BGStarsUS1.png
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/Hit.controller
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/TurnRightDo.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/BG R3.png
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/seal.png
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/SitDownDo.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/HitNothing.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/HitTurn.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsSniff.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsTurnRightStart.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/HitPunch.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/TurnRightStart.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/PunchDo.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/PunchStartOuter.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsOhFuck.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/SitDownStart.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/HitSit.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/testright.anim
|
||||
- Assets/Resources/Sfx/games/spaceDance/voicelessPunch.wav
|
||||
- Assets/Resources/Sfx/games/spaceDance/inputGood.wav
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsBop.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/Animations/GrampsStand.anim
|
||||
- Assets/Resources/Sprites/Games/SpaceDance/tempgramps.png
|
||||
Dependencies: []
|
|
@ -1,7 +0,0 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 26835cfe569328446a2b25c38f6d62a2
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue