Merge branch 'master' into manzai-creation
This commit is contained in:
commit
0ef8c34556
2
.github/workflows/activation.yml
vendored
2
.github/workflows/activation.yml
vendored
|
|
@ -15,7 +15,7 @@ jobs:
|
||||||
|
|
||||||
# Upload artifact (Unity_v20XX.X.XXXX.alf)
|
# Upload artifact (Unity_v20XX.X.XXXX.alf)
|
||||||
- name: Expose as artifact
|
- name: Expose as artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
|
name: ${{ steps.getManualLicenseFile.outputs.filePath }}
|
||||||
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
|
path: ${{ steps.getManualLicenseFile.outputs.filePath }}
|
||||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
|
@ -35,12 +35,12 @@ jobs:
|
||||||
swap-storage: false
|
swap-storage: false
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
# with:
|
# with:
|
||||||
# lfs: true
|
# lfs: true
|
||||||
|
|
||||||
# Cache reused Library files to speed up compilation
|
# Cache reused Library files to speed up compilation
|
||||||
- uses: actions/cache@v3
|
- uses: actions/cache@v4.0.0
|
||||||
with:
|
with:
|
||||||
path: Library
|
path: Library
|
||||||
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
key: Library-${{ hashFiles('Assets/**', 'Packages/**', 'ProjectSettings/**') }}
|
||||||
|
|
@ -56,7 +56,7 @@ jobs:
|
||||||
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
# githubToken: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Build project
|
- name: Build project
|
||||||
uses: game-ci/unity-builder@v2
|
uses: game-ci/unity-builder@v4
|
||||||
env:
|
env:
|
||||||
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
UNITY_LICENSE: ${{ secrets.UNITY_LICENSE }}
|
||||||
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
|
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
|
||||||
|
|
|
||||||
25
.github/workflows/cherry-tirage.yml
vendored
Normal file
25
.github/workflows/cherry-tirage.yml
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
types: ["closed"]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
cherry_no_future_to_current:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Cherry pick into current release
|
||||||
|
if: ${{ !contains(github.event.pull_request.labels.*.name, 'release-2') }}
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Cherry pick into current release
|
||||||
|
uses: xealth/cherry-pick-action@v1.0.0
|
||||||
|
with:
|
||||||
|
branch: release_1_patches
|
||||||
|
labels: |
|
||||||
|
cherry-pick
|
||||||
|
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
@ -1,12 +0,0 @@
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace Discord
|
|
||||||
{
|
|
||||||
public partial class ActivityManager
|
|
||||||
{
|
|
||||||
public void RegisterCommand()
|
|
||||||
{
|
|
||||||
RegisterCommand(null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
using System;
|
|
||||||
|
|
||||||
namespace Discord
|
|
||||||
{
|
|
||||||
static class Constants
|
|
||||||
{
|
|
||||||
public const string DllName = "discord_game_sdk";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,53 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
#if UNITY_EDITOR || UNITY_STANDALONE
|
|
||||||
using UnityEngine;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
namespace Discord
|
|
||||||
{
|
|
||||||
public partial struct ImageHandle
|
|
||||||
{
|
|
||||||
static public ImageHandle User(Int64 id)
|
|
||||||
{
|
|
||||||
return User(id, 128);
|
|
||||||
}
|
|
||||||
|
|
||||||
static public ImageHandle User(Int64 id, UInt32 size)
|
|
||||||
{
|
|
||||||
return new ImageHandle
|
|
||||||
{
|
|
||||||
Type = ImageType.User,
|
|
||||||
Id = id,
|
|
||||||
Size = size,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public partial class ImageManager
|
|
||||||
{
|
|
||||||
public void Fetch(ImageHandle handle, FetchHandler callback)
|
|
||||||
{
|
|
||||||
Fetch(handle, false, callback);
|
|
||||||
}
|
|
||||||
|
|
||||||
public byte[] GetData(ImageHandle handle)
|
|
||||||
{
|
|
||||||
var dimensions = GetDimensions(handle);
|
|
||||||
var data = new byte[dimensions.Width * dimensions.Height * 4];
|
|
||||||
GetData(handle, data);
|
|
||||||
return data;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if UNITY_EDITOR || UNITY_STANDALONE
|
|
||||||
public Texture2D GetTexture(ImageHandle handle)
|
|
||||||
{
|
|
||||||
var dimensions = GetDimensions(handle);
|
|
||||||
var texture = new Texture2D((int)dimensions.Width, (int)dimensions.Height, TextureFormat.RGBA32, false, true);
|
|
||||||
texture.LoadRawTextureData(GetData(handle));
|
|
||||||
texture.Apply();
|
|
||||||
return texture;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Discord
|
|
||||||
{
|
|
||||||
public partial class LobbyManager
|
|
||||||
{
|
|
||||||
public IEnumerable<User> GetMemberUsers(Int64 lobbyID)
|
|
||||||
{
|
|
||||||
var memberCount = MemberCount(lobbyID);
|
|
||||||
var members = new List<User>();
|
|
||||||
for (var i = 0; i < memberCount; i++)
|
|
||||||
{
|
|
||||||
members.Add(GetMemberUser(lobbyID, GetMemberUserId(lobbyID, i)));
|
|
||||||
}
|
|
||||||
return members;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void SendLobbyMessage(Int64 lobbyID, string data, SendLobbyMessageHandler handler)
|
|
||||||
{
|
|
||||||
SendLobbyMessage(lobbyID, Encoding.UTF8.GetBytes(data), handler);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 9f595176ca2beab4da4f6473f1a4d102
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Discord
|
|
||||||
{
|
|
||||||
public partial class StorageManager
|
|
||||||
{
|
|
||||||
public IEnumerable<FileStat> Files()
|
|
||||||
{
|
|
||||||
var fileCount = Count();
|
|
||||||
var files = new List<FileStat>();
|
|
||||||
for (var i = 0; i < fileCount; i++)
|
|
||||||
{
|
|
||||||
files.Add(StatAt(i));
|
|
||||||
}
|
|
||||||
return files;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 0de83ab0ec089db4eb806d35d6dd9558
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Discord
|
|
||||||
{
|
|
||||||
public partial class StoreManager
|
|
||||||
{
|
|
||||||
public IEnumerable<Entitlement> GetEntitlements()
|
|
||||||
{
|
|
||||||
var count = CountEntitlements();
|
|
||||||
var entitlements = new List<Entitlement>();
|
|
||||||
for (var i = 0; i < count; i++)
|
|
||||||
{
|
|
||||||
entitlements.Add(GetEntitlementAt(i));
|
|
||||||
}
|
|
||||||
return entitlements;
|
|
||||||
}
|
|
||||||
|
|
||||||
public IEnumerable<Sku> GetSkus()
|
|
||||||
{
|
|
||||||
var count = CountSkus();
|
|
||||||
var skus = new List<Sku>();
|
|
||||||
for (var i = 0; i < count; i++)
|
|
||||||
{
|
|
||||||
skus.Add(GetSkuAt(i));
|
|
||||||
}
|
|
||||||
return skus;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,11 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 12e503df03fd6734d8f085997e64656c
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
|
|
@ -1,63 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 96fc096f6b288424faf79ea974b7041e
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
: Any
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
Exclude Editor: 0
|
|
||||||
Exclude Linux64: 1
|
|
||||||
Exclude OSXUniversal: 0
|
|
||||||
Exclude Win: 1
|
|
||||||
Exclude Win64: 1
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: ARM64
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
OS: OSX
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: ARM64
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
|
|
@ -1,63 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 84f8495f7ca76e94c9e4bfe9675f534c
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
: Any
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
Exclude Editor: 0
|
|
||||||
Exclude Linux64: 1
|
|
||||||
Exclude OSXUniversal: 0
|
|
||||||
Exclude Win: 1
|
|
||||||
Exclude Win64: 1
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: ARM64
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
OS: OSX
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: ARM64
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: e291cd87df3992b40b4cb0fc5f542185
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
|
|
@ -1,63 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: ba4f73ad56fdd254c9406111c6702f84
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
: Any
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
Exclude Editor: 0
|
|
||||||
Exclude Linux64: 0
|
|
||||||
Exclude OSXUniversal: 0
|
|
||||||
Exclude Win: 0
|
|
||||||
Exclude Win64: 0
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
OS: AnyOS
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,52 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: ffaf5645d42da1d40b14356395eb1bb8
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
|
|
@ -1,80 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: cbdb66c634dc7af4cb711bca303d2c1a
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
: Any
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
Exclude Android: 0
|
|
||||||
Exclude Editor: 0
|
|
||||||
Exclude Linux64: 0
|
|
||||||
Exclude OSXUniversal: 0
|
|
||||||
Exclude Win: 0
|
|
||||||
Exclude Win64: 0
|
|
||||||
Exclude iOS: 0
|
|
||||||
- first:
|
|
||||||
Android: Android
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: ARMv7
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
OS: AnyOS
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
- first:
|
|
||||||
iPhone: iOS
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
AddToEmbeddedBinaries: false
|
|
||||||
CPU: AnyCPU
|
|
||||||
CompileFlags:
|
|
||||||
FrameworkDependencies:
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
|
|
@ -1,63 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: f5327cb3294b2bc46a8451ef4c09a855
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
: Any
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
Exclude Editor: 0
|
|
||||||
Exclude Linux64: 0
|
|
||||||
Exclude OSXUniversal: 1
|
|
||||||
Exclude Win: 0
|
|
||||||
Exclude Win64: 0
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86_64
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
OS: AnyOS
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,8 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 70173042601fc1846a90b0c8ea926df4
|
|
||||||
folderAsset: yes
|
|
||||||
DefaultImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,63 +0,0 @@
|
||||||
fileFormatVersion: 2
|
|
||||||
guid: 7dc43ba202aaeee43b83eda90c7cf67b
|
|
||||||
PluginImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
iconMap: {}
|
|
||||||
executionOrder: {}
|
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
|
||||||
isOverridable: 0
|
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
|
||||||
- first:
|
|
||||||
: Any
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
Exclude Editor: 1
|
|
||||||
Exclude Linux64: 0
|
|
||||||
Exclude OSXUniversal: 0
|
|
||||||
Exclude Win: 0
|
|
||||||
Exclude Win64: 0
|
|
||||||
- first:
|
|
||||||
Any:
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings: {}
|
|
||||||
- first:
|
|
||||||
Editor: Editor
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
DefaultValueInitialized: true
|
|
||||||
OS: Windows
|
|
||||||
- first:
|
|
||||||
Standalone: Linux64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: OSXUniversal
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: x86
|
|
||||||
- first:
|
|
||||||
Standalone: Win
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
- first:
|
|
||||||
Standalone: Win64
|
|
||||||
second:
|
|
||||||
enabled: 1
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 7609f7b6787a54496aa41a3053fcc76a
|
guid: 8a8e6577c9e32f04c85e89a8f43e92fa
|
||||||
timeCreated: 1483902788
|
|
||||||
licenseType: Pro
|
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
defaultReferences: []
|
defaultReferences: []
|
||||||
executionOrder: 0
|
executionOrder: 0
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: ddc4e7b83981f244ba9a26b88c18cb67
|
guid: cb2d899d659d1184bb966272a336be62
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1,46 +1,25 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: e60958662eed5413d86143a0a69b731e
|
guid: 74fab40b825d7954582ce1cf75b15184
|
||||||
PluginImporter:
|
PluginImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
iconMap: {}
|
iconMap: {}
|
||||||
executionOrder: {}
|
executionOrder: {}
|
||||||
defineConstraints: []
|
|
||||||
isPreloaded: 0
|
isPreloaded: 0
|
||||||
isOverridable: 0
|
isOverridable: 0
|
||||||
isExplicitlyReferenced: 0
|
|
||||||
validateReferences: 1
|
|
||||||
platformData:
|
platformData:
|
||||||
- first:
|
- first:
|
||||||
: Any
|
'': Any
|
||||||
second:
|
second:
|
||||||
enabled: 0
|
enabled: 0
|
||||||
settings:
|
settings:
|
||||||
Exclude Android: 1
|
|
||||||
Exclude Editor: 0
|
Exclude Editor: 0
|
||||||
Exclude Linux: 1
|
Exclude Linux: 1
|
||||||
Exclude Linux64: 1
|
Exclude Linux64: 1
|
||||||
Exclude LinuxUniversal: 1
|
Exclude LinuxUniversal: 1
|
||||||
Exclude OSXIntel: 1
|
|
||||||
Exclude OSXIntel64: 1
|
|
||||||
Exclude OSXUniversal: 1
|
Exclude OSXUniversal: 1
|
||||||
Exclude WebGL: 1
|
|
||||||
Exclude Win: 0
|
Exclude Win: 0
|
||||||
Exclude Win64: 0
|
Exclude Win64: 0
|
||||||
Exclude iOS: 1
|
|
||||||
- first:
|
|
||||||
: Editor
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: AnyCPU
|
|
||||||
OS: AnyOS
|
|
||||||
- first:
|
|
||||||
Android: Android
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: ARMv7
|
|
||||||
- first:
|
- first:
|
||||||
Any:
|
Any:
|
||||||
second:
|
second:
|
||||||
|
|
@ -51,7 +30,9 @@ PluginImporter:
|
||||||
second:
|
second:
|
||||||
enabled: 1
|
enabled: 1
|
||||||
settings:
|
settings:
|
||||||
|
CPU: AnyCPU
|
||||||
DefaultValueInitialized: true
|
DefaultValueInitialized: true
|
||||||
|
OS: AnyOS
|
||||||
- first:
|
- first:
|
||||||
Facebook: Win
|
Facebook: Win
|
||||||
second:
|
second:
|
||||||
|
|
@ -82,18 +63,6 @@ PluginImporter:
|
||||||
enabled: 0
|
enabled: 0
|
||||||
settings:
|
settings:
|
||||||
CPU: None
|
CPU: None
|
||||||
- first:
|
|
||||||
Standalone: OSXIntel
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
|
||||||
Standalone: OSXIntel64
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CPU: None
|
|
||||||
- first:
|
- first:
|
||||||
Standalone: OSXUniversal
|
Standalone: OSXUniversal
|
||||||
second:
|
second:
|
||||||
|
|
@ -118,13 +87,6 @@ PluginImporter:
|
||||||
enabled: 0
|
enabled: 0
|
||||||
settings:
|
settings:
|
||||||
CPU: AnyCPU
|
CPU: AnyCPU
|
||||||
- first:
|
|
||||||
iPhone: iOS
|
|
||||||
second:
|
|
||||||
enabled: 0
|
|
||||||
settings:
|
|
||||||
CompileFlags:
|
|
||||||
FrameworkDependencies:
|
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
Binary file not shown.
|
|
@ -3,7 +3,7 @@
|
||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>22D68</string>
|
<string>21A559</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>English</string>
|
<string>English</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
|
|
@ -31,20 +31,20 @@
|
||||||
<key>DTCompiler</key>
|
<key>DTCompiler</key>
|
||||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
<key>DTPlatformBuild</key>
|
<key>DTPlatformBuild</key>
|
||||||
<string>14C18</string>
|
<string>13A1030d</string>
|
||||||
<key>DTPlatformName</key>
|
<key>DTPlatformName</key>
|
||||||
<string>macosx</string>
|
<string>macosx</string>
|
||||||
<key>DTPlatformVersion</key>
|
<key>DTPlatformVersion</key>
|
||||||
<string>13.1</string>
|
<string>12.0</string>
|
||||||
<key>DTSDKBuild</key>
|
<key>DTSDKBuild</key>
|
||||||
<string>22C55</string>
|
<string>21A344</string>
|
||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx13.1</string>
|
<string>macosx12.0</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>1420</string>
|
<string>1310</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>14C18</string>
|
<string>13A1030d</string>
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
<string>13.1</string>
|
<string>12.0</string>
|
||||||
</dict>
|
</dict>
|
||||||
</plist>
|
</plist>
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: ce685769797f44046afa3e567860c94c
|
guid: ce685769797f44046afa3e567860c94c
|
||||||
timeCreated: 1505756861
|
|
||||||
licenseType: Pro
|
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: ddf122e0e89124ce78aacfeecb3ec554
|
guid: ddf122e0e89124ce78aacfeecb3ec554
|
||||||
timeCreated: 1508179371
|
|
||||||
licenseType: Pro
|
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,8 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
<<<<<<<< HEAD:Assets/Plugins/StandaloneFileBrowser/Plugins/StandaloneFileBrowser.bundle/Contents/_CodeSignature.meta
|
guid: e6cebbdcd59894d7a8bdee7372ecad5d
|
||||||
guid: 7c3db81ca6b7837489ddd39d07d8a941
|
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
========
|
|
||||||
guid: e329403cfc5867042884e77dd4796d34
|
|
||||||
NativeFormatImporter:
|
|
||||||
>>>>>>>> release_1:Assets/Resources/Sprites/Games/Lockstep/Animations/Bach.controller.meta
|
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
mainObjectFileID: 9100000
|
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 5905078a1ef7dab4fa302ee6555826c0
|
guid: c817908af99224e82a0f7ca523cfeeee
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
|
|
|
||||||
|
|
@ -48,10 +48,7 @@ var StandaloneFileBrowserWebGLPlugin = {
|
||||||
}
|
}
|
||||||
document.body.appendChild(fileInput);
|
document.body.appendChild(fileInput);
|
||||||
|
|
||||||
document.onmouseup = function() {
|
fileInput.click();
|
||||||
fileInput.click();
|
|
||||||
document.onmouseup = null;
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
|
|
||||||
// Save file
|
// Save file
|
||||||
|
|
|
||||||
14
Assets/Plugins/StandaloneFileBrowser/SFB.Runtime.asmdef
Normal file
14
Assets/Plugins/StandaloneFileBrowser/SFB.Runtime.asmdef
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"name": "SFB.Runtime",
|
||||||
|
"rootNamespace": "",
|
||||||
|
"references": [],
|
||||||
|
"includePlatforms": [],
|
||||||
|
"excludePlatforms": [],
|
||||||
|
"allowUnsafeCode": false,
|
||||||
|
"overrideReferences": false,
|
||||||
|
"precompiledReferences": [],
|
||||||
|
"autoReferenced": true,
|
||||||
|
"defineConstraints": [],
|
||||||
|
"versionDefines": [],
|
||||||
|
"noEngineReferences": false
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: ce432116effeafc4083f70bdcfcfaebb
|
||||||
|
AssemblyDefinitionImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 3c708be74128e4ced9b79eaaf80e8443
|
guid: 6ac7447aa2a17e641bf4918306b8234e
|
||||||
timeCreated: 1483902788
|
|
||||||
licenseType: Pro
|
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
defaultReferences: []
|
defaultReferences: []
|
||||||
executionOrder: 0
|
executionOrder: 0
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 2650af8de2cda46b99b1bc7cf5d30ca5
|
guid: 105f81a0406213b48a08543579184a2d
|
||||||
timeCreated: 1483902788
|
|
||||||
licenseType: Pro
|
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
defaultReferences: []
|
defaultReferences: []
|
||||||
executionOrder: 0
|
executionOrder: 0
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,11 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 5d3a668018554b8a89c3fe12de72b60c
|
guid: 14ff0babaa1ef21468471738e2650b65
|
||||||
timeCreated: 1538067919
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: bcb49ddb0ed5644fda9c3b055cafa27a
|
guid: b499e1a326c0d0d4d92d6b2f2378361d
|
||||||
timeCreated: 1483902788
|
|
||||||
licenseType: Pro
|
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
defaultReferences: []
|
defaultReferences: []
|
||||||
executionOrder: 0
|
executionOrder: 0
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using Ookii.Dialogs;
|
using Ookii.Dialogs.WinForms;
|
||||||
|
|
||||||
namespace SFB {
|
namespace SFB {
|
||||||
// For fullscreen support
|
// For fullscreen support
|
||||||
|
|
@ -24,6 +24,8 @@ namespace SFB {
|
||||||
public string[] OpenFilePanel(string title, string directory, ExtensionFilter[] extensions, bool multiselect) {
|
public string[] OpenFilePanel(string title, string directory, ExtensionFilter[] extensions, bool multiselect) {
|
||||||
var fd = new VistaOpenFileDialog();
|
var fd = new VistaOpenFileDialog();
|
||||||
fd.Title = title;
|
fd.Title = title;
|
||||||
|
fd.InitialDirectory = directory;
|
||||||
|
fd.Multiselect = multiselect;
|
||||||
if (extensions != null) {
|
if (extensions != null) {
|
||||||
fd.Filter = GetFilterFromFileExtensionList(extensions);
|
fd.Filter = GetFilterFromFileExtensionList(extensions);
|
||||||
fd.FilterIndex = 1;
|
fd.FilterIndex = 1;
|
||||||
|
|
@ -31,10 +33,6 @@ namespace SFB {
|
||||||
else {
|
else {
|
||||||
fd.Filter = string.Empty;
|
fd.Filter = string.Empty;
|
||||||
}
|
}
|
||||||
fd.Multiselect = multiselect;
|
|
||||||
if (!string.IsNullOrEmpty(directory)) {
|
|
||||||
fd.FileName = GetDirectoryPath(directory);
|
|
||||||
}
|
|
||||||
var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
|
var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
|
||||||
var filenames = res == DialogResult.OK ? fd.FileNames : new string[0];
|
var filenames = res == DialogResult.OK ? fd.FileNames : new string[0];
|
||||||
fd.Dispose();
|
fd.Dispose();
|
||||||
|
|
@ -48,11 +46,10 @@ namespace SFB {
|
||||||
public string[] OpenFolderPanel(string title, string directory, bool multiselect) {
|
public string[] OpenFolderPanel(string title, string directory, bool multiselect) {
|
||||||
var fd = new VistaFolderBrowserDialog();
|
var fd = new VistaFolderBrowserDialog();
|
||||||
fd.Description = title;
|
fd.Description = title;
|
||||||
if (!string.IsNullOrEmpty(directory)) {
|
fd.RootFolder = Environment.SpecialFolder.MyComputer;
|
||||||
fd.SelectedPath = GetDirectoryPath(directory);
|
fd.SelectedPath = directory;
|
||||||
}
|
|
||||||
var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
|
var res = fd.ShowDialog(new WindowWrapper(GetActiveWindow()));
|
||||||
var filenames = res == DialogResult.OK ? new []{ fd.SelectedPath } : new string[0];
|
var filenames = res == DialogResult.OK ? new[] { fd.SelectedPath } : new string[0];
|
||||||
fd.Dispose();
|
fd.Dispose();
|
||||||
return filenames;
|
return filenames;
|
||||||
}
|
}
|
||||||
|
|
@ -64,18 +61,8 @@ namespace SFB {
|
||||||
public string SaveFilePanel(string title, string directory, string defaultName, ExtensionFilter[] extensions) {
|
public string SaveFilePanel(string title, string directory, string defaultName, ExtensionFilter[] extensions) {
|
||||||
var fd = new VistaSaveFileDialog();
|
var fd = new VistaSaveFileDialog();
|
||||||
fd.Title = title;
|
fd.Title = title;
|
||||||
|
fd.InitialDirectory = directory;
|
||||||
var finalFilename = "";
|
fd.FileName = defaultName;
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(directory)) {
|
|
||||||
finalFilename = GetDirectoryPath(directory);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(defaultName)) {
|
|
||||||
finalFilename += defaultName;
|
|
||||||
}
|
|
||||||
|
|
||||||
fd.FileName = finalFilename;
|
|
||||||
if (extensions != null) {
|
if (extensions != null) {
|
||||||
fd.Filter = GetFilterFromFileExtensionList(extensions);
|
fd.Filter = GetFilterFromFileExtensionList(extensions);
|
||||||
fd.FilterIndex = 1;
|
fd.FilterIndex = 1;
|
||||||
|
|
@ -100,9 +87,10 @@ namespace SFB {
|
||||||
// .NET Framework FileDialog Filter format
|
// .NET Framework FileDialog Filter format
|
||||||
// https://msdn.microsoft.com/en-us/library/microsoft.win32.filedialog.filter
|
// https://msdn.microsoft.com/en-us/library/microsoft.win32.filedialog.filter
|
||||||
private static string GetFilterFromFileExtensionList(ExtensionFilter[] extensions) {
|
private static string GetFilterFromFileExtensionList(ExtensionFilter[] extensions) {
|
||||||
|
if (extensions == null) return "";
|
||||||
var filterString = "";
|
var filterString = "";
|
||||||
foreach (var filter in extensions) {
|
foreach (var filter in extensions) {
|
||||||
filterString += filter.Name + "(";
|
filterString += filter.Name + " (";
|
||||||
|
|
||||||
foreach (var ext in filter.Extensions) {
|
foreach (var ext in filter.Extensions) {
|
||||||
filterString += "*." + ext + ",";
|
filterString += "*." + ext + ",";
|
||||||
|
|
@ -120,17 +108,6 @@ namespace SFB {
|
||||||
filterString = filterString.Remove(filterString.Length - 1);
|
filterString = filterString.Remove(filterString.Length - 1);
|
||||||
return filterString;
|
return filterString;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string GetDirectoryPath(string directory) {
|
|
||||||
var directoryPath = Path.GetFullPath(directory);
|
|
||||||
if (!directoryPath.EndsWith("\\")) {
|
|
||||||
directoryPath += "\\";
|
|
||||||
}
|
|
||||||
if (Path.GetPathRoot(directoryPath) == directoryPath) {
|
|
||||||
return directory;
|
|
||||||
}
|
|
||||||
return Path.GetDirectoryName(directoryPath) + Path.DirectorySeparatorChar;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,7 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 194e247414a78461d83ae606c1b96917
|
guid: b0b56749f8dd99840b6a2d81dc5a336d
|
||||||
timeCreated: 1483902788
|
|
||||||
licenseType: Pro
|
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
defaultReferences: []
|
defaultReferences: []
|
||||||
executionOrder: 0
|
executionOrder: 0
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
107
Assets/Resources/Fonts/KurokaneCommentText.mat
Normal file
107
Assets/Resources/Fonts/KurokaneCommentText.mat
Normal file
|
|
@ -0,0 +1,107 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!21 &2100000
|
||||||
|
Material:
|
||||||
|
serializedVersion: 8
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_Name: KurokaneCommentText
|
||||||
|
m_Shader: {fileID: 4800000, guid: 68e6db2ebdc24f95958faec2be5558d6, type: 3}
|
||||||
|
m_ValidKeywords: []
|
||||||
|
m_InvalidKeywords: []
|
||||||
|
m_LightmapFlags: 4
|
||||||
|
m_EnableInstancingVariants: 0
|
||||||
|
m_DoubleSidedGI: 0
|
||||||
|
m_CustomRenderQueue: -1
|
||||||
|
stringTagMap: {}
|
||||||
|
disabledShaderPasses: []
|
||||||
|
m_SavedProperties:
|
||||||
|
serializedVersion: 3
|
||||||
|
m_TexEnvs:
|
||||||
|
- _BumpMap:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _Cube:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _FaceTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _MainTex:
|
||||||
|
m_Texture: {fileID: 7565207379736317986, guid: e5f3069ff426f2546b8168857ad6e0d4, type: 2}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
- _OutlineTex:
|
||||||
|
m_Texture: {fileID: 0}
|
||||||
|
m_Scale: {x: 1, y: 1}
|
||||||
|
m_Offset: {x: 0, y: 0}
|
||||||
|
m_Ints: []
|
||||||
|
m_Floats:
|
||||||
|
- _Ambient: 0.5
|
||||||
|
- _Bevel: 0.5
|
||||||
|
- _BevelClamp: 0
|
||||||
|
- _BevelOffset: 0
|
||||||
|
- _BevelRoundness: 0
|
||||||
|
- _BevelWidth: 0
|
||||||
|
- _BumpFace: 0
|
||||||
|
- _BumpOutline: 0
|
||||||
|
- _ColorMask: 15
|
||||||
|
- _CullMode: 0
|
||||||
|
- _Diffuse: 0.5
|
||||||
|
- _FaceDilate: 0.5
|
||||||
|
- _FaceUVSpeedX: 0
|
||||||
|
- _FaceUVSpeedY: 0
|
||||||
|
- _GlowInner: 0.05
|
||||||
|
- _GlowOffset: 0
|
||||||
|
- _GlowOuter: 0.05
|
||||||
|
- _GlowPower: 0.75
|
||||||
|
- _GradientScale: 10
|
||||||
|
- _LightAngle: 3.1416
|
||||||
|
- _MaskSoftnessX: 0
|
||||||
|
- _MaskSoftnessY: 0
|
||||||
|
- _OutlineSoftness: 0
|
||||||
|
- _OutlineUVSpeedX: 0
|
||||||
|
- _OutlineUVSpeedY: 0
|
||||||
|
- _OutlineWidth: 0.6
|
||||||
|
- _PerspectiveFilter: 0.875
|
||||||
|
- _Reflectivity: 10
|
||||||
|
- _ScaleRatioA: 0.6990291
|
||||||
|
- _ScaleRatioB: 0.28125
|
||||||
|
- _ScaleRatioC: 0.28125
|
||||||
|
- _ScaleX: 1
|
||||||
|
- _ScaleY: 1
|
||||||
|
- _ShaderFlags: 0
|
||||||
|
- _Sharpness: 0
|
||||||
|
- _SpecularPower: 2
|
||||||
|
- _Stencil: 0
|
||||||
|
- _StencilComp: 8
|
||||||
|
- _StencilOp: 0
|
||||||
|
- _StencilReadMask: 255
|
||||||
|
- _StencilWriteMask: 255
|
||||||
|
- _TextureHeight: 2048
|
||||||
|
- _TextureWidth: 2048
|
||||||
|
- _UnderlayDilate: 0
|
||||||
|
- _UnderlayOffsetX: 0
|
||||||
|
- _UnderlayOffsetY: 0
|
||||||
|
- _UnderlaySoftness: 0
|
||||||
|
- _VertexOffsetX: 0
|
||||||
|
- _VertexOffsetY: 0
|
||||||
|
- _WeightBold: 0.75
|
||||||
|
- _WeightNormal: 0
|
||||||
|
m_Colors:
|
||||||
|
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
|
||||||
|
- _EnvMatrixRotation: {r: 0, g: 0, b: 0, a: 0}
|
||||||
|
- _FaceColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _GlowColor: {r: 0, g: 1, b: 0, a: 0.5}
|
||||||
|
- _MaskCoord: {r: 0, g: 0, b: 32767, a: 32767}
|
||||||
|
- _OutlineColor: {r: 1, g: 0.83137256, b: 0, a: 1}
|
||||||
|
- _ReflectFaceColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _ReflectOutlineColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
- _SpecularColor: {r: 1, g: 1, b: 1, a: 1}
|
||||||
|
- _UnderlayColor: {r: 0, g: 0, b: 0, a: 0.5}
|
||||||
|
m_BuildTextureStacks: []
|
||||||
8
Assets/Resources/Fonts/KurokaneCommentText.mat.meta
Normal file
8
Assets/Resources/Fonts/KurokaneCommentText.mat.meta
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 26a467f586143104f8f45e45e84ccd93
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
1173
Assets/Resources/Fonts/Mems.asset
Normal file
1173
Assets/Resources/Fonts/Mems.asset
Normal file
File diff suppressed because it is too large
Load diff
8
Assets/Resources/Fonts/Mems.asset.meta
Normal file
8
Assets/Resources/Fonts/Mems.asset.meta
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: bdb826e35491c964b9b1e0e1f8705662
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -74,7 +74,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -296,7 +296,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -380,7 +380,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -614,7 +614,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -839,7 +839,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -881,18 +881,8 @@ RectTransform:
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 4405228065007432436}
|
- {fileID: 4405228065007432436}
|
||||||
- {fileID: 926803511865261909}
|
- {fileID: 8284805101962113762}
|
||||||
- {fileID: 2483520153194773728}
|
- {fileID: 5226783559850429729}
|
||||||
- {fileID: 23398713494082221}
|
|
||||||
- {fileID: 5794830076795771464}
|
|
||||||
- {fileID: 4558807675601686787}
|
|
||||||
- {fileID: 1756659025686986699}
|
|
||||||
- {fileID: 3145770816593845091}
|
|
||||||
- {fileID: 7080074331057963043}
|
|
||||||
- {fileID: 2608975278585726655}
|
|
||||||
- {fileID: 2800225648493660279}
|
|
||||||
- {fileID: 6788972830858619932}
|
|
||||||
- {fileID: 2107749384676224915}
|
|
||||||
m_Father: {fileID: 2168096156054789972}
|
m_Father: {fileID: 2168096156054789972}
|
||||||
m_RootOrder: 2
|
m_RootOrder: 2
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
|
@ -1120,7 +1110,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -1288,7 +1278,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -1372,7 +1362,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.57254905}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -1573,8 +1563,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1502138646470043659}
|
m_GameObject: {fileID: 1502138646470043659}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 2.18}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -1588,12 +1578,12 @@ RectTransform:
|
||||||
- {fileID: 77958733345222368}
|
- {fileID: 77958733345222368}
|
||||||
- {fileID: 3409895022873260347}
|
- {fileID: 3409895022873260347}
|
||||||
- {fileID: 3240854059252596719}
|
- {fileID: 3240854059252596719}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 8284805101962113762}
|
||||||
m_RootOrder: 4
|
m_RootOrder: 1
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 0, y: 9.76}
|
m_AnchoredPosition: {x: -0.0099983215, y: 4.879999}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &1525025648366084942
|
--- !u!1 &1525025648366084942
|
||||||
|
|
@ -1754,7 +1744,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.8509804}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2007,7 +1997,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2091,7 +2081,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2175,7 +2165,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2259,7 +2249,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2460,8 +2450,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 2198155337455343688}
|
m_GameObject: {fileID: 2198155337455343688}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -2.3}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -2472,12 +2462,12 @@ RectTransform:
|
||||||
- {fileID: 4930761942891866694}
|
- {fileID: 4930761942891866694}
|
||||||
- {fileID: 4023598138402765673}
|
- {fileID: 4023598138402765673}
|
||||||
- {fileID: 2014704604314630246}
|
- {fileID: 2014704604314630246}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 5226783559850429729}
|
||||||
m_RootOrder: 5
|
m_RootOrder: 2
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 15.88, y: 0}
|
m_AnchoredPosition: {x: 15.870002, y: -4.8899994}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &2218334795655616443
|
--- !u!1 &2218334795655616443
|
||||||
|
|
@ -2554,7 +2544,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2671,8 +2661,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 2364807215172239617}
|
m_GameObject: {fileID: 2364807215172239617}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 2.18}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -2686,12 +2676,12 @@ RectTransform:
|
||||||
- {fileID: 8161832550679281400}
|
- {fileID: 8161832550679281400}
|
||||||
- {fileID: 26469572763793582}
|
- {fileID: 26469572763793582}
|
||||||
- {fileID: 1431543481492511005}
|
- {fileID: 1431543481492511005}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 8284805101962113762}
|
||||||
m_RootOrder: 12
|
m_RootOrder: 5
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 15.76, y: 9.76}
|
m_AnchoredPosition: {x: 15.750002, y: 4.879999}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &2379602493099699429
|
--- !u!1 &2379602493099699429
|
||||||
|
|
@ -2768,7 +2758,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.80784315}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2852,7 +2842,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -2936,7 +2926,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -3020,7 +3010,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -3053,8 +3043,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 2591902619112967187}
|
m_GameObject: {fileID: 2591902619112967187}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -2.3}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -3065,12 +3055,12 @@ RectTransform:
|
||||||
- {fileID: 8917567265747845119}
|
- {fileID: 8917567265747845119}
|
||||||
- {fileID: 2514926088813503781}
|
- {fileID: 2514926088813503781}
|
||||||
- {fileID: 251507404491927279}
|
- {fileID: 251507404491927279}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 5226783559850429729}
|
||||||
m_RootOrder: 11
|
m_RootOrder: 5
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 15.76, y: 9.78}
|
m_AnchoredPosition: {x: 15.750002, y: 4.8900003}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &2764014063411314581
|
--- !u!1 &2764014063411314581
|
||||||
|
|
@ -3315,7 +3305,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -3483,7 +3473,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -3600,8 +3590,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 3268905332919582678}
|
m_GameObject: {fileID: 3268905332919582678}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 2.18}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -3615,12 +3605,12 @@ RectTransform:
|
||||||
- {fileID: 1124821880999532318}
|
- {fileID: 1124821880999532318}
|
||||||
- {fileID: 2559310976653455869}
|
- {fileID: 2559310976653455869}
|
||||||
- {fileID: 5318853408915057115}
|
- {fileID: 5318853408915057115}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 8284805101962113762}
|
||||||
m_RootOrder: 8
|
m_RootOrder: 3
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: -15.86, y: 0}
|
m_AnchoredPosition: {x: -15.869998, y: -4.880001}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &3434848222725304509
|
--- !u!1 &3434848222725304509
|
||||||
|
|
@ -3697,7 +3687,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -3781,7 +3771,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -3865,7 +3855,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4033,7 +4023,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.57254905}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4201,7 +4191,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4285,7 +4275,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4402,8 +4392,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 3827916254657136956}
|
m_GameObject: {fileID: 3827916254657136956}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -2.3}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -4414,12 +4404,12 @@ RectTransform:
|
||||||
- {fileID: 7575864339423163732}
|
- {fileID: 7575864339423163732}
|
||||||
- {fileID: 1225957955930656006}
|
- {fileID: 1225957955930656006}
|
||||||
- {fileID: 8427373646372124391}
|
- {fileID: 8427373646372124391}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 5226783559850429729}
|
||||||
m_RootOrder: 7
|
m_RootOrder: 3
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: -15.86, y: 0}
|
m_AnchoredPosition: {x: -15.869998, y: -4.8899994}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &3935916386830708752
|
--- !u!1 &3935916386830708752
|
||||||
|
|
@ -4445,8 +4435,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 3935916386830708752}
|
m_GameObject: {fileID: 3935916386830708752}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -2.3}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -4457,14 +4447,56 @@ RectTransform:
|
||||||
- {fileID: 8791413887343378023}
|
- {fileID: 8791413887343378023}
|
||||||
- {fileID: 5763186480443003057}
|
- {fileID: 5763186480443003057}
|
||||||
- {fileID: 1773331959457045715}
|
- {fileID: 1773331959457045715}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 5226783559850429729}
|
||||||
m_RootOrder: 9
|
m_RootOrder: 4
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: -15.6, y: 9.78}
|
m_AnchoredPosition: {x: -15.609999, y: 4.8900003}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
|
--- !u!1 &4012951206705012350
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 5226783559850429729}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: FrontStars
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &5226783559850429729
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 4012951206705012350}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 8.5265}
|
||||||
|
m_LocalScale: {x: 1.5411682, y: 1.5411682, z: 1.5411682}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 926803511865261909}
|
||||||
|
- {fileID: 23398713494082221}
|
||||||
|
- {fileID: 4558807675601686787}
|
||||||
|
- {fileID: 3145770816593845091}
|
||||||
|
- {fileID: 2608975278585726655}
|
||||||
|
- {fileID: 6788972830858619932}
|
||||||
|
m_Father: {fileID: 8093653255585685654}
|
||||||
|
m_RootOrder: 2
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 0.0099981, y: 4.8918}
|
||||||
|
m_SizeDelta: {x: 131.73999, y: 109.78}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &4277644444261067960
|
--- !u!1 &4277644444261067960
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -4623,7 +4655,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4707,7 +4739,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4791,7 +4823,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -4875,7 +4907,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -5127,7 +5159,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -5211,7 +5243,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -5485,7 +5517,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -5737,7 +5769,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -5905,7 +5937,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -5999,6 +6031,48 @@ SpriteRenderer:
|
||||||
m_WasSpriteAssigned: 1
|
m_WasSpriteAssigned: 1
|
||||||
m_MaskInteraction: 0
|
m_MaskInteraction: 0
|
||||||
m_SpriteSortPoint: 0
|
m_SpriteSortPoint: 0
|
||||||
|
--- !u!1 &5750046169180373967
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 8284805101962113762}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: BackStars
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!224 &8284805101962113762
|
||||||
|
RectTransform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 5750046169180373967}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 11.502}
|
||||||
|
m_LocalScale: {x: 1.8565451, y: 1.8565451, z: 1.8565451}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 2483520153194773728}
|
||||||
|
- {fileID: 5794830076795771464}
|
||||||
|
- {fileID: 1756659025686986699}
|
||||||
|
- {fileID: 7080074331057963043}
|
||||||
|
- {fileID: 2800225648493660279}
|
||||||
|
- {fileID: 2107749384676224915}
|
||||||
|
m_Father: {fileID: 8093653255585685654}
|
||||||
|
m_RootOrder: 1
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
|
m_AnchoredPosition: {x: 0.0099964, y: 4.88}
|
||||||
|
m_SizeDelta: {x: 131.73999, y: 109.76}
|
||||||
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &5769653800879913986
|
--- !u!1 &5769653800879913986
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -6241,7 +6315,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6274,8 +6348,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 6093695872543899040}
|
m_GameObject: {fileID: 6093695872543899040}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 2.18}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -6289,12 +6363,12 @@ RectTransform:
|
||||||
- {fileID: 4609651232726877626}
|
- {fileID: 4609651232726877626}
|
||||||
- {fileID: 1589207323874566630}
|
- {fileID: 1589207323874566630}
|
||||||
- {fileID: 8529858565281562362}
|
- {fileID: 8529858565281562362}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 8284805101962113762}
|
||||||
m_RootOrder: 6
|
m_RootOrder: 2
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 15.88, y: 0}
|
m_AnchoredPosition: {x: 15.870002, y: -4.880001}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &6105209198813819284
|
--- !u!1 &6105209198813819284
|
||||||
|
|
@ -6371,7 +6445,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6455,7 +6529,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6490,8 +6564,8 @@ Transform:
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 6246528639951137231}
|
m_GameObject: {fileID: 6246528639951137231}
|
||||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 4.8746, y: 3.1533, z: 0}
|
m_LocalPosition: {x: 4.8864, y: 5.79, z: 0}
|
||||||
m_LocalScale: {x: 4.3204956, y: 4.3204956, z: 4.3204956}
|
m_LocalScale: {x: 5.4179926, y: 5.4179926, z: 5.4179926}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Father: {fileID: 2483520153194773728}
|
m_Father: {fileID: 2483520153194773728}
|
||||||
|
|
@ -6539,7 +6613,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -100
|
m_SortingOrder: -100
|
||||||
m_Sprite: {fileID: -7442281247027042577, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -7442281247027042577, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.56078434}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6623,7 +6697,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6707,7 +6781,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6791,7 +6865,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -6875,7 +6949,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7043,7 +7117,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7127,7 +7201,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7211,7 +7285,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7231,6 +7305,7 @@ GameObject:
|
||||||
m_Component:
|
m_Component:
|
||||||
- component: {fileID: 3515826053360711739}
|
- component: {fileID: 3515826053360711739}
|
||||||
- component: {fileID: 5921675778279546642}
|
- component: {fileID: 5921675778279546642}
|
||||||
|
- component: {fileID: 6655287328441744793}
|
||||||
m_Layer: 0
|
m_Layer: 0
|
||||||
m_Name: Glare
|
m_Name: Glare
|
||||||
m_TagString: Untagged
|
m_TagString: Untagged
|
||||||
|
|
@ -7246,7 +7321,7 @@ Transform:
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 6561292846486288656}
|
m_GameObject: {fileID: 6561292846486288656}
|
||||||
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: -1.101, y: 0.194, z: -0.084}
|
m_LocalPosition: {x: -1.101, y: 0.194, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
|
|
@ -7305,6 +7380,27 @@ SpriteRenderer:
|
||||||
m_WasSpriteAssigned: 1
|
m_WasSpriteAssigned: 1
|
||||||
m_MaskInteraction: 0
|
m_MaskInteraction: 0
|
||||||
m_SpriteSortPoint: 0
|
m_SpriteSortPoint: 0
|
||||||
|
--- !u!95 &6655287328441744793
|
||||||
|
Animator:
|
||||||
|
serializedVersion: 5
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6561292846486288656}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_Avatar: {fileID: 0}
|
||||||
|
m_Controller: {fileID: 9100000, guid: d0cd57d413049384db36f985069578ae, type: 2}
|
||||||
|
m_CullingMode: 0
|
||||||
|
m_UpdateMode: 0
|
||||||
|
m_ApplyRootMotion: 0
|
||||||
|
m_LinearVelocityBlending: 0
|
||||||
|
m_StabilizeFeet: 0
|
||||||
|
m_WarningMessage:
|
||||||
|
m_HasTransformHierarchy: 1
|
||||||
|
m_AllowConstantClipSamplingOptimization: 1
|
||||||
|
m_KeepAnimatorStateOnDisable: 0
|
||||||
|
m_WriteDefaultValuesOnDisable: 0
|
||||||
--- !u!1 &6578894049253302293
|
--- !u!1 &6578894049253302293
|
||||||
GameObject:
|
GameObject:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -7379,7 +7475,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7463,7 +7559,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7547,7 +7643,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7631,7 +7727,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7715,7 +7811,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7748,8 +7844,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 7278122616026706364}
|
m_GameObject: {fileID: 7278122616026706364}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 2.18}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -7764,12 +7860,12 @@ RectTransform:
|
||||||
- {fileID: 2851199372672928068}
|
- {fileID: 2851199372672928068}
|
||||||
- {fileID: 1801399719374522050}
|
- {fileID: 1801399719374522050}
|
||||||
- {fileID: 6504557809142195168}
|
- {fileID: 6504557809142195168}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 8284805101962113762}
|
||||||
m_RootOrder: 2
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
m_AnchoredPosition: {x: -0.0099983215, y: -4.880001}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &7417163071302115104
|
--- !u!1 &7417163071302115104
|
||||||
|
|
@ -7846,7 +7942,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -7930,7 +8026,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -8098,7 +8194,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -8266,7 +8362,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -8350,7 +8446,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -8383,8 +8479,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 7858878317832744708}
|
m_GameObject: {fileID: 7858878317832744708}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: 2.18}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -8398,12 +8494,12 @@ RectTransform:
|
||||||
- {fileID: 4722993531141705245}
|
- {fileID: 4722993531141705245}
|
||||||
- {fileID: 2092224159930599115}
|
- {fileID: 2092224159930599115}
|
||||||
- {fileID: 5099040026467820445}
|
- {fileID: 5099040026467820445}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 8284805101962113762}
|
||||||
m_RootOrder: 10
|
m_RootOrder: 4
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: -15.6, y: 9.76}
|
m_AnchoredPosition: {x: -15.609999, y: 4.879999}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &8100577537916625841
|
--- !u!1 &8100577537916625841
|
||||||
|
|
@ -8513,8 +8609,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 8112509877096007021}
|
m_GameObject: {fileID: 8112509877096007021}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -2.3}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -8525,12 +8621,12 @@ RectTransform:
|
||||||
- {fileID: 1423165042533198580}
|
- {fileID: 1423165042533198580}
|
||||||
- {fileID: 6865732712292181353}
|
- {fileID: 6865732712292181353}
|
||||||
- {fileID: 7114460548521712462}
|
- {fileID: 7114460548521712462}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 5226783559850429729}
|
||||||
m_RootOrder: 1
|
m_RootOrder: 0
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
m_AnchoredPosition: {x: -0.0099983215, y: -4.8899994}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &8273590982824071395
|
--- !u!1 &8273590982824071395
|
||||||
|
|
@ -8691,7 +8787,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9027,7 +9123,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9195,7 +9291,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9312,8 +9408,8 @@ RectTransform:
|
||||||
m_PrefabInstance: {fileID: 0}
|
m_PrefabInstance: {fileID: 0}
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 8724844040395206150}
|
m_GameObject: {fileID: 8724844040395206150}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -2.3}
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children:
|
m_Children:
|
||||||
|
|
@ -9324,12 +9420,12 @@ RectTransform:
|
||||||
- {fileID: 7956295654057825605}
|
- {fileID: 7956295654057825605}
|
||||||
- {fileID: 5081993994446215136}
|
- {fileID: 5081993994446215136}
|
||||||
- {fileID: 2283627058012952507}
|
- {fileID: 2283627058012952507}
|
||||||
m_Father: {fileID: 8093653255585685654}
|
m_Father: {fileID: 5226783559850429729}
|
||||||
m_RootOrder: 3
|
m_RootOrder: 1
|
||||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 0, y: 9.78}
|
m_AnchoredPosition: {x: -0.0099983215, y: 4.8900003}
|
||||||
m_SizeDelta: {x: 100, y: 100}
|
m_SizeDelta: {x: 100, y: 100}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!1 &8767352270698557463
|
--- !u!1 &8767352270698557463
|
||||||
|
|
@ -9406,7 +9502,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9490,7 +9586,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9658,7 +9754,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9742,7 +9838,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 1
|
m_FlipX: 1
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9826,7 +9922,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.42745098}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
@ -9910,7 +10006,7 @@ SpriteRenderer:
|
||||||
m_SortingLayer: 0
|
m_SortingLayer: 0
|
||||||
m_SortingOrder: -180
|
m_SortingOrder: -180
|
||||||
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
m_Sprite: {fileID: -4408535834297646924, guid: 23e56abfe5ab36140b22aba3e82d1a69, type: 3}
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 0.2784314}
|
m_Color: {r: 1, g: 1, b: 1, a: 0.36862746}
|
||||||
m_FlipX: 0
|
m_FlipX: 0
|
||||||
m_FlipY: 0
|
m_FlipY: 0
|
||||||
m_DrawMode: 0
|
m_DrawMode: 0
|
||||||
|
|
|
||||||
1947
Assets/Resources/Games/nightWalkAgb.prefab
Normal file
1947
Assets/Resources/Games/nightWalkAgb.prefab
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 0d629049536dd6044b09086f92fc7305
|
guid: 9fce72219028ef34a8493d9190a8f578
|
||||||
DefaultImporter:
|
PrefabImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
50
Assets/Resources/Games/nightWalkRvl.prefab
Normal file
50
Assets/Resources/Games/nightWalkRvl.prefab
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &3107282551572751970
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 2496501863425691099}
|
||||||
|
- component: {fileID: 2898605982618662930}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: nightWalkRvl
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &2496501863425691099
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 3107282551572751970}
|
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_LocalPosition: {x: 0, y: 0, z: 0}
|
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
|
m_ConstrainProportionsScale: 0
|
||||||
|
m_Children: []
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_RootOrder: 0
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!114 &2898605982618662930
|
||||||
|
MonoBehaviour:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 3107282551572751970}
|
||||||
|
m_Enabled: 1
|
||||||
|
m_EditorHideFlags: 0
|
||||||
|
m_Script: {fileID: 11500000, guid: 35555d14c0564e145857c218d0fb64a4, type: 3}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
SoundSequences: []
|
||||||
|
EligibleHits: []
|
||||||
|
scheduledInputs: []
|
||||||
|
firstEnable: 0
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 42267c7ce7eae61448e2ea4ecbf34463
|
guid: db09d885818f91340b240a3aa9cb163f
|
||||||
DefaultImporter:
|
PrefabImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
29778
Assets/Resources/Games/totemClimb.prefab
Normal file
29778
Assets/Resources/Games/totemClimb.prefab
Normal file
File diff suppressed because it is too large
Load diff
7
Assets/Resources/Games/totemClimb.prefab.meta
Normal file
7
Assets/Resources/Games/totemClimb.prefab.meta
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 1ea58c9450342a146850ca4150f2166a
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -85,7 +85,7 @@ AudioMixerController:
|
||||||
- {fileID: 752586362724348005}
|
- {fileID: 752586362724348005}
|
||||||
m_StartSnapshot: {fileID: 24500006}
|
m_StartSnapshot: {fileID: 24500006}
|
||||||
m_SuspendThreshold: -80
|
m_SuspendThreshold: -80
|
||||||
m_EnableSuspend: 1
|
m_EnableSuspend: 0
|
||||||
m_UpdateMode: 1
|
m_UpdateMode: 1
|
||||||
m_ExposedParameters: []
|
m_ExposedParameters: []
|
||||||
m_AudioMixerGroupViews:
|
m_AudioMixerGroupViews:
|
||||||
|
|
@ -95,7 +95,7 @@ AudioMixerController:
|
||||||
- 4f0b7ddcf4e12a14c888732f2ab0fda0
|
- 4f0b7ddcf4e12a14c888732f2ab0fda0
|
||||||
name: View
|
name: View
|
||||||
m_CurrentViewIndex: 0
|
m_CurrentViewIndex: 0
|
||||||
m_TargetSnapshot: {fileID: 24500006}
|
m_TargetSnapshot: {fileID: 752586362724348005}
|
||||||
--- !u!243 &24300002
|
--- !u!243 &24300002
|
||||||
AudioMixerGroupController:
|
AudioMixerGroupController:
|
||||||
m_ObjectHideFlags: 0
|
m_ObjectHideFlags: 0
|
||||||
|
|
@ -144,7 +144,7 @@ AudioMixerSnapshotController:
|
||||||
9dd04840cf4676047b2e26e659ca4069: 1661
|
9dd04840cf4676047b2e26e659ca4069: 1661
|
||||||
65da18c00dad8f642a1f04b10bc4d3fa: -9.8
|
65da18c00dad8f642a1f04b10bc4d3fa: -9.8
|
||||||
2b8f30d01b6887a4a9a1c346efb59529: 0.96
|
2b8f30d01b6887a4a9a1c346efb59529: 0.96
|
||||||
152a0691009a459488775726d7da2a76: 0
|
152a0691009a459488775726d7da2a76: 0.01
|
||||||
b32285822a3582a46bc02ae0bb31edd0: 0
|
b32285822a3582a46bc02ae0bb31edd0: 0
|
||||||
16419c92ecf0c4743a61bae82f0cd39d: 0.96
|
16419c92ecf0c4743a61bae82f0cd39d: 0.96
|
||||||
3537f1d2761ea514aad24adbde59814c: 0.5
|
3537f1d2761ea514aad24adbde59814c: 0.5
|
||||||
|
|
@ -183,7 +183,7 @@ AudioMixerSnapshotController:
|
||||||
m_FloatValues:
|
m_FloatValues:
|
||||||
8ac1b110f403261418b718a0a6962426: -9.8
|
8ac1b110f403261418b718a0a6962426: -9.8
|
||||||
9dd04840cf4676047b2e26e659ca4069: 1661
|
9dd04840cf4676047b2e26e659ca4069: 1661
|
||||||
152a0691009a459488775726d7da2a76: 16
|
152a0691009a459488775726d7da2a76: 10
|
||||||
b32285822a3582a46bc02ae0bb31edd0: 0
|
b32285822a3582a46bc02ae0bb31edd0: 0
|
||||||
3537f1d2761ea514aad24adbde59814c: 0.5
|
3537f1d2761ea514aad24adbde59814c: 0.5
|
||||||
1f89dac5f0e643c4ab8774d8ad05e968: 2.79
|
1f89dac5f0e643c4ab8774d8ad05e968: 2.79
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ Transform:
|
||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 1187145154065342124}
|
m_GameObject: {fileID: 1187145154065342124}
|
||||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_LocalPosition: {x: 0, y: 0, z: -16}
|
m_LocalPosition: {x: 0, y: 0, z: -8}
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||||
m_ConstrainProportionsScale: 0
|
m_ConstrainProportionsScale: 0
|
||||||
m_Children: []
|
m_Children: []
|
||||||
|
|
@ -57,7 +57,7 @@ Camera:
|
||||||
height: 1
|
height: 1
|
||||||
near clip plane: 0.3
|
near clip plane: 0.3
|
||||||
far clip plane: 1000
|
far clip plane: 1000
|
||||||
field of view: 60
|
field of view: 35
|
||||||
orthographic: 0
|
orthographic: 0
|
||||||
orthographic size: 5
|
orthographic size: 5
|
||||||
m_Depth: 0
|
m_Depth: 0
|
||||||
|
|
@ -120,26 +120,4 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 11500000, guid: df5f4fb9c5246ee4c8d2e99ad929ca57, type: 3}
|
m_Script: {fileID: 11500000, guid: df5f4fb9c5246ee4c8d2e99ad929ca57, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
prefabs:
|
|
||||||
- {fileID: 7802515460925818711, guid: 2aaa9878c8795a84489edcd4e768b454, type: 3}
|
|
||||||
- {fileID: 7192404907844891135, guid: f2030f376d1b5f243a2813339d83bbcb, type: 3}
|
|
||||||
- {fileID: 2504738550622510693, guid: 639d3ab0914a39f4fa43fa957bef1c2c, type: 3}
|
|
||||||
- {fileID: 2993865421832826193, guid: 1621a5cb04619f5418e065677178088d, type: 3}
|
|
||||||
- {fileID: 5016524467690985173, guid: 89339a43f531d3b47b2d9a94b3773664, type: 3}
|
|
||||||
- {fileID: 6789284989889825045, guid: 3e5fd1d9087c44f4283f0a7442344197, type: 3}
|
|
||||||
- {fileID: 4787243303282176002, guid: f52107c591edd614f813b504522039fa, type: 3}
|
|
||||||
- {fileID: 7534579311271883722, guid: 53cbfc8ae1a278e498ed9e5586b6224d, type: 3}
|
|
||||||
- {fileID: 4507225946589498430, guid: a6b921d42e810c04892b251c939b2f45, type: 3}
|
|
||||||
- {fileID: 7622907553759130377, guid: 09a6efc12ba3d2b429570a43e10654e0, type: 3}
|
|
||||||
- {fileID: 6665503243595167146, guid: f6c902c426aa77d4e92a0eaa8732a4da, type: 3}
|
|
||||||
- {fileID: 160985724508280036, guid: 7c23357e15e05d54684371b2f35384df, type: 3}
|
|
||||||
- {fileID: 5935134666280485629, guid: 204f8d388d394b74bb05d784f1c340b0, type: 3}
|
|
||||||
- {fileID: 635741003951437542, guid: acdd3b2aa021f2e47a56d3a663b3f63b, type: 3}
|
|
||||||
- {fileID: 8491628317254562108, guid: c2fe3f9bf05ccf442945074fb7a765b7, type: 3}
|
|
||||||
- {fileID: 690123129763518588, guid: c83c3abbbee44df499e7cd2161e9f238, type: 3}
|
|
||||||
- {fileID: 3166074148675172226, guid: 62970d9a567230642bb1e34021abe3f5, type: 3}
|
|
||||||
- {fileID: 4272499595246014789, guid: f7bb23a0485f926439da0e96e13100e7, type: 3}
|
|
||||||
- {fileID: 7217551014164345173, guid: 10834007b998bee43b734537a886e30c, type: 3}
|
|
||||||
- {fileID: 1227462980693949205, guid: b407ca6ac98ec5142841b8fc20c44fa1, type: 3}
|
|
||||||
- {fileID: 5015118015629009658, guid: d74c0aa161dca1247b65265b51733e35, type: 3}
|
|
||||||
rotationDegreesPerSecond: 45
|
rotationDegreesPerSecond: 45
|
||||||
|
|
|
||||||
|
|
@ -767,6 +767,9 @@ MonoBehaviour:
|
||||||
- tag: playstyle
|
- tag: playstyle
|
||||||
label: Recommended Control Style
|
label: Recommended Control Style
|
||||||
isReadOnly: 0
|
isReadOnly: 0
|
||||||
|
- tag: accessiblewarning
|
||||||
|
label: Flashing Effects Warning
|
||||||
|
isReadOnly: 0
|
||||||
- tag: remixtags
|
- tag: remixtags
|
||||||
label: Tags
|
label: Tags
|
||||||
isReadOnly: 0
|
isReadOnly: 0
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 5c02948e56fc801488f8e266ae84de7e
|
guid: 70e5fda2b4abe0e4c8a84e9577d62b2f
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
3128
Assets/Resources/Prefabs/Games/NightWalkAgb/JumpPlatform.prefab
Normal file
3128
Assets/Resources/Prefabs/Games/NightWalkAgb/JumpPlatform.prefab
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 73364b4dafdbd914f83c316a1fcf8dd7
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
1121
Assets/Resources/Prefabs/Games/NightWalkAgb/Star.prefab
Normal file
1121
Assets/Resources/Prefabs/Games/NightWalkAgb/Star.prefab
Normal file
File diff suppressed because it is too large
Load diff
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8df651ffe21e1dc4fb223e94fdc9f9cb
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -2137,7 +2137,7 @@ RectTransform:
|
||||||
m_AnchorMin: {x: 0.5, y: 0.5}
|
m_AnchorMin: {x: 0.5, y: 0.5}
|
||||||
m_AnchorMax: {x: 0.5, y: 0.5}
|
m_AnchorMax: {x: 0.5, y: 0.5}
|
||||||
m_AnchoredPosition: {x: 0, y: 0}
|
m_AnchoredPosition: {x: 0, y: 0}
|
||||||
m_SizeDelta: {x: 252, y: 252}
|
m_SizeDelta: {x: 256, y: 256}
|
||||||
m_Pivot: {x: 0.5, y: 0.5}
|
m_Pivot: {x: 0.5, y: 0.5}
|
||||||
--- !u!222 &8617665365188159470
|
--- !u!222 &8617665365188159470
|
||||||
CanvasRenderer:
|
CanvasRenderer:
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: f9c0f41c6ce6e8d4e9efd06732127f2b
|
guid: 90c695ea12eff7c41ac37f30c0c3d352
|
||||||
folderAsset: yes
|
folderAsset: yes
|
||||||
DefaultImporter:
|
DefaultImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/boxKick.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/boxKick.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/boxKick.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/boxKick.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 2c5cc4d7028b143438f40aea691c7418
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/disappear.wav
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/disappear.wav
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/disappear.wav.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/disappear.wav.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 79699760b69ce5f449734cdb3e61d181
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fall.wav
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fall.wav
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fall.wav.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fall.wav.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d419f020825d6eb4bbbe90e614f5592e
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1A.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1A.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1A.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1A.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 763e715e1d5a08140badfc53965021e2
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1B.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1B.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1B.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1B.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 004c5703ccbd96b409a12e42c1d61f01
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1C.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1C.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1C.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1C.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 59c9f389bf53d5b43b9be46a4dc95dc6
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1D.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill1D.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1D.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill1D.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: b37a8bf96b4a5894e8f7037944e92116
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill2A.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill2A.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill2A.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill2A.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 720304d40f90daf4785ad4d0c8675df4
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill2B.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill2B.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill2B.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill2B.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 14034b253d390fc43b2ed9f3bbdf02b2
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill2C.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill2C.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill2C.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill2C.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 56e053386304dba44acacfd67cd51d4f
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill3A.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill3A.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill3A.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill3A.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 8cb68917dd6139b43a2c2dea43257afc
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill3B.ogg
Normal file
BIN
Assets/Resources/Sfx/games/nightWalkAgb/fill3B.ogg
Normal file
Binary file not shown.
22
Assets/Resources/Sfx/games/nightWalkAgb/fill3B.ogg.meta
Normal file
22
Assets/Resources/Sfx/games/nightWalkAgb/fill3B.ogg.meta
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 5a8ffd8b8093e9e4fbee47b220383496
|
||||||
|
AudioImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 6
|
||||||
|
defaultSettings:
|
||||||
|
loadType: 0
|
||||||
|
sampleRateSetting: 0
|
||||||
|
sampleRateOverride: 44100
|
||||||
|
compressionFormat: 1
|
||||||
|
quality: 1
|
||||||
|
conversionMode: 0
|
||||||
|
platformSettingOverrides: {}
|
||||||
|
forceToMono: 0
|
||||||
|
normalize: 1
|
||||||
|
preloadAudioData: 1
|
||||||
|
loadInBackground: 0
|
||||||
|
ambisonic: 0
|
||||||
|
3D: 1
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue