mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 03:35:10 +00:00
Merge remote-tracking branch 'minenice/new-buildscript-test' into actions_rework
This commit is contained in:
commit
5ee2ba6464
343 changed files with 307 additions and 7524 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -48,6 +48,7 @@ jobs:
|
||||||
unityVersion: auto
|
unityVersion: auto
|
||||||
buildName: Heaven Studio
|
buildName: Heaven Studio
|
||||||
buildsPath: build
|
buildsPath: build
|
||||||
|
buildMethod: UnityBuilderAction.BuildScript.Build
|
||||||
targetPlatform: ${{ matrix.targetPlatform }}
|
targetPlatform: ${{ matrix.targetPlatform }}
|
||||||
|
|
||||||
# Required on Mac/Linux to keep executable permissions
|
# Required on Mac/Linux to keep executable permissions
|
||||||
|
|
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,10 +1,3 @@
|
||||||
# TEMPORARY ------------------------------
|
|
||||||
/Assets/Test
|
|
||||||
/Assets/Resources/Music/Unconfirmed
|
|
||||||
# ----------------------------------------
|
|
||||||
|
|
||||||
/[Aa]sset[Bb]undles
|
|
||||||
|
|
||||||
/[Ll]ibrary/
|
/[Ll]ibrary/
|
||||||
/[Tt]emp/
|
/[Tt]emp/
|
||||||
/[Oo]bj/
|
/[Oo]bj/
|
||||||
|
@ -86,3 +79,7 @@ crashlytics-build.properties
|
||||||
|
|
||||||
# macOS
|
# macOS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# Built AssetBundles
|
||||||
|
/[Aa]ssets/[Ss]treamingAssets/*/*
|
||||||
|
/[Aa]ssets/[Ss]treamingAssets/*.manifest
|
260
Assets/Editor/BuildScript.cs
Normal file
260
Assets/Editor/BuildScript.cs
Normal file
|
@ -0,0 +1,260 @@
|
||||||
|
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()
|
||||||
|
{
|
||||||
|
// Get filename.
|
||||||
|
string path = EditorUtility.SaveFolderPanel("Build out WINDOWS to...", "", "");
|
||||||
|
Build( BuildTarget.StandaloneWindows, 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 = "";
|
||||||
|
string extension = "";
|
||||||
|
switch ( buildTarget ) {
|
||||||
|
case BuildTarget.StandaloneWindows:
|
||||||
|
case BuildTarget.StandaloneWindows64:
|
||||||
|
dataPath = $"{appName}_Data/";
|
||||||
|
extension = ".exe";
|
||||||
|
break;
|
||||||
|
case BuildTarget.StandaloneOSX:
|
||||||
|
dataPath = $"{appName}.app/Contents/";
|
||||||
|
extension = ".app";
|
||||||
|
break;
|
||||||
|
case BuildTarget.StandaloneLinux64:
|
||||||
|
dataPath = $"{appName}_Data/";
|
||||||
|
extension = ".x86_64";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
var buildPlayerOptions = new BuildPlayerOptions
|
||||||
|
{
|
||||||
|
scenes = scenes,
|
||||||
|
target = buildTarget,
|
||||||
|
// targetGroup = BuildPipeline.GetBuildTargetGroup(buildTarget),
|
||||||
|
locationPathName = filePath + $"{appName}{extension}",
|
||||||
|
// options = UnityEditor.BuildOptions.Development
|
||||||
|
#if UNITY_2021_2_OR_NEWER
|
||||||
|
subtarget = buildSubtarget
|
||||||
|
#endif
|
||||||
|
};
|
||||||
|
|
||||||
|
string assetBundleDirectory = filePath + 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.IO;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using UnityEditor;
|
||||||
|
using UnityEditor.Build;
|
||||||
|
using UnityEditor.Build.Reporting;
|
||||||
|
using UnityEngine;
|
||||||
|
|
||||||
public class CreateAssetBundles
|
public class CreateAssetBundles
|
||||||
{
|
{
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,8 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
public static class AppInfo {
|
public static class AppInfo {
|
||||||
public const string Version = "0.0.975";
|
public const string Version = "0.0.978";
|
||||||
public static readonly DateTime Date = new DateTime(2023, 05, 28, 15, 45, 42, 208, DateTimeKind.Utc);
|
public static readonly DateTime Date = new DateTime(2023, 06, 18, 21, 34, 16, 868, DateTimeKind.Utc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ public class BuildNumberUpdater : UnityEditor.Build.IPreprocessBuild
|
||||||
private const string AppInfoFileName = "AppInfo.cs";
|
private const string AppInfoFileName = "AppInfo.cs";
|
||||||
|
|
||||||
public int callbackOrder {
|
public int callbackOrder {
|
||||||
get { return 0; }
|
get { return 1; }
|
||||||
}
|
}
|
||||||
|
|
||||||
void UnityEditor.Build.IPreprocessBuild.OnPreprocessBuild(UnityEditor.BuildTarget target, string path) {
|
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: 368295644
|
|
||||||
AssetBundleManifest:
|
|
||||||
AssetBundleInfos:
|
|
||||||
Info_0:
|
|
||||||
Name: ctrpillow/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_1:
|
|
||||||
Name: ntrsamurai/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_2:
|
|
||||||
Name: rvlbooks/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_3:
|
|
||||||
Name: agbmarcher/locale.jp
|
|
||||||
Dependencies: {}
|
|
||||||
Info_4:
|
|
||||||
Name: ntridol/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_5:
|
|
||||||
Name: ntrdj/common
|
|
||||||
Dependencies:
|
|
||||||
Dependency_0: rvldate/common
|
|
||||||
Info_6:
|
|
||||||
Name: ctrpillow/locale.jp
|
|
||||||
Dependencies: {}
|
|
||||||
Info_7:
|
|
||||||
Name: karate/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_8:
|
|
||||||
Name: ctrcatchy/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_9:
|
|
||||||
Name: rvlbooks/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_10:
|
|
||||||
Name: agbmarcher/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_11:
|
|
||||||
Name: ntridol/locale.jp
|
|
||||||
Dependencies: {}
|
|
||||||
Info_12:
|
|
||||||
Name: agbmarcher/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_13:
|
|
||||||
Name: ctrpillow/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_14:
|
|
||||||
Name: karate/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_15:
|
|
||||||
Name: ntrcoin/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_16:
|
|
||||||
Name: ctrpillow/locale.ko
|
|
||||||
Dependencies: {}
|
|
||||||
Info_17:
|
|
||||||
Name: ntrsamurai/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_18:
|
|
||||||
Name: ntrassembly/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_19:
|
|
||||||
Name: rvlinterview/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_20:
|
|
||||||
Name: rvlseal/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_21:
|
|
||||||
Name: agbtoss/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_22:
|
|
||||||
Name: rvlrotation/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_23:
|
|
||||||
Name: rvlbadminton/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_24:
|
|
||||||
Name: agbhair/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_25:
|
|
||||||
Name: agbclap/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_26:
|
|
||||||
Name: ctrinterpreter/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_27:
|
|
||||||
Name: ntrboxshow/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_28:
|
|
||||||
Name: agbexplode/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_29:
|
|
||||||
Name: rvllegs/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_30:
|
|
||||||
Name: agbquiz/common
|
|
||||||
Dependencies:
|
|
||||||
Dependency_0: karate/common
|
|
||||||
Info_31:
|
|
||||||
Name: agboffbeat/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_32:
|
|
||||||
Name: ntrpingpong/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_33:
|
|
||||||
Name: ntrcork/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_34:
|
|
||||||
Name: agbspacedance/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_35:
|
|
||||||
Name: ctrbear/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_36:
|
|
||||||
Name: ntrbackbeat/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_37:
|
|
||||||
Name: ntrninja/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_38:
|
|
||||||
Name: ntrsoccer/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_39:
|
|
||||||
Name: ctrintro/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_40:
|
|
||||||
Name: rvlrocket/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_41:
|
|
||||||
Name: pcosomen/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_42:
|
|
||||||
Name: agbbatter/common
|
|
||||||
Dependencies:
|
|
||||||
Dependency_0: karate/common
|
|
||||||
Info_43:
|
|
||||||
Name: agbspacedance/locale.jp
|
|
||||||
Dependencies: {}
|
|
||||||
Info_44:
|
|
||||||
Name: agbghost/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_45:
|
|
||||||
Name: ntrchorus/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_46:
|
|
||||||
Name: ctrteppan/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_47:
|
|
||||||
Name: rvldough/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_48:
|
|
||||||
Name: rvlseesaw/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_49:
|
|
||||||
Name: rvlfork/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_50:
|
|
||||||
Name: ntrtunnel/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_51:
|
|
||||||
Name: rvlinterview/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_52:
|
|
||||||
Name: rvlseal/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_53:
|
|
||||||
Name: ntrshugyo/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_54:
|
|
||||||
Name: ntrstomp/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_55:
|
|
||||||
Name: rvlbadminton/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_56:
|
|
||||||
Name: ntrboxshow/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_57:
|
|
||||||
Name: ntrsoccer/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_58:
|
|
||||||
Name: agbwizard/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_59:
|
|
||||||
Name: rvlseesaw/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_60:
|
|
||||||
Name: rvldate/common
|
|
||||||
Dependencies:
|
|
||||||
Dependency_0: ntrdj/common
|
|
||||||
Info_61:
|
|
||||||
Name: agbtap/common
|
|
||||||
Dependencies:
|
|
||||||
Dependency_0: ntridol/common
|
|
||||||
Info_62:
|
|
||||||
Name: ntrshugyo/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_63:
|
|
||||||
Name: rvldrum/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_64:
|
|
||||||
Name: ntrchorus/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_65:
|
|
||||||
Name: mobtrick/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_66:
|
|
||||||
Name: pcomeat/common
|
|
||||||
Dependencies: {}
|
|
||||||
Info_67:
|
|
||||||
Name: rvlrotation/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_68:
|
|
||||||
Name: rvllegs/locale.en
|
|
||||||
Dependencies: {}
|
|
||||||
Info_69:
|
|
||||||
Name: ntrtunnel/common
|
|
||||||
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:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 344ebfe114ed4d04da1be6992b14993d
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,30 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 3292081599
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: a6e195e8a02dd1668c351c9555a10e68
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 9a2ca7bdbd1871f7131daf57de908e0c
|
|
||||||
HashAppended: 0
|
|
||||||
ClassTypes:
|
|
||||||
- Class: 83
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
SerializeReferenceClassIdentifiers: []
|
|
||||||
Assets:
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerSit.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherLets.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherSit.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerTurn.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherRight.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherTurn.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerLets.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherPa.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherDown.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/otherPunch.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerRight.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerPa.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerDown.wav
|
|
||||||
- Assets/Resources/Sfx/games/spaceDance/dancerPunch.wav
|
|
||||||
Dependencies: []
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: f18c5979924cb2d40895b8feceb03d20
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 059762ae3f0d48646a9b572c7b443ec8
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 1c555fe9855492641bf9ebcb755622e0
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,118 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 3317229876
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 097bfdcc51c1b7fa6d036cc450fe5aec
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 15c41fad7e66ce2236de71530bb543ef
|
|
||||||
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: 4f71e53c93d1d6b4f93796e1f52550a2, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 45eb7daf344474546ba5079bf18eae01, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 6892e03a2f2994b48a4b076fdfae805d, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: d04c124402523b64abce470b1c6ced10, 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}
|
|
||||||
- Class: 222
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
- Class: 224
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
SerializeReferenceClassIdentifiers: []
|
|
||||||
Assets:
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.004.png
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/PoseTap_R.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_triple_tap/ready/PostPrepare_1.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/PosePrepare_2.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_triple_tap/tap/PostTap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Pose.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/DoubleTapPrepare_2.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/PosePrepare.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_jump_tap/tap/final/FinalJumpTap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.002.png
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/DoubleTap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/tap/JumpTap_Success.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_tap/ready/TapPrepare.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Giraffe/Exit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_triple_tap/tap/PostTap_2.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Player.controller
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.001.png
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/ooki2.ogg
|
|
||||||
- Assets/Resources/Games/tapTrial.prefab
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/tap/final/FinalJump_Tap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.003.png
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_jump_tap/tap/Jumpactualtap.anim
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/jumptap1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/Jump.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/JumpPrepare.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/PoseTap_L.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_jump_tap/tap/JumpTap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/tap/JumpTap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/DoubleTapPrepare.anim
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/ooki1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/MonkeyTapTrial.controller
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Tap.anim
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/tap.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/TapPrepare.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Giraffe/Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_tap/tap/Tap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Giraffe/Enter.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_jump_tap/ready/JumpPrepare.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/taptrial_main.png
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/ook.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/tap/miss/JumpTap_Miss.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.000.png
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/jumptap2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/DoubleTapPrepare.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_bop/Bop.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/PosePrepare_3.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.005.png
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/tap/final/miss/FinalJump_Miss.anim
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/tonk.wav
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/tapMonkey.wav
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/ready/animation_10.006.png
|
|
||||||
- Assets/Resources/Sfx/games/tapTrial/ookook.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/DoubleTap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_jump_tap/tap/final/FinalJump.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/PosePrepare_1.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Monkey/monkey_triple_tap/ready/PostPrepare_2.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/taptrial_bg.png
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/Giraffe/Giraffe.controller
|
|
||||||
- Assets/Resources/Sprites/Games/TapTrial/Animations/girl_bop/Bop.anim
|
|
||||||
Dependencies:
|
|
||||||
- C:/Users/evanb/OneDrive/Documents/GitHub/HeavenStudio/Assets/StreamingAssets/ntridol/common
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 4c4efdd82b159be488297b0ab7f10329
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 8355c0dffe98e3542a3b7ddfa0c575f3
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 789f946ff69403e4f83a07341c7b6c92
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,163 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 2283269108
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 54dc5cc4467153fc42d7fec3c0ff99cf
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 545a4a8276e4957bfa14c0b989e80093
|
|
||||||
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: a8f7b009cd48c7d4b828068b4a009f5a, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: ffe92c9901716e943a9f7f280cc8e06b, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: e9c2f7ae54a21a949b3e42dc59789af4, 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.SuperCurveObject/Path
|
|
||||||
- AssemblyName: Assembly-CSharp
|
|
||||||
ClassName: HeavenStudio.SuperCurveObject/PathPos
|
|
||||||
- AssemblyName: Assembly-CSharp
|
|
||||||
ClassName: HeavenStudio.SuperCurveObject/PathValue
|
|
||||||
Assets:
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/Neutral.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowBlue1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/SpecialOverlay.controller
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/ballStartBlue.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRedLow3.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiCrouch.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/tossboys.png
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowBlueHigh1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/Akachan.controller
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowKeep.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoIdle.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellowLow1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellowHigh2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRedHigh3.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRedHigh1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redBlue1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/Aokun.controller
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoBop.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redBlueHigh1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRed1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaBop.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/Hit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/TossBoysBall.controller
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueYellowHigh1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/FadeIn.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRedLow1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueYellow1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaPrepareHand.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaIdle.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRedHigh3.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redPop.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowBlueLow2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redKeep.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueKeep.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/bluePop.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiSlap.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueYellow2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRedLow3.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiMiss.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowBlue2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellow2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoBarely.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/tossboyspecial.png
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/whiff.wav
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellowLow2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellow1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRed1.ogg
|
|
||||||
- Assets/Resources/Games/tossBoys.prefab
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/ballStartRed.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaCrouch.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowBlueHigh2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redSpecial1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redBlueLow2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoCrouchHit.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueSpecial2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redSpecialCharge.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redBlueLow1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRedLow2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoHit.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueYellowLow2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/WiggleBall.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redBlue2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRed2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redSpecial2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/HatchHolder.controller
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoMiss.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/HatchOpen.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaCrouchHit.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowBlueLow1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiBop.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueYellowHigh2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRedHigh1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/NeutralBall.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellow3.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoPrepareHand.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiHit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiIdle.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRed2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowSpecial.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueYellowLow1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaSlap.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRed3.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRedHigh2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoWhiff.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redBlueHigh2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/Kiiyan.controller
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/misshit.wav
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRed3.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoCrouch.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/ballStartYellow.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaWhiff.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/ballStart.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRedLow2.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiWhiff.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueRedHigh2.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/redYellowHigh1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/HatchClosed.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaHit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiBarely.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiPrepareHand.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/blueSpecial1.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AoSlap.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/KiiCrouchHit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaMiss.anim
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowRedLow1.ogg
|
|
||||||
- Assets/Resources/Sfx/games/tossBoys/yellowPop.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/TossBoys/Animations/AkaBarely.anim
|
|
||||||
Dependencies: []
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: a1446694fbad3354eb36d4336bc021ac
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: ff55e53ad6e7555429c6636686c0d049
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 58ce7f114749c0842b51b14f35848c80
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,74 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 2206093878
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 6fe9c9dd3f0c98919984a823d399e89a
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: a523720804762713f8c3b99f7d897dd5
|
|
||||||
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: b62617c2e80c5e2488da3c603bc21022, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 8f2919d01c742294387031de86ef710b, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: b107d57be99ffe34ea2d14c49c15ff80, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 6e25ab9ffcdb4c945ace0b7c8db5bd9a, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 9d323f90f8c1dd54da6d53d21013cf5c, type: 3}
|
|
||||||
- Class: 115
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
- Class: 212
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
- Class: 213
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
SerializeReferenceClassIdentifiers: []
|
|
||||||
Assets:
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/GirlSad.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/WizardAnimator.controller
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/GirlIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantHit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantEatLoop.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/Magic.anim
|
|
||||||
- Assets/Resources/Games/wizardsWaltz.prefab
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantAnimator.controller
|
|
||||||
- Assets/Resources/Sfx/games/wizardsWaltz/plant.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/wizardswaltz_bg.png
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/WizardMagic.anim
|
|
||||||
- Assets/Resources/Sfx/games/wizardsWaltz/grow.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/WizardIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantIdleFlower.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/WandAnimator.controller
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/GirlAnimator.controller
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantEat.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/WandIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/GirlHappy.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/GirlFlowerAnimator.controller
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/MagicAnimator.controller
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/wizardswaltz_main.png
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/GirlFlower.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantIdlePlant.anim
|
|
||||||
- Assets/Resources/Sprites/Games/WizardsWaltz/Animations/PlantAppear.anim
|
|
||||||
- Assets/Resources/Sfx/games/wizardsWaltz/wand.ogg
|
|
||||||
Dependencies: []
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: a0c9202e4f789904d806c84482cfacac
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 5645ba449bf63774ab1c73efc99a0433
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 8ca0645c3a0eb27428dfa5f2a7226dbb
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,101 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 1343714519
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: a2bdf947ec7535dd0f3a7ab45fc9b661
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 01ef6a58e233b3cb8a54b2d9152d3e5e
|
|
||||||
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: f7dae340f4a85ba44ab2f8cfd4429430, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 066a41e004f415b4eb74d5e61a2aadbe, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: aed0e700f9c7b1a4ab7209b8117d78ce, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: b0cca3244f403c24f819a870f31cdc29, 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/BlueBear/Materials/BlueBearCrumb.shader
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/Smile.anim
|
|
||||||
- Assets/Resources/Games/blueBear.prefab
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/BiteR.anim
|
|
||||||
- Assets/Resources/Sfx/games/blueBear/chompDonut.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/donutCrumb_0.controller
|
|
||||||
- Assets/Resources/Sfx/games/blueBear/chompCake.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/BackgroundScene.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Crumbs.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/ThoughtBubbleIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/CryIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Wind.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Materials/BlueBearCrumb.mat
|
|
||||||
- Assets/Resources/Sfx/games/blueBear/donut.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/DonutIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/OpenEyes.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/BagHolder.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/BackgroundIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/StopSmile.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/NoCrumbs.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/crumb_8x8.png
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/ThoughtBubble 1.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/NoWind.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/Squashing.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/HeadAndBody.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/CryBiteL.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/Open.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/ThoughtBubble.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/donutCrumb_1.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Crumb0Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/CakeSquash.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/story.png
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/DonutBag.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/Sigh.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/CakeIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Crumb1Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/bear.png
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/CakeBag.controller
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/DonutSquash.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/EyesClosed.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/crumb_32x32.png
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/CryBiteR.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/Sad.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/crumb_16x16.png
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Wind.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/Bags/Idle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/BiteL.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/SmileIdle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/BlueBear/Animations/HeadAndBody/CryOpen.anim
|
|
||||||
- Assets/Resources/Sfx/games/blueBear/cake.ogg
|
|
||||||
Dependencies: []
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 3b7df5111c88be048b3f78aba30ab706
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 10d9891cc5721ff44a5521d4e2cec7e8
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: ff045cbdad7be3a42b227b9d0ecf2101
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,82 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 763472146
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 5941e1757fea6a56f10397ebd34c5ae8
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: cb525cb072c33c8e5692f23a42da04e4
|
|
||||||
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: []
|
|
||||||
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: []
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: b3cb3ae05dfceca46a64e7d5240ca4bd
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: c62909137e815694ab4743b29a15cdff
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 46116a84c045f3041b139621685d59a6
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
Binary file not shown.
|
@ -1,161 +0,0 @@
|
||||||
ManifestFileVersion: 0
|
|
||||||
CRC: 228563353
|
|
||||||
Hashes:
|
|
||||||
AssetFileHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: c11b541d6d261d4dd9290709670eab03
|
|
||||||
TypeTreeHash:
|
|
||||||
serializedVersion: 2
|
|
||||||
Hash: 6a87535638e108a5e3588d5397c1cf0a
|
|
||||||
HashAppended: 0
|
|
||||||
ClassTypes:
|
|
||||||
- Class: 1
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
- Class: 4
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
- Class: 20
|
|
||||||
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: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 71c1514a6bd24e1e882cebbe1904ce04, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 3f2575369f43af4419d4d92d0de9e23b, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: 84a92b25f83d49b9bc132d206b370281, type: 3}
|
|
||||||
- Class: 114
|
|
||||||
Script: {fileID: 11500000, guid: e7756ed68ef3b4a468bd034afafba0cf, type: 3}
|
|
||||||
- Class: 115
|
|
||||||
Script: {instanceID: 0}
|
|
||||||
- Class: 128
|
|
||||||
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: 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_SpriteCharacter
|
|
||||||
- AssemblyName: Unity.TextMeshPro
|
|
||||||
ClassName: TMPro.TMP_SpriteGlyph
|
|
||||||
- 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/Sprites/Games/FirstContact/Animations/translator_anim/translator_speakidle.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/TranslatedTextboxSDF.mat
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/ALIEN_PLAYER_B.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/textboxSDF.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/crowdIdle.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/BobB.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_lookAt/alien_lookAt.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/missionControl_success.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/translator_anim/translator_idle.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/shakeHead.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_talk/Alien.controller
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/alienNoHit.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/nod.ogg
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/AlienTextboxMaterial.mat
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/MissionControl.controller
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/Live.controller
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/successCrowd.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob8.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/liveBar.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/interpreterTextbox0.png
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/failContact.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob4.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/translator_anim/interpret_talk/translator_speak.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob3.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/interpreter_obj_rot.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/TranslatedTextboxMaterial.mat
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/translator_anim/interpret_look/translator_lookAtAlien.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/template_firstContact.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/mission_control_anim/missionControl_success.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/textIcnSDF.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/alienSymbol.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_bad/alien_noHit.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_point/alien_point.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/translator_anim/interpret_talk_alt/translator_eh.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/fail.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/ALIEN_PLAYER_A.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob2.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_bad/alien_fail.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/alien_textBubble.jpg
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob5.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/AlienContact.asset
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob10.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/missionControl_fail.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/successExtra1.wav
|
|
||||||
- Assets/Resources/Games/firstContact.prefab
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/translator_anim/Translator.controller
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/TranslatedTextboxMaterialFX.mat
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/interpreter_bg_00_rot.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/mission_control_anim/missionControl_fail.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/borderAlien.png
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob6.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob1.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/whistle.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/CrowdOfAliens.controller
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/interpreterTextboxes.png
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/ALIEN_PLAYER_MISS2_A.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_idle/alien_idle.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob9.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/translator_anim/interpret_nod/translator_lookAtAlien_nod.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_good/alien_success.anim
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/successExtra2.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/turnover.wav
|
|
||||||
- Assets/Resources/Sfx/games/firstContact/Bob7.wav
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/alien_anim/alien_talk/alien_talk.anim
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/Animations/mission_control_anim/MissionControl.controller
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/bar.png
|
|
||||||
- Assets/Resources/Sprites/Games/FirstContact/interpreter_bg_01_rot.png
|
|
||||||
Dependencies: []
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 9d0af20b4289da14b958b802ee7e66e5
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,7 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: c9d73b2d0d4333448881a44884be277b
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: e7c6d5c19fcc126408c22982a3dbc299
|
|
||||||
folderAsset: yes
|
|
||||||
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