├── Assets ├── BG │ ├── Disc.metamesh │ ├── Bubbles.vfx.meta │ ├── Jellies.vfx.meta │ ├── Timeline.playable.meta │ ├── Disc.metamesh.meta │ └── Timeline.playable ├── Gradient │ ├── Orbitron │ │ ├── Orbitron Light.ttf │ │ ├── Open Font License.markdown.meta │ │ ├── Orbitron Light.ttf.meta │ │ └── Open Font License.markdown │ ├── BIZ_UDPGothic │ │ ├── BIZUDPGothic-Bold.ttf │ │ ├── BIZUDPGothic-Regular.ttf │ │ ├── OFL.txt.meta │ │ ├── BIZUDPGothic-Bold.ttf.meta │ │ ├── BIZUDPGothic-Regular.ttf.meta │ │ └── OFL.txt │ ├── Bars.vfx.meta │ ├── Blob.vfx.meta │ ├── Orbitron.meta │ ├── BIZ_UDPGothic.meta │ ├── Gradient.mat.meta │ ├── Rect1.mat.meta │ ├── Rect2.mat.meta │ ├── Rect3.mat.meta │ ├── Timeline.playable.meta │ ├── Gradient1.preset.meta │ ├── Gradient2.preset.meta │ ├── Gradient3.preset.meta │ ├── Gradient4.preset.meta │ ├── GradientSetter.cs.meta │ ├── Gradient.shadergraph.meta │ ├── UVT.shadersubgraph.meta │ ├── HudElement.shadergraph.meta │ ├── GradientSetter.cs │ ├── Gradient1.preset │ ├── Gradient2.preset │ ├── Gradient3.preset │ ├── Gradient4.preset │ ├── Gradient.mat │ ├── Rect2.mat │ ├── Rect3.mat │ ├── Rect1.mat │ └── Timeline.playable ├── BG.unity.meta ├── Bumper.unity.meta ├── Title.unity.meta ├── Gradient.unity.meta ├── BG.meta ├── Bumper │ ├── Splash.vfx.meta │ ├── Box.mat.meta │ ├── Kick.signal.meta │ ├── Progress.mat.meta │ ├── Timeline.playable.meta │ ├── Progress.shadergraph.meta │ ├── Kick.signal │ ├── Box.mat │ └── Progress.mat ├── Title │ ├── Bubble.vfx.meta │ ├── Buffer.renderTexture.meta │ ├── Timeline.playable.meta │ ├── Bubble.shadergraph.meta │ └── Buffer.renderTexture ├── Bumper.meta ├── Title.meta ├── URP.meta ├── Gradient.meta ├── URP │ ├── URP.asset.meta │ ├── GlobalSettings.asset.meta │ ├── URP_Renderer.asset.meta │ ├── GlobalSettings.asset │ ├── URP_Renderer.asset │ └── URP.asset ├── BG.unity └── Title.unity ├── Audio ├── .bitwig-project └── SE.bwproject ├── ProjectSettings ├── boot.config ├── ProjectVersion.txt ├── ClusterInputManager.asset ├── PresetManager.asset ├── EditorBuildSettings.asset ├── XRSettings.asset ├── VersionControlSettings.asset ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json ├── TimeManager.asset ├── URPProjectSettings.asset ├── AudioManager.asset ├── TimelineSettings.asset ├── ShaderGraphSettings.asset ├── TagManager.asset ├── VFXManager.asset ├── UnityConnectSettings.asset ├── PackageManagerSettings.asset ├── DynamicsManager.asset ├── MemorySettings.asset ├── EditorSettings.asset ├── QualitySettings.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── GraphicsSettings.asset ├── SceneTemplateSettings.json ├── InputManager.asset └── ProjectSettings.asset ├── .gitignore ├── .gitattributes └── Packages ├── manifest.json └── packages-lock.json /Assets/BG/Disc.metamesh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Audio/.bitwig-project: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Audio/SE.bwproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/UnityStationBumper2/HEAD/Audio/SE.bwproject -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.2.17f1 2 | m_EditorVersionWithRevision: 2021.2.17f1 (efb8f635e7b1) 3 | -------------------------------------------------------------------------------- /Assets/Gradient/Orbitron/Orbitron Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/UnityStationBumper2/HEAD/Assets/Gradient/Orbitron/Orbitron Light.ttf -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic/BIZUDPGothic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/UnityStationBumper2/HEAD/Assets/Gradient/BIZ_UDPGothic/BIZUDPGothic-Bold.ttf -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic/BIZUDPGothic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keijiro/UnityStationBumper2/HEAD/Assets/Gradient/BIZ_UDPGothic/BIZUDPGothic-Regular.ttf -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /Assets/BG.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae9a55bd61ff944ab8b1465f58012ee2 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Bumper.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c2edb01a5d6d4c4a8f19c5f5a979b83 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Title.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0932cb8b6c6545caa52346b6f9f0967 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Gradient.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14d6f28cf94d34942a77842e11ec4614 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_DefaultPresets: {} 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | Desktop.ini 3 | .DS_Store 4 | *.swp 5 | 6 | /Library 7 | /Logs 8 | /Recordings 9 | /Temp 10 | /Unity.VisualScripting.Generated 11 | /UserSettings 12 | 13 | /Audio/auto-backups 14 | -------------------------------------------------------------------------------- /Assets/BG.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8abfc59058d344b9298d131619add6d9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/BG/Bubbles.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ea3472be8ed6430c81fa06c41c9771e 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/BG/Jellies.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: de5eeffea865a4dc7876a8f9eeb29a97 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Bumper/Splash.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7484c29a0b990464295a9f012bfc8214 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Gradient/Bars.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62b617902d3d34d648600fa946d49b77 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Gradient/Blob.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d13ab235f260e487d88e4616b2671016 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Title/Bubble.vfx.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5d71ecfdc1594e899ad5fa828ec15f6 3 | VisualEffectImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Bumper.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 803358f6a9b4d4aa2a6484c2e953188c 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Title.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96b208ab4881e4582bfe9f1b34e56de1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/URP.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 892c0ceaae6ca452ebf578f5a40598a7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | 3 | *.cs text eol=lf diff=csharp 4 | *.shader text eol=lf 5 | *.cginc text eol=lf 6 | *.hlsl text eol=lf 7 | *.compute text eol=lf 8 | 9 | *.meta text eol=lf 10 | -------------------------------------------------------------------------------- /Assets/Gradient.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60d09bb90ba3541a9b54bb634f524da1 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic/OFL.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 220549e8c18824730b6336f940050071 3 | TextScriptImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Gradient/Orbitron.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce99643af23674e7f83c3f509589617b 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: [] 8 | m_configObjects: {} 9 | -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b87e4c66df6f340a4b221fc2b7e6296d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /Assets/Gradient/Orbitron/Open Font License.markdown.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7012613da86574e88af0cf4b4a0f3645 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Bumper/Box.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca02ef93b66914a69b75046e74b8f8d0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/URP/URP.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e3fe3b4afb0d8446591f13d20fee9286 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/BG/Timeline.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c81e7997b21d5479083b33cac6f8fa02 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Bumper/Kick.signal.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2f987bab2e5214fd692d83a93f2ead47 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Bumper/Progress.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ef3b8a083cf4f23a30862aeb5df8a6 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 70109613e5b6f40e0ac12b40ebd5aa9c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Rect1.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23e3cba10d14048758adc80ad617089a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Rect2.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ec0a3bcbcff94bc5a5770dd3bbaac9c 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Rect3.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b49f2d5770a584041bae2c13a345ae17 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Bumper/Timeline.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4df1911667e345ff940b984706c31ec 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Title/Buffer.renderTexture.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8b6622d1210b444db56dec65ae24d81 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 8400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Title/Timeline.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4bc8fc361e1d42ab981010a8dffd0da 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/URP/GlobalSettings.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0046d5afee59c49cc8dd58f1b6ce1a01 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/URP/URP_Renderer.asset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6b75647e8d8fe45b68573af6f4ad8a9a 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Timeline.playable.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cf740afb23b844be941e1f0fac7eaae 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 11400000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient1.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce594938103994217b2612cc2855ca60 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient2.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 335a7106c9576415d9e3e22ad1124d2b 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient3.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 143a7022510844416aca43fca62dfeb0 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient4.preset.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e17eef07e1854a8e9008f23b143ae1f 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2655988077585873504 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Name": "Settings", 3 | "m_Path": "ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json", 4 | "m_Dictionary": { 5 | "m_DictionaryValues": [] 6 | } 7 | } -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /Assets/Gradient/GradientSetter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 555f46ab6bf634e00ac8a3ce64f136d5 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Title/Bubble.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 51ab5bedcf0074f5e861c7d7fe4769cb 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Bumper/Progress.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3da75c726eef74ac8bae767c8117e342 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 95228a78516e348db90186a47fd95cde 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Gradient/UVT.shadersubgraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3561d2b6fc53d428db2674673f80be94 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 60072b568d64c40a485e0fc55012dc9f, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Gradient/HudElement.shadergraph.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e87432988d21e4de8a168ec81bbe86d6 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3} 11 | -------------------------------------------------------------------------------- /Assets/Bumper/Kick.signal: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d6fa2d92fc1b3f34da284357edf89c3b, type: 3} 13 | m_Name: Kick 14 | m_EditorClassIdentifier: 15 | -------------------------------------------------------------------------------- /ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 247994e1f5a72c2419c26a37e9334c01, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_LastMaterialVersion: 5 16 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: a287be6c49135cd4f9b2b8666c39d999, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | assetDefaultFramerate: 60 16 | m_DefaultFrameRate: 60 17 | -------------------------------------------------------------------------------- /ProjectSettings/ShaderGraphSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de02f9e1d18f588468e474319d09a723, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | customInterpolatorErrorThreshold: 32 16 | customInterpolatorWarningThreshold: 16 17 | -------------------------------------------------------------------------------- /Assets/Gradient/Orbitron/Orbitron Light.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2c5614b3617d4797b5876cdce506e22 3 | TrueTypeFontImporter: 4 | externalObjects: {} 5 | serializedVersion: 4 6 | fontSize: 16 7 | forceTextureCase: -2 8 | characterSpacing: 0 9 | characterPadding: 1 10 | includeFontData: 1 11 | fontNames: 12 | - Orbitron 13 | fallbackFontReferences: [] 14 | customCharacters: 15 | fontRenderingMode: 0 16 | ascentCalculationMode: 1 17 | useLegacyBoundsCalculation: 0 18 | shouldRoundAdvanceValue: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic/BIZUDPGothic-Bold.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3178578b3a9234284a86548d83b986f4 3 | TrueTypeFontImporter: 4 | externalObjects: {} 5 | serializedVersion: 4 6 | fontSize: 16 7 | forceTextureCase: -2 8 | characterSpacing: 0 9 | characterPadding: 1 10 | includeFontData: 1 11 | fontNames: 12 | - BIZ UDPGothic 13 | fallbackFontReferences: [] 14 | customCharacters: 15 | fontRenderingMode: 0 16 | ascentCalculationMode: 1 17 | useLegacyBoundsCalculation: 0 18 | shouldRoundAdvanceValue: 1 19 | userData: 20 | assetBundleName: 21 | assetBundleVariant: 22 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "scopedRegistries": [ 3 | { 4 | "name": "Keijiro", 5 | "url": "https://registry.npmjs.com", 6 | "scopes": [ "jp.keijiro" ] 7 | } 8 | ], 9 | "dependencies": { 10 | "com.unity.recorder": "4.0.0-pre.3", 11 | "com.unity.render-pipelines.universal": "12.1.6", 12 | "com.unity.visualeffectgraph": "12.1.6", 13 | "jp.keijiro.klak.cosinegradient": "1.1.0", 14 | "jp.keijiro.klak.timeline.procedural-motion": "1.0.2", 15 | "jp.keijiro.metamesh": "1.0.1", 16 | "jp.keijiro.shadergraphassets": "2.5.0", 17 | "jp.keijiro.vfxgraphassets": "1.0.10" 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic/BIZUDPGothic-Regular.ttf.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b18ae3b3b9f1b4daa872d6fb2fec9843 3 | TrueTypeFontImporter: 4 | externalObjects: {} 5 | serializedVersion: 4 6 | fontSize: 16 7 | forceTextureCase: -2 8 | characterSpacing: 0 9 | characterPadding: 1 10 | includeFontData: 1 11 | fontNames: 12 | - BIZ UDPGothic 13 | fallbackFontReferences: 14 | - {fileID: 12800000, guid: 3178578b3a9234284a86548d83b986f4, type: 3} 15 | customCharacters: 16 | fontRenderingMode: 0 17 | ascentCalculationMode: 1 18 | useLegacyBoundsCalculation: 0 19 | shouldRoundAdvanceValue: 1 20 | userData: 21 | assetBundleName: 22 | assetBundleVariant: 23 | -------------------------------------------------------------------------------- /Assets/Gradient/GradientSetter.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using Klak.Chromatics; 3 | 4 | [ExecuteInEditMode] 5 | public class GradientSetter : MonoBehaviour 6 | { 7 | [SerializeField] CosineGradient _gradient = CosineGradient.DefaultGradient; 8 | [SerializeField] string _propertyName = "_Gradient"; 9 | 10 | MaterialPropertyBlock _block; 11 | 12 | void Update() 13 | { 14 | var renderer = GetComponent(); 15 | if (renderer == null) return; 16 | 17 | if (_block == null) _block = new MaterialPropertyBlock(); 18 | 19 | renderer.GetPropertyBlock(_block); 20 | _block.SetMatrix(_propertyName, _gradient); 21 | renderer.SetPropertyBlock(_block); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 7200000, guid: 84a17cfa13e40ae4082ef42714f0a81c, type: 3} 7 | m_CopyBufferShader: {fileID: 7200000, guid: 23c51f21a3503f6428b527b01f8a2f4e, type: 3} 8 | m_SortShader: {fileID: 7200000, guid: ea257ca3cfb12a642a5025e612af6b2a, type: 3} 9 | m_StripUpdateShader: {fileID: 7200000, guid: 8fa6c4009fe2a4d4486c62736fc30ad8, type: 3} 10 | m_RenderPipeSettingsPath: 11 | m_FixedTimeStep: 0.016666668 12 | m_MaxDeltaTime: 0.05 13 | m_CompiledVersion: 4 14 | m_RuntimeVersion: 22 15 | m_RuntimeResources: {fileID: 11400000, guid: bc10b42afe3813544bffd38ae2cd893d, type: 2} 16 | -------------------------------------------------------------------------------- /Assets/URP/GlobalSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 2ec995e51a6e251468d2a3fd8a686257, type: 3} 13 | m_Name: GlobalSettings 14 | m_EditorClassIdentifier: 15 | k_AssetVersion: 2 16 | lightLayerName0: Light Layer default 17 | lightLayerName1: Light Layer 1 18 | lightLayerName2: Light Layer 2 19 | lightLayerName3: Light Layer 3 20 | lightLayerName4: Light Layer 4 21 | lightLayerName5: Light Layer 5 22 | lightLayerName6: Light Layer 6 23 | lightLayerName7: Light Layer 7 24 | m_StripDebugVariants: 1 25 | m_StripUnusedPostProcessingVariants: 0 26 | m_StripUnusedVariants: 1 27 | supportRuntimeDebugDisplay: 0 28 | -------------------------------------------------------------------------------- /Assets/Title/Buffer.renderTexture: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!84 &8400000 4 | RenderTexture: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Buffer 10 | m_ImageContentsHash: 11 | serializedVersion: 2 12 | Hash: 00000000000000000000000000000000 13 | m_ForcedFallbackFormat: 4 14 | m_DownscaleFallback: 0 15 | m_IsAlphaChannelOptional: 0 16 | serializedVersion: 5 17 | m_Width: 1920 18 | m_Height: 1080 19 | m_AntiAliasing: 8 20 | m_MipCount: -1 21 | m_DepthStencilFormat: 94 22 | m_ColorFormat: 8 23 | m_MipMap: 0 24 | m_GenerateMips: 1 25 | m_SRGB: 0 26 | m_UseDynamicScale: 0 27 | m_BindMS: 0 28 | m_EnableCompatibleFormat: 1 29 | m_TextureSettings: 30 | serializedVersion: 2 31 | m_FilterMode: 1 32 | m_Aniso: 0 33 | m_MipBias: 0 34 | m_WrapU: 1 35 | m_WrapV: 1 36 | m_WrapW: 1 37 | m_Dimension: 2 38 | m_VolumeDepth: 1 39 | m_ShadowSamplingMode: 2 40 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_DashboardUrl: https://dashboard.unity3d.com 13 | m_TestInitMode: 0 14 | CrashReportingSettings: 15 | m_EventUrl: https://perf-events.cloud.unity3d.com 16 | m_Enabled: 0 17 | m_LogBufferSize: 10 18 | m_CaptureEditorExceptions: 1 19 | UnityPurchasingSettings: 20 | m_Enabled: 0 21 | m_TestMode: 0 22 | UnityAnalyticsSettings: 23 | m_Enabled: 0 24 | m_TestMode: 0 25 | m_InitializeOnStartup: 1 26 | UnityAdsSettings: 27 | m_Enabled: 0 28 | m_InitializeOnStartup: 1 29 | m_TestMode: 0 30 | m_IosGameId: 31 | m_AndroidGameId: 32 | m_GameIds: {} 33 | m_GameId: 34 | PerformanceReportingSettings: 35 | m_Enabled: 0 36 | -------------------------------------------------------------------------------- /Assets/BG/Disc.metamesh.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b57c1026068a643109acee883e3e1c74 3 | ScriptedImporter: 4 | internalIDToNameTable: [] 5 | externalObjects: {} 6 | serializedVersion: 2 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | script: {fileID: 11500000, guid: a8b5f06e412d587cbac1226722904238, type: 3} 11 | _shape: 7 12 | _plane: 13 | Size: 14 | x: 1 15 | y: 1 16 | Subdivisions: 17 | x: 2 18 | y: 2 19 | Axis: 1 20 | DoubleSided: 0 21 | _box: 22 | Width: 1 23 | Height: 1 24 | Depth: 1 25 | _sphere: 26 | Radius: 1 27 | Columns: 24 28 | Rows: 12 29 | Axis: 1 30 | _icosphere: 31 | Radius: 1 32 | Subdivision: 2 33 | _cylinder: 34 | TopRadius: 1 35 | BottomRadius: 1 36 | Height: 1 37 | Columns: 24 38 | Rows: 12 39 | Axis: 1 40 | Caps: 1 41 | _roundedBox: 42 | Width: 1 43 | Height: 1 44 | Depth: 1 45 | Divisions: 3 46 | Radius: 0.1 47 | _ring: 48 | Radius: 1 49 | Width: 0.1 50 | Angle: 1 51 | Segments: 32 52 | Axis: 2 53 | DoubleSided: 0 54 | _disc: 55 | Radius: 0.5 56 | Angle: 1 57 | Segments: 128 58 | Axis: 2 59 | DoubleSided: 1 60 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreReleasePackages: 1 16 | m_EnablePackageDependencies: 1 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | m_SeeAllPackageVersions: 0 20 | oneTimeWarningShown: 1 21 | m_Registries: 22 | - m_Id: main 23 | m_Name: 24 | m_Url: https://packages.unity.com 25 | m_Scopes: [] 26 | m_IsDefault: 1 27 | m_Capabilities: 7 28 | - m_Id: scoped:Keijiro 29 | m_Name: Keijiro 30 | m_Url: https://registry.npmjs.com 31 | m_Scopes: 32 | - jp.keijiro 33 | m_IsDefault: 0 34 | m_Capabilities: 0 35 | m_UserSelectedRegistryName: Keijiro 36 | m_UserAddingNewScopedRegistry: 0 37 | m_RegistryInfoDraft: 38 | m_Modified: 0 39 | m_ErrorMessage: 40 | m_UserModificationsInstanceId: -822 41 | m_OriginalInstanceId: -824 42 | m_LoadAssets: 0 43 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!387306366 &1 4 | MemorySettings: 5 | m_ObjectHideFlags: 0 6 | m_EditorMemorySettings: 7 | m_MainAllocatorBlockSize: -1 8 | m_ThreadAllocatorBlockSize: -1 9 | m_MainGfxBlockSize: -1 10 | m_ThreadGfxBlockSize: -1 11 | m_CacheBlockSize: -1 12 | m_TypetreeBlockSize: -1 13 | m_ProfilerBlockSize: -1 14 | m_ProfilerEditorBlockSize: -1 15 | m_BucketAllocatorGranularity: -1 16 | m_BucketAllocatorBucketsCount: -1 17 | m_BucketAllocatorBlockSize: -1 18 | m_BucketAllocatorBlockCount: -1 19 | m_ProfilerBucketAllocatorGranularity: -1 20 | m_ProfilerBucketAllocatorBucketsCount: -1 21 | m_ProfilerBucketAllocatorBlockSize: -1 22 | m_ProfilerBucketAllocatorBlockCount: -1 23 | m_TempAllocatorSizeMain: -1 24 | m_JobTempAllocatorBlockSize: -1 25 | m_BackgroundJobTempAllocatorBlockSize: -1 26 | m_JobTempAllocatorReducedBlockSize: -1 27 | m_TempAllocatorSizeGIBakingWorker: -1 28 | m_TempAllocatorSizeNavMeshWorker: -1 29 | m_TempAllocatorSizeAudioWorker: -1 30 | m_TempAllocatorSizeCloudWorker: -1 31 | m_TempAllocatorSizeGfx: -1 32 | m_TempAllocatorSizeJobWorker: -1 33 | m_TempAllocatorSizeBackgroundWorker: -1 34 | m_TempAllocatorSizePreloadManager: -1 35 | m_PlatformMemorySettings: {} 36 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_SerializationMode: 2 8 | m_LineEndingsForNewScripts: 1 9 | m_DefaultBehaviorMode: 0 10 | m_PrefabRegularEnvironment: {fileID: 0} 11 | m_PrefabUIEnvironment: {fileID: 0} 12 | m_SpritePackerMode: 0 13 | m_SpritePackerPaddingPower: 1 14 | m_Bc7TextureCompressor: 0 15 | m_EtcTextureCompressorBehavior: 1 16 | m_EtcTextureFastCompressor: 1 17 | m_EtcTextureNormalCompressor: 2 18 | m_EtcTextureBestCompressor: 4 19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 20 | m_ProjectGenerationRootNamespace: 21 | m_EnableTextureStreamingInEditMode: 1 22 | m_EnableTextureStreamingInPlayMode: 1 23 | m_AsyncShaderCompilation: 0 24 | m_CachingShaderPreprocessor: 1 25 | m_PrefabModeAllowAutoSave: 1 26 | m_EnterPlayModeOptionsEnabled: 1 27 | m_EnterPlayModeOptions: 3 28 | m_GameObjectNamingDigits: 1 29 | m_GameObjectNamingScheme: 0 30 | m_AssetNamingUsesSpace: 1 31 | m_UseLegacyProbeSampleCount: 0 32 | m_SerializeInlineMappingsOnOneLine: 1 33 | m_DisableCookiesInLightmapper: 0 34 | m_AssetPipelineMode: 1 35 | m_RefreshImportMode: 0 36 | m_CacheServerMode: 0 37 | m_CacheServerEndpoint: 38 | m_CacheServerNamespacePrefix: default 39 | m_CacheServerEnableDownload: 1 40 | m_CacheServerEnableUpload: 1 41 | m_CacheServerEnableAuth: 0 42 | m_CacheServerEnableTls: 0 43 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 0 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Medium 11 | pixelLightCount: 1 12 | shadows: 1 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 20 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | skinWeights: 2 22 | textureQuality: 0 23 | anisotropicTextures: 1 24 | antiAliasing: 8 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 1 30 | lodBias: 0.7 31 | maximumLODLevel: 0 32 | streamingMipmapsActive: 0 33 | streamingMipmapsAddAllCameras: 1 34 | streamingMipmapsMemoryBudget: 512 35 | streamingMipmapsRenderersPerFrame: 512 36 | streamingMipmapsMaxLevelReduction: 2 37 | streamingMipmapsMaxFileIORequests: 1024 38 | particleRaycastBudget: 64 39 | asyncUploadTimeSlice: 2 40 | asyncUploadBufferSize: 16 41 | asyncUploadPersistentBuffer: 1 42 | resolutionScalingFixedDPIFactor: 1 43 | customRenderPipeline: {fileID: 0} 44 | excludedTargetPlatforms: [] 45 | m_PerPlatformDefaultQuality: 46 | Android: 0 47 | Lumin: 0 48 | Nintendo 3DS: 0 49 | Nintendo Switch: 0 50 | PS4: 0 51 | PSP2: 0 52 | Server: 0 53 | Stadia: 0 54 | Standalone: 0 55 | WebGL: 0 56 | Windows Store Apps: 0 57 | XboxOne: 0 58 | iPhone: 0 59 | tvOS: 0 60 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /Assets/URP/URP_Renderer.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: de640fe3d0db1804a85f9fc8f5cadab6, type: 3} 13 | m_Name: URP_Renderer 14 | m_EditorClassIdentifier: 15 | debugShaders: 16 | debugReplacementPS: {fileID: 4800000, guid: cf852408f2e174538bcd9b7fda1c5ae7, type: 3} 17 | m_RendererFeatures: [] 18 | m_RendererFeatureMap: 19 | m_UseNativeRenderPass: 0 20 | postProcessData: {fileID: 11400000, guid: 41439944d30ece34e96484bdb6645b55, type: 2} 21 | shaders: 22 | blitPS: {fileID: 4800000, guid: c17132b1f77d20942aa75f8429c0f8bc, type: 3} 23 | copyDepthPS: {fileID: 4800000, guid: d6dae50ee9e1bfa4db75f19f99355220, type: 3} 24 | screenSpaceShadowPS: {fileID: 0} 25 | samplingPS: {fileID: 4800000, guid: 04c410c9937594faa893a11dceb85f7e, type: 3} 26 | stencilDeferredPS: {fileID: 4800000, guid: e9155b26e1bc55942a41e518703fe304, type: 3} 27 | fallbackErrorPS: {fileID: 4800000, guid: e6e9a19c3678ded42a3bc431ebef7dbd, type: 3} 28 | materialErrorPS: {fileID: 4800000, guid: 5fd9a8feb75a4b5894c241777f519d4e, type: 3} 29 | coreBlitPS: {fileID: 4800000, guid: 93446b5c5339d4f00b85c159e1159b7c, type: 3} 30 | coreBlitColorAndDepthPS: {fileID: 4800000, guid: d104b2fc1ca6445babb8e90b0758136b, type: 3} 31 | cameraMotionVector: {fileID: 4800000, guid: c56b7e0d4c7cb484e959caeeedae9bbf, type: 3} 32 | objectMotionVector: {fileID: 4800000, guid: 7b3ede40266cd49a395def176e1bc486, type: 3} 33 | m_AssetVersion: 1 34 | m_OpaqueLayerMask: 35 | serializedVersion: 2 36 | m_Bits: 4294967295 37 | m_TransparentLayerMask: 38 | serializedVersion: 2 39 | m_Bits: 4294967295 40 | m_DefaultStencilState: 41 | overrideStencilState: 0 42 | stencilReference: 0 43 | stencilCompareFunction: 8 44 | passOperation: 2 45 | failOperation: 0 46 | zFailOperation: 0 47 | m_ShadowTransparentReceive: 1 48 | m_RenderingMode: 0 49 | m_DepthPrimingMode: 0 50 | m_AccurateGbufferNormals: 0 51 | m_ClusteredRendering: 0 52 | m_TileSize: 32 53 | m_IntermediateTextureMode: 0 54 | -------------------------------------------------------------------------------- /Assets/URP/URP.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &11400000 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: bf2edee5c58d82540a51f03df9d42094, type: 3} 13 | m_Name: URP 14 | m_EditorClassIdentifier: 15 | k_AssetVersion: 9 16 | k_AssetPreviousVersion: 9 17 | m_RendererType: 1 18 | m_RendererData: {fileID: 0} 19 | m_RendererDataList: 20 | - {fileID: 11400000, guid: 6b75647e8d8fe45b68573af6f4ad8a9a, type: 2} 21 | m_DefaultRendererIndex: 0 22 | m_RequireDepthTexture: 0 23 | m_RequireOpaqueTexture: 0 24 | m_OpaqueDownsampling: 1 25 | m_SupportsTerrainHoles: 1 26 | m_StoreActionsOptimization: 0 27 | m_SupportsHDR: 0 28 | m_MSAA: 8 29 | m_RenderScale: 1 30 | m_MainLightRenderingMode: 1 31 | m_MainLightShadowsSupported: 0 32 | m_MainLightShadowmapResolution: 2048 33 | m_AdditionalLightsRenderingMode: 1 34 | m_AdditionalLightsPerObjectLimit: 4 35 | m_AdditionalLightShadowsSupported: 0 36 | m_AdditionalLightsShadowmapResolution: 2048 37 | m_AdditionalLightsShadowResolutionTierLow: 256 38 | m_AdditionalLightsShadowResolutionTierMedium: 512 39 | m_AdditionalLightsShadowResolutionTierHigh: 1024 40 | m_ReflectionProbeBlending: 0 41 | m_ReflectionProbeBoxProjection: 0 42 | m_ShadowDistance: 50 43 | m_ShadowCascadeCount: 1 44 | m_Cascade2Split: 0.25 45 | m_Cascade3Split: {x: 0.1, y: 0.3} 46 | m_Cascade4Split: {x: 0.067, y: 0.2, z: 0.467} 47 | m_CascadeBorder: 0.2 48 | m_ShadowDepthBias: 1 49 | m_ShadowNormalBias: 1 50 | m_SoftShadowsSupported: 0 51 | m_ConservativeEnclosingSphere: 1 52 | m_NumIterationsEnclosingSphere: 64 53 | m_AdditionalLightsCookieResolution: 2048 54 | m_AdditionalLightsCookieFormat: 3 55 | m_UseSRPBatcher: 1 56 | m_SupportsDynamicBatching: 0 57 | m_MixedLightingSupported: 1 58 | m_SupportsLightLayers: 0 59 | m_DebugLevel: 0 60 | m_UseAdaptivePerformance: 1 61 | m_ColorGradingMode: 0 62 | m_ColorGradingLutSize: 32 63 | m_UseFastSRGBLinearConversion: 0 64 | m_ShadowType: 1 65 | m_LocalShadowsSupported: 0 66 | m_LocalShadowsAtlasResolution: 256 67 | m_MaxPixelLights: 0 68 | m_ShadowAtlasResolution: 256 69 | m_ShaderVariantLogLevel: 0 70 | m_VolumeFrameworkUpdateMode: 0 71 | m_ShadowCascades: 0 72 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient1.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Gradient1 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 555f46ab6bf634e00ac8a3ce64f136d5, type: 3} 13 | m_ManagedTypeFallback: 14 | m_Properties: 15 | - target: {fileID: 0} 16 | propertyPath: m_Enabled 17 | value: 1 18 | objectReference: {fileID: 0} 19 | - target: {fileID: 0} 20 | propertyPath: m_EditorHideFlags 21 | value: 0 22 | objectReference: {fileID: 0} 23 | - target: {fileID: 0} 24 | propertyPath: m_EditorClassIdentifier 25 | value: 26 | objectReference: {fileID: 0} 27 | - target: {fileID: 0} 28 | propertyPath: _gradient.R.x 29 | value: 0.41 30 | objectReference: {fileID: 0} 31 | - target: {fileID: 0} 32 | propertyPath: _gradient.R.y 33 | value: -0.38 34 | objectReference: {fileID: 0} 35 | - target: {fileID: 0} 36 | propertyPath: _gradient.R.z 37 | value: 1.34 38 | objectReference: {fileID: 0} 39 | - target: {fileID: 0} 40 | propertyPath: _gradient.R.w 41 | value: 0.06 42 | objectReference: {fileID: 0} 43 | - target: {fileID: 0} 44 | propertyPath: _gradient.G.x 45 | value: 0.44 46 | objectReference: {fileID: 0} 47 | - target: {fileID: 0} 48 | propertyPath: _gradient.G.y 49 | value: 0.3 50 | objectReference: {fileID: 0} 51 | - target: {fileID: 0} 52 | propertyPath: _gradient.G.z 53 | value: 1.15 54 | objectReference: {fileID: 0} 55 | - target: {fileID: 0} 56 | propertyPath: _gradient.G.w 57 | value: 0.66 58 | objectReference: {fileID: 0} 59 | - target: {fileID: 0} 60 | propertyPath: _gradient.B.x 61 | value: 0.34 62 | objectReference: {fileID: 0} 63 | - target: {fileID: 0} 64 | propertyPath: _gradient.B.y 65 | value: 0.41 66 | objectReference: {fileID: 0} 67 | - target: {fileID: 0} 68 | propertyPath: _gradient.B.z 69 | value: 1 70 | objectReference: {fileID: 0} 71 | - target: {fileID: 0} 72 | propertyPath: _gradient.B.w 73 | value: 0.6666667 74 | objectReference: {fileID: 0} 75 | - target: {fileID: 0} 76 | propertyPath: _propertyName 77 | value: _Gradient 78 | objectReference: {fileID: 0} 79 | m_ExcludedProperties: [] 80 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient2.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Gradient2 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 555f46ab6bf634e00ac8a3ce64f136d5, type: 3} 13 | m_ManagedTypeFallback: 14 | m_Properties: 15 | - target: {fileID: 0} 16 | propertyPath: m_Enabled 17 | value: 1 18 | objectReference: {fileID: 0} 19 | - target: {fileID: 0} 20 | propertyPath: m_EditorHideFlags 21 | value: 0 22 | objectReference: {fileID: 0} 23 | - target: {fileID: 0} 24 | propertyPath: m_EditorClassIdentifier 25 | value: 26 | objectReference: {fileID: 0} 27 | - target: {fileID: 0} 28 | propertyPath: _gradient.R.x 29 | value: 0.28 30 | objectReference: {fileID: 0} 31 | - target: {fileID: 0} 32 | propertyPath: _gradient.R.y 33 | value: 0.27 34 | objectReference: {fileID: 0} 35 | - target: {fileID: 0} 36 | propertyPath: _gradient.R.z 37 | value: 0.55 38 | objectReference: {fileID: 0} 39 | - target: {fileID: 0} 40 | propertyPath: _gradient.R.w 41 | value: 0.7506914 42 | objectReference: {fileID: 0} 43 | - target: {fileID: 0} 44 | propertyPath: _gradient.G.x 45 | value: 0.36 46 | objectReference: {fileID: 0} 47 | - target: {fileID: 0} 48 | propertyPath: _gradient.G.y 49 | value: 0.25 50 | objectReference: {fileID: 0} 51 | - target: {fileID: 0} 52 | propertyPath: _gradient.G.z 53 | value: 1.3451041 54 | objectReference: {fileID: 0} 55 | - target: {fileID: 0} 56 | propertyPath: _gradient.G.w 57 | value: 0.16 58 | objectReference: {fileID: 0} 59 | - target: {fileID: 0} 60 | propertyPath: _gradient.B.x 61 | value: 0.26 62 | objectReference: {fileID: 0} 63 | - target: {fileID: 0} 64 | propertyPath: _gradient.B.y 65 | value: 0.41 66 | objectReference: {fileID: 0} 67 | - target: {fileID: 0} 68 | propertyPath: _gradient.B.z 69 | value: 1.2578408 70 | objectReference: {fileID: 0} 71 | - target: {fileID: 0} 72 | propertyPath: _gradient.B.w 73 | value: 0.27 74 | objectReference: {fileID: 0} 75 | - target: {fileID: 0} 76 | propertyPath: _propertyName 77 | value: _Gradient 78 | objectReference: {fileID: 0} 79 | m_ExcludedProperties: [] 80 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient3.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Gradient3 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 555f46ab6bf634e00ac8a3ce64f136d5, type: 3} 13 | m_ManagedTypeFallback: 14 | m_Properties: 15 | - target: {fileID: 0} 16 | propertyPath: m_Enabled 17 | value: 1 18 | objectReference: {fileID: 0} 19 | - target: {fileID: 0} 20 | propertyPath: m_EditorHideFlags 21 | value: 0 22 | objectReference: {fileID: 0} 23 | - target: {fileID: 0} 24 | propertyPath: m_EditorClassIdentifier 25 | value: 26 | objectReference: {fileID: 0} 27 | - target: {fileID: 0} 28 | propertyPath: _gradient.R.x 29 | value: 0.28 30 | objectReference: {fileID: 0} 31 | - target: {fileID: 0} 32 | propertyPath: _gradient.R.y 33 | value: 0.58 34 | objectReference: {fileID: 0} 35 | - target: {fileID: 0} 36 | propertyPath: _gradient.R.z 37 | value: 1.2485079 38 | objectReference: {fileID: 0} 39 | - target: {fileID: 0} 40 | propertyPath: _gradient.R.w 41 | value: 0.1990501 42 | objectReference: {fileID: 0} 43 | - target: {fileID: 0} 44 | propertyPath: _gradient.G.x 45 | value: 0.16 46 | objectReference: {fileID: 0} 47 | - target: {fileID: 0} 48 | propertyPath: _gradient.G.y 49 | value: 0.13 50 | objectReference: {fileID: 0} 51 | - target: {fileID: 0} 52 | propertyPath: _gradient.G.z 53 | value: 0.43334872 54 | objectReference: {fileID: 0} 55 | - target: {fileID: 0} 56 | propertyPath: _gradient.G.w 57 | value: 0.24508145 58 | objectReference: {fileID: 0} 59 | - target: {fileID: 0} 60 | propertyPath: _gradient.B.x 61 | value: 0.23871556 62 | objectReference: {fileID: 0} 63 | - target: {fileID: 0} 64 | propertyPath: _gradient.B.y 65 | value: 0.13320364 66 | objectReference: {fileID: 0} 67 | - target: {fileID: 0} 68 | propertyPath: _gradient.B.z 69 | value: 1.6186535 70 | objectReference: {fileID: 0} 71 | - target: {fileID: 0} 72 | propertyPath: _gradient.B.w 73 | value: 0.6680301 74 | objectReference: {fileID: 0} 75 | - target: {fileID: 0} 76 | propertyPath: _propertyName 77 | value: _Gradient 78 | objectReference: {fileID: 0} 79 | m_ExcludedProperties: [] 80 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient4.preset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!181963792 &2655988077585873504 4 | Preset: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: Gradient4 10 | m_TargetType: 11 | m_NativeTypeID: 114 12 | m_ManagedTypePPtr: {fileID: 11500000, guid: 555f46ab6bf634e00ac8a3ce64f136d5, type: 3} 13 | m_ManagedTypeFallback: 14 | m_Properties: 15 | - target: {fileID: 0} 16 | propertyPath: m_Enabled 17 | value: 1 18 | objectReference: {fileID: 0} 19 | - target: {fileID: 0} 20 | propertyPath: m_EditorHideFlags 21 | value: 0 22 | objectReference: {fileID: 0} 23 | - target: {fileID: 0} 24 | propertyPath: m_EditorClassIdentifier 25 | value: 26 | objectReference: {fileID: 0} 27 | - target: {fileID: 0} 28 | propertyPath: _gradient.R.x 29 | value: 0.25552443 30 | objectReference: {fileID: 0} 31 | - target: {fileID: 0} 32 | propertyPath: _gradient.R.y 33 | value: 0.430273 34 | objectReference: {fileID: 0} 35 | - target: {fileID: 0} 36 | propertyPath: _gradient.R.z 37 | value: 0.61773735 38 | objectReference: {fileID: 0} 39 | - target: {fileID: 0} 40 | propertyPath: _gradient.R.w 41 | value: 0.7076407 42 | objectReference: {fileID: 0} 43 | - target: {fileID: 0} 44 | propertyPath: _gradient.G.x 45 | value: 0.3437653 46 | objectReference: {fileID: 0} 47 | - target: {fileID: 0} 48 | propertyPath: _gradient.G.y 49 | value: 0.3341333 50 | objectReference: {fileID: 0} 51 | - target: {fileID: 0} 52 | propertyPath: _gradient.G.z 53 | value: 1.8304672 54 | objectReference: {fileID: 0} 55 | - target: {fileID: 0} 56 | propertyPath: _gradient.G.w 57 | value: 0.14998747 58 | objectReference: {fileID: 0} 59 | - target: {fileID: 0} 60 | propertyPath: _gradient.B.x 61 | value: 0.6414824 62 | objectReference: {fileID: 0} 63 | - target: {fileID: 0} 64 | propertyPath: _gradient.B.y 65 | value: 0.3190402 66 | objectReference: {fileID: 0} 67 | - target: {fileID: 0} 68 | propertyPath: _gradient.B.z 69 | value: 1.3726987 70 | objectReference: {fileID: 0} 71 | - target: {fileID: 0} 72 | propertyPath: _gradient.B.w 73 | value: 0.951154 74 | objectReference: {fileID: 0} 75 | - target: {fileID: 0} 76 | propertyPath: _propertyName 77 | value: _Gradient 78 | objectReference: {fileID: 0} 79 | m_ExcludedProperties: [] 80 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 14 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_VideoShadersIncludeMode: 2 32 | m_AlwaysIncludedShaders: 33 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 38 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 39 | m_PreloadedShaders: [] 40 | m_PreloadShadersBatchTimeLimit: -1 41 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} 42 | m_CustomRenderPipeline: {fileID: 11400000, guid: e3fe3b4afb0d8446591f13d20fee9286, type: 2} 43 | m_TransparencySortMode: 0 44 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 45 | m_DefaultRenderingPath: 1 46 | m_DefaultMobileRenderingPath: 1 47 | m_TierSettings: [] 48 | m_LightmapStripping: 0 49 | m_FogStripping: 0 50 | m_InstancingStripping: 0 51 | m_LightmapKeepPlain: 1 52 | m_LightmapKeepDirCombined: 1 53 | m_LightmapKeepDynamicPlain: 1 54 | m_LightmapKeepDynamicDirCombined: 1 55 | m_LightmapKeepShadowMask: 1 56 | m_LightmapKeepSubtractive: 1 57 | m_FogKeepLinear: 1 58 | m_FogKeepExp: 1 59 | m_FogKeepExp2: 1 60 | m_AlbedoSwatchInfos: [] 61 | m_LightsUseLinearIntensity: 0 62 | m_LightsUseColorTemperature: 1 63 | m_DefaultRenderingLayerMask: 1 64 | m_LogWhenShaderIsCompiled: 0 65 | m_SRPDefaultSettings: 66 | UnityEngine.Rendering.Universal.UniversalRenderPipeline: {fileID: 11400000, guid: 0046d5afee59c49cc8dd58f1b6ce1a01, type: 2} 67 | -------------------------------------------------------------------------------- /Assets/Gradient/Gradient.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Gradient 11 | m_Shader: {fileID: -6465566751694194690, guid: 95228a78516e348db90186a47fd95cde, type: 3} 12 | m_ShaderKeywords: 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - _BaseMap: 23 | m_Texture: {fileID: 0} 24 | m_Scale: {x: 1, y: 1} 25 | m_Offset: {x: 0, y: 0} 26 | - _BumpMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailAlbedoMap: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailMask: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _DetailNormalMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _EmissionMap: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | - _MainTex: 47 | m_Texture: {fileID: 0} 48 | m_Scale: {x: 1, y: 1} 49 | m_Offset: {x: 0, y: 0} 50 | - _MetallicGlossMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _OcclusionMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | - _ParallaxMap: 59 | m_Texture: {fileID: 0} 60 | m_Scale: {x: 1, y: 1} 61 | m_Offset: {x: 0, y: 0} 62 | - _SpecGlossMap: 63 | m_Texture: {fileID: 0} 64 | m_Scale: {x: 1, y: 1} 65 | m_Offset: {x: 0, y: 0} 66 | - unity_Lightmaps: 67 | m_Texture: {fileID: 0} 68 | m_Scale: {x: 1, y: 1} 69 | m_Offset: {x: 0, y: 0} 70 | - unity_LightmapsInd: 71 | m_Texture: {fileID: 0} 72 | m_Scale: {x: 1, y: 1} 73 | m_Offset: {x: 0, y: 0} 74 | - unity_ShadowMasks: 75 | m_Texture: {fileID: 0} 76 | m_Scale: {x: 1, y: 1} 77 | m_Offset: {x: 0, y: 0} 78 | m_Ints: [] 79 | m_Floats: 80 | - _AlphaClip: 0 81 | - _Blend: 0 82 | - _BumpScale: 1 83 | - _ClearCoatMask: 0 84 | - _ClearCoatSmoothness: 0 85 | - _Cull: 2 86 | - _Cutoff: 0.5 87 | - _DetailAlbedoMapScale: 1 88 | - _DetailNormalMapScale: 1 89 | - _DstBlend: 0 90 | - _EnvironmentReflections: 1 91 | - _GlossMapScale: 0 92 | - _Glossiness: 0 93 | - _GlossyReflections: 0 94 | - _Metallic: 0 95 | - _OcclusionStrength: 1 96 | - _Parallax: 0.005 97 | - _QueueControl: 0 98 | - _QueueOffset: 0 99 | - _ReceiveShadows: 1 100 | - _Smoothness: 0.5 101 | - _SmoothnessTextureChannel: 0 102 | - _SpecularHighlights: 1 103 | - _SrcBlend: 1 104 | - _Surface: 0 105 | - _WorkflowMode: 1 106 | - _ZWrite: 1 107 | m_Colors: 108 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 109 | - _Color: {r: 1, g: 1, b: 1, a: 1} 110 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 111 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 112 | m_BuildTextureStacks: [] 113 | --- !u!114 &8498929194175463944 114 | MonoBehaviour: 115 | m_ObjectHideFlags: 11 116 | m_CorrespondingSourceObject: {fileID: 0} 117 | m_PrefabInstance: {fileID: 0} 118 | m_PrefabAsset: {fileID: 0} 119 | m_GameObject: {fileID: 0} 120 | m_Enabled: 1 121 | m_EditorHideFlags: 0 122 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 123 | m_Name: 124 | m_EditorClassIdentifier: 125 | version: 5 126 | -------------------------------------------------------------------------------- /Assets/Bumper/Box.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-8164500600615083031 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 5 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 6 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Box 24 | m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} 25 | m_ShaderKeywords: 26 | m_LightmapFlags: 4 27 | m_EnableInstancingVariants: 0 28 | m_DoubleSidedGI: 0 29 | m_CustomRenderQueue: -1 30 | stringTagMap: 31 | RenderType: Opaque 32 | disabledShaderPasses: [] 33 | m_SavedProperties: 34 | serializedVersion: 3 35 | m_TexEnvs: 36 | - _BaseMap: 37 | m_Texture: {fileID: 0} 38 | m_Scale: {x: 1, y: 1} 39 | m_Offset: {x: 0, y: 0} 40 | - _BumpMap: 41 | m_Texture: {fileID: 0} 42 | m_Scale: {x: 1, y: 1} 43 | m_Offset: {x: 0, y: 0} 44 | - _DetailAlbedoMap: 45 | m_Texture: {fileID: 0} 46 | m_Scale: {x: 1, y: 1} 47 | m_Offset: {x: 0, y: 0} 48 | - _DetailMask: 49 | m_Texture: {fileID: 0} 50 | m_Scale: {x: 1, y: 1} 51 | m_Offset: {x: 0, y: 0} 52 | - _DetailNormalMap: 53 | m_Texture: {fileID: 0} 54 | m_Scale: {x: 1, y: 1} 55 | m_Offset: {x: 0, y: 0} 56 | - _EmissionMap: 57 | m_Texture: {fileID: 0} 58 | m_Scale: {x: 1, y: 1} 59 | m_Offset: {x: 0, y: 0} 60 | - _MainTex: 61 | m_Texture: {fileID: 0} 62 | m_Scale: {x: 1, y: 1} 63 | m_Offset: {x: 0, y: 0} 64 | - _MetallicGlossMap: 65 | m_Texture: {fileID: 0} 66 | m_Scale: {x: 1, y: 1} 67 | m_Offset: {x: 0, y: 0} 68 | - _OcclusionMap: 69 | m_Texture: {fileID: 0} 70 | m_Scale: {x: 1, y: 1} 71 | m_Offset: {x: 0, y: 0} 72 | - _ParallaxMap: 73 | m_Texture: {fileID: 0} 74 | m_Scale: {x: 1, y: 1} 75 | m_Offset: {x: 0, y: 0} 76 | - _SpecGlossMap: 77 | m_Texture: {fileID: 0} 78 | m_Scale: {x: 1, y: 1} 79 | m_Offset: {x: 0, y: 0} 80 | - unity_Lightmaps: 81 | m_Texture: {fileID: 0} 82 | m_Scale: {x: 1, y: 1} 83 | m_Offset: {x: 0, y: 0} 84 | - unity_LightmapsInd: 85 | m_Texture: {fileID: 0} 86 | m_Scale: {x: 1, y: 1} 87 | m_Offset: {x: 0, y: 0} 88 | - unity_ShadowMasks: 89 | m_Texture: {fileID: 0} 90 | m_Scale: {x: 1, y: 1} 91 | m_Offset: {x: 0, y: 0} 92 | m_Ints: [] 93 | m_Floats: 94 | - _AlphaClip: 0 95 | - _Blend: 0 96 | - _BumpScale: 1 97 | - _ClearCoatMask: 0 98 | - _ClearCoatSmoothness: 0 99 | - _Cull: 2 100 | - _Cutoff: 0.5 101 | - _DetailAlbedoMapScale: 1 102 | - _DetailNormalMapScale: 1 103 | - _DstBlend: 0 104 | - _EnvironmentReflections: 1 105 | - _GlossMapScale: 0 106 | - _Glossiness: 0 107 | - _GlossyReflections: 0 108 | - _Metallic: 0 109 | - _OcclusionStrength: 1 110 | - _Parallax: 0.005 111 | - _QueueOffset: 0 112 | - _ReceiveShadows: 1 113 | - _Smoothness: 0 114 | - _SmoothnessTextureChannel: 0 115 | - _SpecularHighlights: 1 116 | - _SrcBlend: 1 117 | - _Surface: 0 118 | - _WorkflowMode: 1 119 | - _ZWrite: 1 120 | m_Colors: 121 | - _BaseColor: {r: 0.894, g: 0.48186603, b: 0.5499235, a: 1} 122 | - _Color: {r: 0.894, g: 0.48186603, b: 0.5499235, a: 1} 123 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 124 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 125 | m_BuildTextureStacks: [] 126 | -------------------------------------------------------------------------------- /Assets/Bumper/Progress.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-2724186367075808801 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 5 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 6 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Progress 24 | m_Shader: {fileID: -6465566751694194690, guid: 3da75c726eef74ac8bae767c8117e342, type: 3} 25 | m_ShaderKeywords: 26 | m_LightmapFlags: 4 27 | m_EnableInstancingVariants: 0 28 | m_DoubleSidedGI: 0 29 | m_CustomRenderQueue: -1 30 | stringTagMap: {} 31 | disabledShaderPasses: [] 32 | m_SavedProperties: 33 | serializedVersion: 3 34 | m_TexEnvs: 35 | - _BaseMap: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | - _BumpMap: 40 | m_Texture: {fileID: 0} 41 | m_Scale: {x: 1, y: 1} 42 | m_Offset: {x: 0, y: 0} 43 | - _DetailAlbedoMap: 44 | m_Texture: {fileID: 0} 45 | m_Scale: {x: 1, y: 1} 46 | m_Offset: {x: 0, y: 0} 47 | - _DetailMask: 48 | m_Texture: {fileID: 0} 49 | m_Scale: {x: 1, y: 1} 50 | m_Offset: {x: 0, y: 0} 51 | - _DetailNormalMap: 52 | m_Texture: {fileID: 0} 53 | m_Scale: {x: 1, y: 1} 54 | m_Offset: {x: 0, y: 0} 55 | - _EmissionMap: 56 | m_Texture: {fileID: 0} 57 | m_Scale: {x: 1, y: 1} 58 | m_Offset: {x: 0, y: 0} 59 | - _MainTex: 60 | m_Texture: {fileID: 0} 61 | m_Scale: {x: 1, y: 1} 62 | m_Offset: {x: 0, y: 0} 63 | - _MetallicGlossMap: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | - _OcclusionMap: 68 | m_Texture: {fileID: 0} 69 | m_Scale: {x: 1, y: 1} 70 | m_Offset: {x: 0, y: 0} 71 | - _ParallaxMap: 72 | m_Texture: {fileID: 0} 73 | m_Scale: {x: 1, y: 1} 74 | m_Offset: {x: 0, y: 0} 75 | - _SpecGlossMap: 76 | m_Texture: {fileID: 0} 77 | m_Scale: {x: 1, y: 1} 78 | m_Offset: {x: 0, y: 0} 79 | - unity_Lightmaps: 80 | m_Texture: {fileID: 0} 81 | m_Scale: {x: 1, y: 1} 82 | m_Offset: {x: 0, y: 0} 83 | - unity_LightmapsInd: 84 | m_Texture: {fileID: 0} 85 | m_Scale: {x: 1, y: 1} 86 | m_Offset: {x: 0, y: 0} 87 | - unity_ShadowMasks: 88 | m_Texture: {fileID: 0} 89 | m_Scale: {x: 1, y: 1} 90 | m_Offset: {x: 0, y: 0} 91 | m_Ints: [] 92 | m_Floats: 93 | - _AlphaClip: 0 94 | - _Blend: 0 95 | - _BumpScale: 1 96 | - _ClearCoatMask: 0 97 | - _ClearCoatSmoothness: 0 98 | - _Cull: 2 99 | - _Cutoff: 0.5 100 | - _DetailAlbedoMapScale: 1 101 | - _DetailNormalMapScale: 1 102 | - _DstBlend: 0 103 | - _EnvironmentReflections: 1 104 | - _GlossMapScale: 0 105 | - _Glossiness: 0 106 | - _GlossyReflections: 0 107 | - _Metallic: 0 108 | - _OcclusionStrength: 1 109 | - _Parallax: 0.005 110 | - _Progress: 0 111 | - _QueueControl: 0 112 | - _QueueOffset: 0 113 | - _ReceiveShadows: 1 114 | - _Smoothness: 0.5 115 | - _SmoothnessTextureChannel: 0 116 | - _SpecularHighlights: 1 117 | - _Speed: 3 118 | - _SrcBlend: 1 119 | - _Surface: 0 120 | - _WorkflowMode: 1 121 | - _ZWrite: 1 122 | m_Colors: 123 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 124 | - _Color: {r: 0.48900002, g: 0.2655776, b: 0.30351725, a: 1} 125 | - _Color2: {r: 0.6627451, g: 0.36078432, b: 0.40784317, a: 1} 126 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 127 | - _Frequency: {r: 14, g: 0.75, b: 0, a: 0} 128 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 129 | m_BuildTextureStacks: [] 130 | -------------------------------------------------------------------------------- /Assets/Gradient/Rect2.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-753160567752413094 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 5 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 6 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Rect2 24 | m_Shader: {fileID: -6465566751694194690, guid: e87432988d21e4de8a168ec81bbe86d6, type: 3} 25 | m_ShaderKeywords: 26 | m_LightmapFlags: 4 27 | m_EnableInstancingVariants: 0 28 | m_DoubleSidedGI: 0 29 | m_CustomRenderQueue: -1 30 | stringTagMap: {} 31 | disabledShaderPasses: [] 32 | m_SavedProperties: 33 | serializedVersion: 3 34 | m_TexEnvs: 35 | - _BaseMap: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | - _BumpMap: 40 | m_Texture: {fileID: 0} 41 | m_Scale: {x: 1, y: 1} 42 | m_Offset: {x: 0, y: 0} 43 | - _DetailAlbedoMap: 44 | m_Texture: {fileID: 0} 45 | m_Scale: {x: 1, y: 1} 46 | m_Offset: {x: 0, y: 0} 47 | - _DetailMask: 48 | m_Texture: {fileID: 0} 49 | m_Scale: {x: 1, y: 1} 50 | m_Offset: {x: 0, y: 0} 51 | - _DetailNormalMap: 52 | m_Texture: {fileID: 0} 53 | m_Scale: {x: 1, y: 1} 54 | m_Offset: {x: 0, y: 0} 55 | - _EmissionMap: 56 | m_Texture: {fileID: 0} 57 | m_Scale: {x: 1, y: 1} 58 | m_Offset: {x: 0, y: 0} 59 | - _MainTex: 60 | m_Texture: {fileID: 0} 61 | m_Scale: {x: 1, y: 1} 62 | m_Offset: {x: 0, y: 0} 63 | - _MetallicGlossMap: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | - _OcclusionMap: 68 | m_Texture: {fileID: 0} 69 | m_Scale: {x: 1, y: 1} 70 | m_Offset: {x: 0, y: 0} 71 | - _ParallaxMap: 72 | m_Texture: {fileID: 0} 73 | m_Scale: {x: 1, y: 1} 74 | m_Offset: {x: 0, y: 0} 75 | - _SpecGlossMap: 76 | m_Texture: {fileID: 0} 77 | m_Scale: {x: 1, y: 1} 78 | m_Offset: {x: 0, y: 0} 79 | - unity_Lightmaps: 80 | m_Texture: {fileID: 0} 81 | m_Scale: {x: 1, y: 1} 82 | m_Offset: {x: 0, y: 0} 83 | - unity_LightmapsInd: 84 | m_Texture: {fileID: 0} 85 | m_Scale: {x: 1, y: 1} 86 | m_Offset: {x: 0, y: 0} 87 | - unity_ShadowMasks: 88 | m_Texture: {fileID: 0} 89 | m_Scale: {x: 1, y: 1} 90 | m_Offset: {x: 0, y: 0} 91 | m_Ints: [] 92 | m_Floats: 93 | - _AlphaClip: 0 94 | - _BUILTIN_QueueControl: -1 95 | - _BUILTIN_QueueOffset: 0 96 | - _Blend: 0 97 | - _BumpScale: 1 98 | - _ClearCoatMask: 0 99 | - _ClearCoatSmoothness: 0 100 | - _Cull: 2 101 | - _Cutoff: 0.5 102 | - _DetailAlbedoMapScale: 1 103 | - _DetailNormalMapScale: 1 104 | - _DstBlend: 0 105 | - _EnvironmentReflections: 1 106 | - _GlossMapScale: 0 107 | - _Glossiness: 0 108 | - _GlossyReflections: 0 109 | - _Metallic: 0 110 | - _OcclusionStrength: 1 111 | - _Parallax: 0.005 112 | - _QueueControl: 0 113 | - _QueueOffset: 0 114 | - _ReceiveShadows: 1 115 | - _Smoothness: 0.5 116 | - _SmoothnessTextureChannel: 0 117 | - _SpecularHighlights: 1 118 | - _SrcBlend: 1 119 | - _Surface: 0 120 | - _WorkflowMode: 1 121 | - _ZWrite: 1 122 | m_Colors: 123 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 124 | - _ClipVector: {r: 0.71, g: 0.71, b: 0, a: 0} 125 | - _Color: {r: 1, g: 1, b: 1, a: 1} 126 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 127 | - _Extent: {r: 0.45, g: 0.45, b: 0.44, a: 0} 128 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 129 | - _Wing: {r: 15, g: -1, b: 0, a: 0} 130 | m_BuildTextureStacks: [] 131 | -------------------------------------------------------------------------------- /Assets/Gradient/Rect3.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-753160567752413094 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 5 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 6 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Rect3 24 | m_Shader: {fileID: -6465566751694194690, guid: e87432988d21e4de8a168ec81bbe86d6, type: 3} 25 | m_ShaderKeywords: 26 | m_LightmapFlags: 4 27 | m_EnableInstancingVariants: 0 28 | m_DoubleSidedGI: 0 29 | m_CustomRenderQueue: -1 30 | stringTagMap: {} 31 | disabledShaderPasses: [] 32 | m_SavedProperties: 33 | serializedVersion: 3 34 | m_TexEnvs: 35 | - _BaseMap: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | - _BumpMap: 40 | m_Texture: {fileID: 0} 41 | m_Scale: {x: 1, y: 1} 42 | m_Offset: {x: 0, y: 0} 43 | - _DetailAlbedoMap: 44 | m_Texture: {fileID: 0} 45 | m_Scale: {x: 1, y: 1} 46 | m_Offset: {x: 0, y: 0} 47 | - _DetailMask: 48 | m_Texture: {fileID: 0} 49 | m_Scale: {x: 1, y: 1} 50 | m_Offset: {x: 0, y: 0} 51 | - _DetailNormalMap: 52 | m_Texture: {fileID: 0} 53 | m_Scale: {x: 1, y: 1} 54 | m_Offset: {x: 0, y: 0} 55 | - _EmissionMap: 56 | m_Texture: {fileID: 0} 57 | m_Scale: {x: 1, y: 1} 58 | m_Offset: {x: 0, y: 0} 59 | - _MainTex: 60 | m_Texture: {fileID: 0} 61 | m_Scale: {x: 1, y: 1} 62 | m_Offset: {x: 0, y: 0} 63 | - _MetallicGlossMap: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | - _OcclusionMap: 68 | m_Texture: {fileID: 0} 69 | m_Scale: {x: 1, y: 1} 70 | m_Offset: {x: 0, y: 0} 71 | - _ParallaxMap: 72 | m_Texture: {fileID: 0} 73 | m_Scale: {x: 1, y: 1} 74 | m_Offset: {x: 0, y: 0} 75 | - _SpecGlossMap: 76 | m_Texture: {fileID: 0} 77 | m_Scale: {x: 1, y: 1} 78 | m_Offset: {x: 0, y: 0} 79 | - unity_Lightmaps: 80 | m_Texture: {fileID: 0} 81 | m_Scale: {x: 1, y: 1} 82 | m_Offset: {x: 0, y: 0} 83 | - unity_LightmapsInd: 84 | m_Texture: {fileID: 0} 85 | m_Scale: {x: 1, y: 1} 86 | m_Offset: {x: 0, y: 0} 87 | - unity_ShadowMasks: 88 | m_Texture: {fileID: 0} 89 | m_Scale: {x: 1, y: 1} 90 | m_Offset: {x: 0, y: 0} 91 | m_Ints: [] 92 | m_Floats: 93 | - _AlphaClip: 0 94 | - _BUILTIN_QueueControl: -1 95 | - _BUILTIN_QueueOffset: 0 96 | - _Blend: 0 97 | - _BumpScale: 1 98 | - _ClearCoatMask: 0 99 | - _ClearCoatSmoothness: 0 100 | - _Cull: 2 101 | - _Cutoff: 0.5 102 | - _DetailAlbedoMapScale: 1 103 | - _DetailNormalMapScale: 1 104 | - _DstBlend: 0 105 | - _EnvironmentReflections: 1 106 | - _GlossMapScale: 0 107 | - _Glossiness: 0 108 | - _GlossyReflections: 0 109 | - _Metallic: 0 110 | - _OcclusionStrength: 1 111 | - _Parallax: 0.005 112 | - _QueueControl: 0 113 | - _QueueOffset: 0 114 | - _ReceiveShadows: 1 115 | - _Smoothness: 0.5 116 | - _SmoothnessTextureChannel: 0 117 | - _SpecularHighlights: 1 118 | - _SrcBlend: 1 119 | - _Surface: 0 120 | - _WorkflowMode: 1 121 | - _ZWrite: 1 122 | m_Colors: 123 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 124 | - _ClipVector: {r: -0.71, g: 0.71, b: 0.17, a: 0} 125 | - _Color: {r: 1, g: 1, b: 1, a: 1} 126 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 127 | - _Extent: {r: 0.45, g: 0.45, b: 0.67, a: 0} 128 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 129 | - _Wing: {r: 10, g: -1, b: 0, a: 0} 130 | m_BuildTextureStacks: [] 131 | -------------------------------------------------------------------------------- /Assets/Gradient/Rect1.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-753160567752413094 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 11 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: d0353a89b1f911e48b9e16bdc9f2e058, type: 3} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | version: 5 16 | --- !u!21 &2100000 17 | Material: 18 | serializedVersion: 6 19 | m_ObjectHideFlags: 0 20 | m_CorrespondingSourceObject: {fileID: 0} 21 | m_PrefabInstance: {fileID: 0} 22 | m_PrefabAsset: {fileID: 0} 23 | m_Name: Rect1 24 | m_Shader: {fileID: -6465566751694194690, guid: e87432988d21e4de8a168ec81bbe86d6, type: 3} 25 | m_ShaderKeywords: 26 | m_LightmapFlags: 4 27 | m_EnableInstancingVariants: 0 28 | m_DoubleSidedGI: 0 29 | m_CustomRenderQueue: -1 30 | stringTagMap: {} 31 | disabledShaderPasses: [] 32 | m_SavedProperties: 33 | serializedVersion: 3 34 | m_TexEnvs: 35 | - _BaseMap: 36 | m_Texture: {fileID: 0} 37 | m_Scale: {x: 1, y: 1} 38 | m_Offset: {x: 0, y: 0} 39 | - _BumpMap: 40 | m_Texture: {fileID: 0} 41 | m_Scale: {x: 1, y: 1} 42 | m_Offset: {x: 0, y: 0} 43 | - _DetailAlbedoMap: 44 | m_Texture: {fileID: 0} 45 | m_Scale: {x: 1, y: 1} 46 | m_Offset: {x: 0, y: 0} 47 | - _DetailMask: 48 | m_Texture: {fileID: 0} 49 | m_Scale: {x: 1, y: 1} 50 | m_Offset: {x: 0, y: 0} 51 | - _DetailNormalMap: 52 | m_Texture: {fileID: 0} 53 | m_Scale: {x: 1, y: 1} 54 | m_Offset: {x: 0, y: 0} 55 | - _EmissionMap: 56 | m_Texture: {fileID: 0} 57 | m_Scale: {x: 1, y: 1} 58 | m_Offset: {x: 0, y: 0} 59 | - _MainTex: 60 | m_Texture: {fileID: 0} 61 | m_Scale: {x: 1, y: 1} 62 | m_Offset: {x: 0, y: 0} 63 | - _MetallicGlossMap: 64 | m_Texture: {fileID: 0} 65 | m_Scale: {x: 1, y: 1} 66 | m_Offset: {x: 0, y: 0} 67 | - _OcclusionMap: 68 | m_Texture: {fileID: 0} 69 | m_Scale: {x: 1, y: 1} 70 | m_Offset: {x: 0, y: 0} 71 | - _ParallaxMap: 72 | m_Texture: {fileID: 0} 73 | m_Scale: {x: 1, y: 1} 74 | m_Offset: {x: 0, y: 0} 75 | - _SpecGlossMap: 76 | m_Texture: {fileID: 0} 77 | m_Scale: {x: 1, y: 1} 78 | m_Offset: {x: 0, y: 0} 79 | - unity_Lightmaps: 80 | m_Texture: {fileID: 0} 81 | m_Scale: {x: 1, y: 1} 82 | m_Offset: {x: 0, y: 0} 83 | - unity_LightmapsInd: 84 | m_Texture: {fileID: 0} 85 | m_Scale: {x: 1, y: 1} 86 | m_Offset: {x: 0, y: 0} 87 | - unity_ShadowMasks: 88 | m_Texture: {fileID: 0} 89 | m_Scale: {x: 1, y: 1} 90 | m_Offset: {x: 0, y: 0} 91 | m_Ints: [] 92 | m_Floats: 93 | - _AlphaClip: 0 94 | - _BUILTIN_QueueControl: -1 95 | - _BUILTIN_QueueOffset: 0 96 | - _Blend: 0 97 | - _BumpScale: 1 98 | - _ClearCoatMask: 0 99 | - _ClearCoatSmoothness: 0 100 | - _Cull: 2 101 | - _Cutoff: 0.5 102 | - _DetailAlbedoMapScale: 1 103 | - _DetailNormalMapScale: 1 104 | - _DstBlend: 0 105 | - _EnvironmentReflections: 1 106 | - _GlossMapScale: 0 107 | - _Glossiness: 0 108 | - _GlossyReflections: 0 109 | - _Metallic: 0 110 | - _OcclusionStrength: 1 111 | - _Parallax: 0.005 112 | - _QueueControl: 0 113 | - _QueueOffset: 0 114 | - _ReceiveShadows: 1 115 | - _Smoothness: 0.5 116 | - _SmoothnessTextureChannel: 0 117 | - _SpecularHighlights: 1 118 | - _SrcBlend: 1 119 | - _Surface: 0 120 | - _WorkflowMode: 1 121 | - _ZWrite: 1 122 | m_Colors: 123 | - _BaseColor: {r: 1, g: 1, b: 1, a: 1} 124 | - _ClipVector: {r: -0.71, g: 0.94666666, b: -0.07, a: 0} 125 | - _Color: {r: 1, g: 1, b: 1, a: 1} 126 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 127 | - _Extent: {r: 0.45, g: 0.45, b: 0.55, a: 0} 128 | - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} 129 | - _Wing: {r: 20, g: -1, b: 0, a: 0} 130 | m_BuildTextureStacks: [] 131 | -------------------------------------------------------------------------------- /Assets/Gradient/BIZ_UDPGothic/OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright 2022 The BIZ UDGothic Project Authors (https://github.com/googlefonts/morisawa-biz-ud-mincho) 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /Assets/Gradient/Orbitron/Open Font License.markdown: -------------------------------------------------------------------------------- 1 | Copyright (c) 2009, Matt McInerney , with Reserved Font Name: "Orbitron". 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | Version 1.1 - 26 February 2007 8 | 9 | 10 | SIL Open Font License 11 | ==================================================== 12 | 13 | 14 | Preamble 15 | ---------- 16 | 17 | The goals of the Open Font License (OFL) are to stimulate worldwide 18 | development of collaborative font projects, to support the font creation 19 | efforts of academic and linguistic communities, and to provide a free and 20 | open framework in which fonts may be shared and improved in partnership 21 | with others. 22 | 23 | The OFL allows the licensed fonts to be used, studied, modified and 24 | redistributed freely as long as they are not sold by themselves. The 25 | fonts, including any derivative works, can be bundled, embedded, 26 | redistributed and/or sold with any software provided that any reserved 27 | names are not used by derivative works. The fonts and derivatives, 28 | however, cannot be released under any other type of license. The 29 | requirement for fonts to remain under this license does not apply 30 | to any document created using the fonts or their derivatives. 31 | 32 | Definitions 33 | ------------- 34 | 35 | `"Font Software"` refers to the set of files released by the Copyright 36 | Holder(s) under this license and clearly marked as such. This may 37 | include source files, build scripts and documentation. 38 | 39 | `"Reserved Font Name"` refers to any names specified as such after the 40 | copyright statement(s). 41 | 42 | `"Original Version"` refers to the collection of Font Software components as 43 | distributed by the Copyright Holder(s). 44 | 45 | `"Modified Version"` refers to any derivative made by adding to, deleting, 46 | or substituting -- in part or in whole -- any of the components of the 47 | Original Version, by changing formats or by porting the Font Software to a 48 | new environment. 49 | 50 | `"Author"` refers to any designer, engineer, programmer, technical 51 | writer or other person who contributed to the Font Software. 52 | 53 | Permission & Conditions 54 | ------------------------ 55 | 56 | Permission is hereby granted, free of charge, to any person obtaining 57 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 58 | redistribute, and sell modified and unmodified copies of the Font 59 | Software, subject to the following conditions: 60 | 61 | 1. Neither the Font Software nor any of its individual components, 62 | in Original or Modified Versions, may be sold by itself. 63 | 64 | 2. Original or Modified Versions of the Font Software may be bundled, 65 | redistributed and/or sold with any software, provided that each copy 66 | contains the above copyright notice and this license. These can be 67 | included either as stand-alone text files, human-readable headers or 68 | in the appropriate machine-readable metadata fields within text or 69 | binary files as long as those fields can be easily viewed by the user. 70 | 71 | 3. No Modified Version of the Font Software may use the Reserved Font 72 | Name(s) unless explicit written permission is granted by the corresponding 73 | Copyright Holder. This restriction only applies to the primary font name as 74 | presented to the users. 75 | 76 | 4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font 77 | Software shall not be used to promote, endorse or advertise any 78 | Modified Version, except to acknowledge the contribution(s) of the 79 | Copyright Holder(s) and the Author(s) or with their explicit written 80 | permission. 81 | 82 | 5. The Font Software, modified or unmodified, in part or in whole, 83 | must be distributed entirely under this license, and must not be 84 | distributed under any other license. The requirement for fonts to 85 | remain under this license does not apply to any document created 86 | using the Font Software. 87 | 88 | Termination 89 | ----------- 90 | 91 | This license becomes null and void if any of the above conditions are 92 | not met. 93 | 94 | 95 | DISCLAIMER 96 | 97 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 98 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 99 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 100 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 101 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 102 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 103 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 104 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 105 | OTHER DEALINGS IN THE FONT SOFTWARE. 106 | -------------------------------------------------------------------------------- /ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "templatePinStates": [], 3 | "dependencyTypeInfos": [ 4 | { 5 | "userAdded": false, 6 | "type": "UnityEngine.AnimationClip", 7 | "ignore": false, 8 | "defaultInstantiationMode": 0, 9 | "supportsModification": true 10 | }, 11 | { 12 | "userAdded": false, 13 | "type": "UnityEditor.Animations.AnimatorController", 14 | "ignore": false, 15 | "defaultInstantiationMode": 0, 16 | "supportsModification": true 17 | }, 18 | { 19 | "userAdded": false, 20 | "type": "UnityEngine.AnimatorOverrideController", 21 | "ignore": false, 22 | "defaultInstantiationMode": 0, 23 | "supportsModification": true 24 | }, 25 | { 26 | "userAdded": false, 27 | "type": "UnityEditor.Audio.AudioMixerController", 28 | "ignore": false, 29 | "defaultInstantiationMode": 0, 30 | "supportsModification": true 31 | }, 32 | { 33 | "userAdded": false, 34 | "type": "UnityEngine.ComputeShader", 35 | "ignore": true, 36 | "defaultInstantiationMode": 1, 37 | "supportsModification": true 38 | }, 39 | { 40 | "userAdded": false, 41 | "type": "UnityEngine.Cubemap", 42 | "ignore": false, 43 | "defaultInstantiationMode": 0, 44 | "supportsModification": true 45 | }, 46 | { 47 | "userAdded": false, 48 | "type": "UnityEngine.GameObject", 49 | "ignore": false, 50 | "defaultInstantiationMode": 0, 51 | "supportsModification": true 52 | }, 53 | { 54 | "userAdded": false, 55 | "type": "UnityEditor.LightingDataAsset", 56 | "ignore": false, 57 | "defaultInstantiationMode": 0, 58 | "supportsModification": false 59 | }, 60 | { 61 | "userAdded": false, 62 | "type": "UnityEngine.LightingSettings", 63 | "ignore": false, 64 | "defaultInstantiationMode": 0, 65 | "supportsModification": true 66 | }, 67 | { 68 | "userAdded": false, 69 | "type": "UnityEngine.Material", 70 | "ignore": false, 71 | "defaultInstantiationMode": 0, 72 | "supportsModification": true 73 | }, 74 | { 75 | "userAdded": false, 76 | "type": "UnityEditor.MonoScript", 77 | "ignore": true, 78 | "defaultInstantiationMode": 1, 79 | "supportsModification": true 80 | }, 81 | { 82 | "userAdded": false, 83 | "type": "UnityEngine.PhysicMaterial", 84 | "ignore": false, 85 | "defaultInstantiationMode": 0, 86 | "supportsModification": true 87 | }, 88 | { 89 | "userAdded": false, 90 | "type": "UnityEngine.PhysicsMaterial2D", 91 | "ignore": false, 92 | "defaultInstantiationMode": 0, 93 | "supportsModification": true 94 | }, 95 | { 96 | "userAdded": false, 97 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessProfile", 98 | "ignore": false, 99 | "defaultInstantiationMode": 0, 100 | "supportsModification": true 101 | }, 102 | { 103 | "userAdded": false, 104 | "type": "UnityEngine.Rendering.PostProcessing.PostProcessResources", 105 | "ignore": false, 106 | "defaultInstantiationMode": 0, 107 | "supportsModification": true 108 | }, 109 | { 110 | "userAdded": false, 111 | "type": "UnityEngine.Rendering.VolumeProfile", 112 | "ignore": false, 113 | "defaultInstantiationMode": 0, 114 | "supportsModification": true 115 | }, 116 | { 117 | "userAdded": false, 118 | "type": "UnityEditor.SceneAsset", 119 | "ignore": false, 120 | "defaultInstantiationMode": 0, 121 | "supportsModification": false 122 | }, 123 | { 124 | "userAdded": false, 125 | "type": "UnityEngine.Shader", 126 | "ignore": true, 127 | "defaultInstantiationMode": 1, 128 | "supportsModification": true 129 | }, 130 | { 131 | "userAdded": false, 132 | "type": "UnityEngine.ShaderVariantCollection", 133 | "ignore": true, 134 | "defaultInstantiationMode": 1, 135 | "supportsModification": true 136 | }, 137 | { 138 | "userAdded": false, 139 | "type": "UnityEngine.Texture", 140 | "ignore": false, 141 | "defaultInstantiationMode": 0, 142 | "supportsModification": true 143 | }, 144 | { 145 | "userAdded": false, 146 | "type": "UnityEngine.Texture2D", 147 | "ignore": false, 148 | "defaultInstantiationMode": 0, 149 | "supportsModification": true 150 | }, 151 | { 152 | "userAdded": false, 153 | "type": "UnityEngine.Timeline.TimelineAsset", 154 | "ignore": false, 155 | "defaultInstantiationMode": 0, 156 | "supportsModification": true 157 | } 158 | ], 159 | "defaultDependencyTypeInfo": { 160 | "userAdded": false, 161 | "type": "", 162 | "ignore": false, 163 | "defaultInstantiationMode": 1, 164 | "supportsModification": true 165 | }, 166 | "newSceneOverride": 0 167 | } -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.burst": { 4 | "version": "1.6.4", 5 | "depth": 1, 6 | "source": "registry", 7 | "dependencies": { 8 | "com.unity.mathematics": "1.2.1" 9 | }, 10 | "url": "https://packages.unity.com" 11 | }, 12 | "com.unity.mathematics": { 13 | "version": "1.2.5", 14 | "depth": 1, 15 | "source": "registry", 16 | "dependencies": {}, 17 | "url": "https://packages.unity.com" 18 | }, 19 | "com.unity.recorder": { 20 | "version": "4.0.0-pre.3", 21 | "depth": 0, 22 | "source": "registry", 23 | "dependencies": { 24 | "com.unity.timeline": "1.0.0" 25 | }, 26 | "url": "https://packages.unity.com" 27 | }, 28 | "com.unity.render-pipelines.core": { 29 | "version": "12.1.6", 30 | "depth": 1, 31 | "source": "builtin", 32 | "dependencies": { 33 | "com.unity.ugui": "1.0.0", 34 | "com.unity.modules.physics": "1.0.0", 35 | "com.unity.modules.jsonserialize": "1.0.0" 36 | } 37 | }, 38 | "com.unity.render-pipelines.universal": { 39 | "version": "12.1.6", 40 | "depth": 0, 41 | "source": "builtin", 42 | "dependencies": { 43 | "com.unity.mathematics": "1.2.1", 44 | "com.unity.burst": "1.5.0", 45 | "com.unity.render-pipelines.core": "12.1.6", 46 | "com.unity.shadergraph": "12.1.6" 47 | } 48 | }, 49 | "com.unity.searcher": { 50 | "version": "4.9.1", 51 | "depth": 2, 52 | "source": "registry", 53 | "dependencies": {}, 54 | "url": "https://packages.unity.com" 55 | }, 56 | "com.unity.shadergraph": { 57 | "version": "12.1.6", 58 | "depth": 1, 59 | "source": "builtin", 60 | "dependencies": { 61 | "com.unity.render-pipelines.core": "12.1.6", 62 | "com.unity.searcher": "4.9.1" 63 | } 64 | }, 65 | "com.unity.timeline": { 66 | "version": "1.6.4", 67 | "depth": 1, 68 | "source": "registry", 69 | "dependencies": { 70 | "com.unity.modules.director": "1.0.0", 71 | "com.unity.modules.animation": "1.0.0", 72 | "com.unity.modules.audio": "1.0.0", 73 | "com.unity.modules.particlesystem": "1.0.0" 74 | }, 75 | "url": "https://packages.unity.com" 76 | }, 77 | "com.unity.ugui": { 78 | "version": "1.0.0", 79 | "depth": 2, 80 | "source": "builtin", 81 | "dependencies": { 82 | "com.unity.modules.ui": "1.0.0", 83 | "com.unity.modules.imgui": "1.0.0" 84 | } 85 | }, 86 | "com.unity.visualeffectgraph": { 87 | "version": "12.1.6", 88 | "depth": 0, 89 | "source": "builtin", 90 | "dependencies": { 91 | "com.unity.shadergraph": "12.1.6", 92 | "com.unity.render-pipelines.core": "12.1.6" 93 | } 94 | }, 95 | "jp.keijiro.klak.cosinegradient": { 96 | "version": "1.1.0", 97 | "depth": 0, 98 | "source": "registry", 99 | "dependencies": { 100 | "com.unity.mathematics": "1.1.0" 101 | }, 102 | "url": "https://registry.npmjs.com" 103 | }, 104 | "jp.keijiro.klak.timeline.procedural-motion": { 105 | "version": "1.0.2", 106 | "depth": 0, 107 | "source": "registry", 108 | "dependencies": { 109 | "com.unity.modules.imgui": "1.0.0", 110 | "com.unity.timeline": "1.4.2", 111 | "com.unity.mathematics": "1.2.1" 112 | }, 113 | "url": "https://registry.npmjs.com" 114 | }, 115 | "jp.keijiro.metamesh": { 116 | "version": "1.0.1", 117 | "depth": 0, 118 | "source": "registry", 119 | "dependencies": { 120 | "com.unity.mathematics": "1.2.1" 121 | }, 122 | "url": "https://registry.npmjs.com" 123 | }, 124 | "jp.keijiro.noiseshader": { 125 | "version": "2.0.0", 126 | "depth": 1, 127 | "source": "registry", 128 | "dependencies": {}, 129 | "url": "https://registry.npmjs.com" 130 | }, 131 | "jp.keijiro.shadergraphassets": { 132 | "version": "2.5.0", 133 | "depth": 0, 134 | "source": "registry", 135 | "dependencies": { 136 | "com.unity.shadergraph": "12.1.0", 137 | "jp.keijiro.noiseshader": "2.0.0" 138 | }, 139 | "url": "https://registry.npmjs.com" 140 | }, 141 | "jp.keijiro.vfxgraphassets": { 142 | "version": "1.0.10", 143 | "depth": 0, 144 | "source": "registry", 145 | "dependencies": { 146 | "jp.keijiro.shadergraphassets": "1.0.4" 147 | }, 148 | "url": "https://registry.npmjs.com" 149 | }, 150 | "com.unity.modules.animation": { 151 | "version": "1.0.0", 152 | "depth": 2, 153 | "source": "builtin", 154 | "dependencies": {} 155 | }, 156 | "com.unity.modules.audio": { 157 | "version": "1.0.0", 158 | "depth": 2, 159 | "source": "builtin", 160 | "dependencies": {} 161 | }, 162 | "com.unity.modules.director": { 163 | "version": "1.0.0", 164 | "depth": 2, 165 | "source": "builtin", 166 | "dependencies": { 167 | "com.unity.modules.audio": "1.0.0", 168 | "com.unity.modules.animation": "1.0.0" 169 | } 170 | }, 171 | "com.unity.modules.imgui": { 172 | "version": "1.0.0", 173 | "depth": 1, 174 | "source": "builtin", 175 | "dependencies": {} 176 | }, 177 | "com.unity.modules.jsonserialize": { 178 | "version": "1.0.0", 179 | "depth": 2, 180 | "source": "builtin", 181 | "dependencies": {} 182 | }, 183 | "com.unity.modules.particlesystem": { 184 | "version": "1.0.0", 185 | "depth": 2, 186 | "source": "builtin", 187 | "dependencies": {} 188 | }, 189 | "com.unity.modules.physics": { 190 | "version": "1.0.0", 191 | "depth": 2, 192 | "source": "builtin", 193 | "dependencies": {} 194 | }, 195 | "com.unity.modules.ui": { 196 | "version": "1.0.0", 197 | "depth": 3, 198 | "source": "builtin", 199 | "dependencies": {} 200 | } 201 | } 202 | } 203 | -------------------------------------------------------------------------------- /Assets/BG/Timeline.playable: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-3724214664451487433 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 1 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 0e6cf5671577b7344ba25c25b4346ce4, type: 3} 13 | m_Name: Recorder Track 14 | m_EditorClassIdentifier: 15 | m_Version: 3 16 | m_AnimClip: {fileID: 0} 17 | m_Locked: 0 18 | m_Muted: 1 19 | m_CustomPlayableFullTypename: 20 | m_Curves: {fileID: 0} 21 | m_Parent: {fileID: 11400000} 22 | m_Children: [] 23 | m_Clips: 24 | - m_Version: 1 25 | m_Start: 0 26 | m_ClipIn: 0 27 | m_Asset: {fileID: -2855011108890218754} 28 | m_Duration: 120 29 | m_TimeScale: 1 30 | m_ParentTrack: {fileID: -3724214664451487433} 31 | m_EaseInDuration: 0 32 | m_EaseOutDuration: 0 33 | m_BlendInDuration: 0 34 | m_BlendOutDuration: 0 35 | m_MixInCurve: 36 | serializedVersion: 2 37 | m_Curve: 38 | - serializedVersion: 3 39 | time: 0 40 | value: 0 41 | inSlope: 0 42 | outSlope: 0 43 | tangentMode: 0 44 | weightedMode: 0 45 | inWeight: 0 46 | outWeight: 0 47 | - serializedVersion: 3 48 | time: 1 49 | value: 1 50 | inSlope: 0 51 | outSlope: 0 52 | tangentMode: 0 53 | weightedMode: 0 54 | inWeight: 0 55 | outWeight: 0 56 | m_PreInfinity: 2 57 | m_PostInfinity: 2 58 | m_RotationOrder: 4 59 | m_MixOutCurve: 60 | serializedVersion: 2 61 | m_Curve: 62 | - serializedVersion: 3 63 | time: 0 64 | value: 1 65 | inSlope: 0 66 | outSlope: 0 67 | tangentMode: 0 68 | weightedMode: 0 69 | inWeight: 0 70 | outWeight: 0 71 | - serializedVersion: 3 72 | time: 1 73 | value: 0 74 | inSlope: 0 75 | outSlope: 0 76 | tangentMode: 0 77 | weightedMode: 0 78 | inWeight: 0 79 | outWeight: 0 80 | m_PreInfinity: 2 81 | m_PostInfinity: 2 82 | m_RotationOrder: 4 83 | m_BlendInCurveMode: 0 84 | m_BlendOutCurveMode: 0 85 | m_ExposedParameterNames: [] 86 | m_AnimationCurves: {fileID: 0} 87 | m_Recordable: 0 88 | m_PostExtrapolationMode: 0 89 | m_PreExtrapolationMode: 0 90 | m_PostExtrapolationTime: 0 91 | m_PreExtrapolationTime: 0 92 | m_DisplayName: RecorderClip 93 | m_Markers: 94 | m_Objects: [] 95 | --- !u!114 &-2855011108890218754 96 | MonoBehaviour: 97 | m_ObjectHideFlags: 1 98 | m_CorrespondingSourceObject: {fileID: 0} 99 | m_PrefabInstance: {fileID: 0} 100 | m_PrefabAsset: {fileID: 0} 101 | m_GameObject: {fileID: 0} 102 | m_Enabled: 1 103 | m_EditorHideFlags: 0 104 | m_Script: {fileID: 11500000, guid: f1e95aa6d658d694785bfde37c857fff, type: 3} 105 | m_Name: RecorderClip 106 | m_EditorClassIdentifier: 107 | settings: {fileID: 2949624343223842007} 108 | --- !u!114 &11400000 109 | MonoBehaviour: 110 | m_ObjectHideFlags: 0 111 | m_CorrespondingSourceObject: {fileID: 0} 112 | m_PrefabInstance: {fileID: 0} 113 | m_PrefabAsset: {fileID: 0} 114 | m_GameObject: {fileID: 0} 115 | m_Enabled: 1 116 | m_EditorHideFlags: 0 117 | m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3} 118 | m_Name: Timeline 119 | m_EditorClassIdentifier: 120 | m_Version: 0 121 | m_Tracks: 122 | - {fileID: -3724214664451487433} 123 | m_FixedDuration: 0 124 | m_EditorSettings: 125 | m_Framerate: 60 126 | m_ScenePreview: 1 127 | m_DurationMode: 0 128 | m_MarkerTrack: {fileID: 0} 129 | --- !u!114 &2949624343223842007 130 | MonoBehaviour: 131 | m_ObjectHideFlags: 0 132 | m_CorrespondingSourceObject: {fileID: 0} 133 | m_PrefabInstance: {fileID: 0} 134 | m_PrefabAsset: {fileID: 0} 135 | m_GameObject: {fileID: 0} 136 | m_Enabled: 1 137 | m_EditorHideFlags: 0 138 | m_Script: {fileID: 11500000, guid: 6fde0a8ac3e6b482c95fa602e65ab045, type: 3} 139 | m_Name: RecorderClip 140 | m_EditorClassIdentifier: 141 | enabled: 1 142 | take: 1 143 | captureEveryNthFrame: 1 144 | fileNameGenerator: 145 | m_Path: 146 | m_Root: 0 147 | m_Leaf: Recordings 148 | m_ForceAssetFolder: 0 149 | m_AbsolutePath: 150 | m_FileName: BG 151 | m_Version: 1 152 | encoderSettings: 153 | rid: 8713104590114390018 154 | captureAlpha: 0 155 | captureAudio: 0 156 | m_ImageInputSelector: 157 | m_Selected: gameViewInputSettings 158 | gameViewInputSettings: 159 | m_OutputResolution: 160 | m_CustomWidth: 1024 161 | m_CustomHeight: 1024 162 | imageHeight: 1080 163 | maxSupportedHeight: 2160 164 | m_AspectRatio: 165 | m_CustomAspectX: 1 166 | m_CustomAspectY: 1 167 | m_ImageAspect: 1 168 | flipFinalOutput: 0 169 | cameraInputSettings: 170 | m_OutputResolution: 171 | m_CustomWidth: 1024 172 | m_CustomHeight: 1024 173 | imageHeight: 0 174 | maxSupportedHeight: 4320 175 | m_AspectRatio: 176 | m_CustomAspectX: 1 177 | m_CustomAspectY: 1 178 | m_ImageAspect: 1 179 | source: 2 180 | cameraTag: 181 | flipFinalOutput: 0 182 | captureUI: 0 183 | camera360InputSettings: 184 | source: 2 185 | cameraTag: 186 | flipFinalOutput: 0 187 | renderStereo: 1 188 | stereoSeparation: 0.065 189 | mapSize: 1024 190 | m_OutputWidth: 1024 191 | m_OutputHeight: 2048 192 | renderTextureInputSettings: 193 | renderTexture: {fileID: 0} 194 | flipFinalOutput: 0 195 | renderTextureSamplerSettings: 196 | source: 1 197 | m_RenderWidth: 1280 198 | m_RenderHeight: 720 199 | m_OutputWidth: 1280 200 | m_OutputHeight: 720 201 | outputAspectRatio: 202 | m_CustomAspectX: 1 203 | m_CustomAspectY: 1 204 | m_ImageAspect: 1 205 | superSampling: 1 206 | superKernelPower: 16 207 | superKernelScale: 1 208 | cameraTag: 209 | colorSpace: 0 210 | flipFinalOutput: 0 211 | m_AudioInputSettings: 212 | preserveAudio: 0 213 | _accumulationSettings: 214 | rid: 8713104590114390017 215 | outputFormat: 0 216 | encodingQuality: 2 217 | containerFormatSelected: 0 218 | encoderSelected: 0 219 | encoderPresetSelected: 0 220 | encoderPresetSelectedName: 221 | encoderPresetSelectedOptions: 222 | encoderPresetSelectedSuffixes: 223 | encoderColorDefinitionSelected: 0 224 | encoderCustomOptions: 225 | references: 226 | version: 2 227 | RefIds: 228 | - rid: 8713104590114390017 229 | type: {class: AccumulationSettings, ns: , asm: Unity.Recorder.Editor} 230 | data: 231 | captureAccumulation: 0 232 | samples: 1 233 | shutterInterval: 1 234 | shutterProfileType: 0 235 | shutterProfileCurve: 236 | serializedVersion: 2 237 | m_Curve: 238 | - serializedVersion: 3 239 | time: 0 240 | value: 1 241 | inSlope: 0 242 | outSlope: 0 243 | tangentMode: 0 244 | weightedMode: 0 245 | inWeight: 0 246 | outWeight: 0 247 | - serializedVersion: 3 248 | time: 1 249 | value: 1 250 | inSlope: 0 251 | outSlope: 0 252 | tangentMode: 0 253 | weightedMode: 0 254 | inWeight: 0 255 | outWeight: 0 256 | m_PreInfinity: 2 257 | m_PostInfinity: 2 258 | m_RotationOrder: 4 259 | shutterFullyOpen: 0.25 260 | shutterBeginsClosing: 0.75 261 | - rid: 8713104590114390018 262 | type: {class: ProResEncoderSettings, ns: UnityEditor.Recorder.Encoder, asm: Unity.Recorder.Editor} 263 | data: 264 | outputFormat: 3 265 | -------------------------------------------------------------------------------- /Assets/Gradient/Timeline.playable: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &-3724214664451487433 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 1 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 11500000, guid: 0e6cf5671577b7344ba25c25b4346ce4, type: 3} 13 | m_Name: Recorder Track 14 | m_EditorClassIdentifier: 15 | m_Version: 3 16 | m_AnimClip: {fileID: 0} 17 | m_Locked: 0 18 | m_Muted: 1 19 | m_CustomPlayableFullTypename: 20 | m_Curves: {fileID: 0} 21 | m_Parent: {fileID: 11400000} 22 | m_Children: [] 23 | m_Clips: 24 | - m_Version: 1 25 | m_Start: 0 26 | m_ClipIn: 0 27 | m_Asset: {fileID: -2855011108890218754} 28 | m_Duration: 630 29 | m_TimeScale: 1 30 | m_ParentTrack: {fileID: -3724214664451487433} 31 | m_EaseInDuration: 0 32 | m_EaseOutDuration: 0 33 | m_BlendInDuration: 0 34 | m_BlendOutDuration: 0 35 | m_MixInCurve: 36 | serializedVersion: 2 37 | m_Curve: 38 | - serializedVersion: 3 39 | time: 0 40 | value: 0 41 | inSlope: 0 42 | outSlope: 0 43 | tangentMode: 0 44 | weightedMode: 0 45 | inWeight: 0 46 | outWeight: 0 47 | - serializedVersion: 3 48 | time: 1 49 | value: 1 50 | inSlope: 0 51 | outSlope: 0 52 | tangentMode: 0 53 | weightedMode: 0 54 | inWeight: 0 55 | outWeight: 0 56 | m_PreInfinity: 2 57 | m_PostInfinity: 2 58 | m_RotationOrder: 4 59 | m_MixOutCurve: 60 | serializedVersion: 2 61 | m_Curve: 62 | - serializedVersion: 3 63 | time: 0 64 | value: 1 65 | inSlope: 0 66 | outSlope: 0 67 | tangentMode: 0 68 | weightedMode: 0 69 | inWeight: 0 70 | outWeight: 0 71 | - serializedVersion: 3 72 | time: 1 73 | value: 0 74 | inSlope: 0 75 | outSlope: 0 76 | tangentMode: 0 77 | weightedMode: 0 78 | inWeight: 0 79 | outWeight: 0 80 | m_PreInfinity: 2 81 | m_PostInfinity: 2 82 | m_RotationOrder: 4 83 | m_BlendInCurveMode: 0 84 | m_BlendOutCurveMode: 0 85 | m_ExposedParameterNames: [] 86 | m_AnimationCurves: {fileID: 0} 87 | m_Recordable: 0 88 | m_PostExtrapolationMode: 0 89 | m_PreExtrapolationMode: 0 90 | m_PostExtrapolationTime: 0 91 | m_PreExtrapolationTime: 0 92 | m_DisplayName: RecorderClip 93 | m_Markers: 94 | m_Objects: [] 95 | --- !u!114 &-2988649777258827439 96 | MonoBehaviour: 97 | m_ObjectHideFlags: 1 98 | m_CorrespondingSourceObject: {fileID: 0} 99 | m_PrefabInstance: {fileID: 0} 100 | m_PrefabAsset: {fileID: 0} 101 | m_GameObject: {fileID: 0} 102 | m_Enabled: 1 103 | m_EditorHideFlags: 0 104 | m_Script: {fileID: 11500000, guid: a9ca4d0ec3eaf424181397a9f2f89180, type: 3} 105 | m_Name: BrownianMotion 106 | m_EditorClassIdentifier: 107 | template: 108 | positionAmount: {x: 0, y: 0, z: 0} 109 | rotationAmount: {x: 180, y: 180, z: 180} 110 | frequency: 0.05 111 | octaves: 1 112 | randomSeed: 152 113 | --- !u!114 &-2855011108890218754 114 | MonoBehaviour: 115 | m_ObjectHideFlags: 1 116 | m_CorrespondingSourceObject: {fileID: 0} 117 | m_PrefabInstance: {fileID: 0} 118 | m_PrefabAsset: {fileID: 0} 119 | m_GameObject: {fileID: 0} 120 | m_Enabled: 1 121 | m_EditorHideFlags: 0 122 | m_Script: {fileID: 11500000, guid: f1e95aa6d658d694785bfde37c857fff, type: 3} 123 | m_Name: RecorderClip 124 | m_EditorClassIdentifier: 125 | settings: {fileID: 2949624343223842007} 126 | --- !u!114 &11400000 127 | MonoBehaviour: 128 | m_ObjectHideFlags: 0 129 | m_CorrespondingSourceObject: {fileID: 0} 130 | m_PrefabInstance: {fileID: 0} 131 | m_PrefabAsset: {fileID: 0} 132 | m_GameObject: {fileID: 0} 133 | m_Enabled: 1 134 | m_EditorHideFlags: 0 135 | m_Script: {fileID: 11500000, guid: bfda56da833e2384a9677cd3c976a436, type: 3} 136 | m_Name: Timeline 137 | m_EditorClassIdentifier: 138 | m_Version: 0 139 | m_Tracks: 140 | - {fileID: -3724214664451487433} 141 | - {fileID: 3629973710740113284} 142 | m_FixedDuration: 0 143 | m_EditorSettings: 144 | m_Framerate: 60 145 | m_ScenePreview: 1 146 | m_DurationMode: 0 147 | m_MarkerTrack: {fileID: 0} 148 | --- !u!114 &2949624343223842007 149 | MonoBehaviour: 150 | m_ObjectHideFlags: 0 151 | m_CorrespondingSourceObject: {fileID: 0} 152 | m_PrefabInstance: {fileID: 0} 153 | m_PrefabAsset: {fileID: 0} 154 | m_GameObject: {fileID: 0} 155 | m_Enabled: 1 156 | m_EditorHideFlags: 0 157 | m_Script: {fileID: 11500000, guid: 6fde0a8ac3e6b482c95fa602e65ab045, type: 3} 158 | m_Name: RecorderClip 159 | m_EditorClassIdentifier: 160 | enabled: 1 161 | take: 1 162 | captureEveryNthFrame: 1 163 | fileNameGenerator: 164 | m_Path: 165 | m_Root: 0 166 | m_Leaf: Recordings 167 | m_ForceAssetFolder: 0 168 | m_AbsolutePath: 169 | m_FileName: Gradient 170 | m_Version: 1 171 | encoderSettings: 172 | rid: 8713104590114390018 173 | captureAlpha: 0 174 | captureAudio: 0 175 | m_ImageInputSelector: 176 | m_Selected: gameViewInputSettings 177 | gameViewInputSettings: 178 | m_OutputResolution: 179 | m_CustomWidth: 1024 180 | m_CustomHeight: 1024 181 | imageHeight: 1080 182 | maxSupportedHeight: 2160 183 | m_AspectRatio: 184 | m_CustomAspectX: 1 185 | m_CustomAspectY: 1 186 | m_ImageAspect: 1 187 | flipFinalOutput: 0 188 | cameraInputSettings: 189 | m_OutputResolution: 190 | m_CustomWidth: 1024 191 | m_CustomHeight: 1024 192 | imageHeight: 0 193 | maxSupportedHeight: 4320 194 | m_AspectRatio: 195 | m_CustomAspectX: 1 196 | m_CustomAspectY: 1 197 | m_ImageAspect: 1 198 | source: 2 199 | cameraTag: 200 | flipFinalOutput: 0 201 | captureUI: 0 202 | camera360InputSettings: 203 | source: 2 204 | cameraTag: 205 | flipFinalOutput: 0 206 | renderStereo: 1 207 | stereoSeparation: 0.065 208 | mapSize: 1024 209 | m_OutputWidth: 1024 210 | m_OutputHeight: 2048 211 | renderTextureInputSettings: 212 | renderTexture: {fileID: 0} 213 | flipFinalOutput: 0 214 | renderTextureSamplerSettings: 215 | source: 1 216 | m_RenderWidth: 1280 217 | m_RenderHeight: 720 218 | m_OutputWidth: 1280 219 | m_OutputHeight: 720 220 | outputAspectRatio: 221 | m_CustomAspectX: 1 222 | m_CustomAspectY: 1 223 | m_ImageAspect: 1 224 | superSampling: 1 225 | superKernelPower: 16 226 | superKernelScale: 1 227 | cameraTag: 228 | colorSpace: 0 229 | flipFinalOutput: 0 230 | m_AudioInputSettings: 231 | preserveAudio: 0 232 | _accumulationSettings: 233 | rid: 8713104590114390017 234 | outputFormat: 0 235 | encodingQuality: 2 236 | containerFormatSelected: 0 237 | encoderSelected: 0 238 | encoderPresetSelected: 0 239 | encoderPresetSelectedName: 240 | encoderPresetSelectedOptions: 241 | encoderPresetSelectedSuffixes: 242 | encoderColorDefinitionSelected: 0 243 | encoderCustomOptions: 244 | references: 245 | version: 2 246 | RefIds: 247 | - rid: 8713104590114390017 248 | type: {class: AccumulationSettings, ns: , asm: Unity.Recorder.Editor} 249 | data: 250 | captureAccumulation: 0 251 | samples: 1 252 | shutterInterval: 1 253 | shutterProfileType: 0 254 | shutterProfileCurve: 255 | serializedVersion: 2 256 | m_Curve: 257 | - serializedVersion: 3 258 | time: 0 259 | value: 1 260 | inSlope: 0 261 | outSlope: 0 262 | tangentMode: 0 263 | weightedMode: 0 264 | inWeight: 0 265 | outWeight: 0 266 | - serializedVersion: 3 267 | time: 1 268 | value: 1 269 | inSlope: 0 270 | outSlope: 0 271 | tangentMode: 0 272 | weightedMode: 0 273 | inWeight: 0 274 | outWeight: 0 275 | m_PreInfinity: 2 276 | m_PostInfinity: 2 277 | m_RotationOrder: 4 278 | shutterFullyOpen: 0.25 279 | shutterBeginsClosing: 0.75 280 | - rid: 8713104590114390018 281 | type: {class: ProResEncoderSettings, ns: UnityEditor.Recorder.Encoder, asm: Unity.Recorder.Editor} 282 | data: 283 | outputFormat: 3 284 | --- !u!114 &3629973710740113284 285 | MonoBehaviour: 286 | m_ObjectHideFlags: 1 287 | m_CorrespondingSourceObject: {fileID: 0} 288 | m_PrefabInstance: {fileID: 0} 289 | m_PrefabAsset: {fileID: 0} 290 | m_GameObject: {fileID: 0} 291 | m_Enabled: 1 292 | m_EditorHideFlags: 0 293 | m_Script: {fileID: 11500000, guid: cf8fca7bb2ddee8478cf61bf39019f96, type: 3} 294 | m_Name: Procedural Motion Track 295 | m_EditorClassIdentifier: 296 | m_Version: 3 297 | m_AnimClip: {fileID: 0} 298 | m_Locked: 0 299 | m_Muted: 0 300 | m_CustomPlayableFullTypename: 301 | m_Curves: {fileID: 0} 302 | m_Parent: {fileID: 11400000} 303 | m_Children: [] 304 | m_Clips: 305 | - m_Version: 1 306 | m_Start: 0 307 | m_ClipIn: 0 308 | m_Asset: {fileID: -2988649777258827439} 309 | m_Duration: 630 310 | m_TimeScale: 1 311 | m_ParentTrack: {fileID: 3629973710740113284} 312 | m_EaseInDuration: 0 313 | m_EaseOutDuration: 0 314 | m_BlendInDuration: -1 315 | m_BlendOutDuration: -1 316 | m_MixInCurve: 317 | serializedVersion: 2 318 | m_Curve: 319 | - serializedVersion: 3 320 | time: 0 321 | value: 0 322 | inSlope: 0 323 | outSlope: 0 324 | tangentMode: 0 325 | weightedMode: 0 326 | inWeight: 0 327 | outWeight: 0 328 | - serializedVersion: 3 329 | time: 1 330 | value: 1 331 | inSlope: 0 332 | outSlope: 0 333 | tangentMode: 0 334 | weightedMode: 0 335 | inWeight: 0 336 | outWeight: 0 337 | m_PreInfinity: 2 338 | m_PostInfinity: 2 339 | m_RotationOrder: 4 340 | m_MixOutCurve: 341 | serializedVersion: 2 342 | m_Curve: 343 | - serializedVersion: 3 344 | time: 0 345 | value: 1 346 | inSlope: 0 347 | outSlope: 0 348 | tangentMode: 0 349 | weightedMode: 0 350 | inWeight: 0 351 | outWeight: 0 352 | - serializedVersion: 3 353 | time: 1 354 | value: 0 355 | inSlope: 0 356 | outSlope: 0 357 | tangentMode: 0 358 | weightedMode: 0 359 | inWeight: 0 360 | outWeight: 0 361 | m_PreInfinity: 2 362 | m_PostInfinity: 2 363 | m_RotationOrder: 4 364 | m_BlendInCurveMode: 0 365 | m_BlendOutCurveMode: 0 366 | m_ExposedParameterNames: [] 367 | m_AnimationCurves: {fileID: 0} 368 | m_Recordable: 0 369 | m_PostExtrapolationMode: 0 370 | m_PreExtrapolationMode: 0 371 | m_PostExtrapolationTime: Infinity 372 | m_PreExtrapolationTime: 0 373 | m_DisplayName: BrownianMotion 374 | m_Markers: 375 | m_Objects: [] 376 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | - serializedVersion: 3 297 | m_Name: Enable Debug Button 1 298 | descriptiveName: 299 | descriptiveNegativeName: 300 | negativeButton: 301 | positiveButton: left ctrl 302 | altNegativeButton: 303 | altPositiveButton: joystick button 8 304 | gravity: 0 305 | dead: 0 306 | sensitivity: 0 307 | snap: 0 308 | invert: 0 309 | type: 0 310 | axis: 0 311 | joyNum: 0 312 | - serializedVersion: 3 313 | m_Name: Enable Debug Button 2 314 | descriptiveName: 315 | descriptiveNegativeName: 316 | negativeButton: 317 | positiveButton: backspace 318 | altNegativeButton: 319 | altPositiveButton: joystick button 9 320 | gravity: 0 321 | dead: 0 322 | sensitivity: 0 323 | snap: 0 324 | invert: 0 325 | type: 0 326 | axis: 0 327 | joyNum: 0 328 | - serializedVersion: 3 329 | m_Name: Debug Reset 330 | descriptiveName: 331 | descriptiveNegativeName: 332 | negativeButton: 333 | positiveButton: left alt 334 | altNegativeButton: 335 | altPositiveButton: joystick button 1 336 | gravity: 0 337 | dead: 0 338 | sensitivity: 0 339 | snap: 0 340 | invert: 0 341 | type: 0 342 | axis: 0 343 | joyNum: 0 344 | - serializedVersion: 3 345 | m_Name: Debug Next 346 | descriptiveName: 347 | descriptiveNegativeName: 348 | negativeButton: 349 | positiveButton: page down 350 | altNegativeButton: 351 | altPositiveButton: joystick button 5 352 | gravity: 0 353 | dead: 0 354 | sensitivity: 0 355 | snap: 0 356 | invert: 0 357 | type: 0 358 | axis: 0 359 | joyNum: 0 360 | - serializedVersion: 3 361 | m_Name: Debug Previous 362 | descriptiveName: 363 | descriptiveNegativeName: 364 | negativeButton: 365 | positiveButton: page up 366 | altNegativeButton: 367 | altPositiveButton: joystick button 4 368 | gravity: 0 369 | dead: 0 370 | sensitivity: 0 371 | snap: 0 372 | invert: 0 373 | type: 0 374 | axis: 0 375 | joyNum: 0 376 | - serializedVersion: 3 377 | m_Name: Debug Validate 378 | descriptiveName: 379 | descriptiveNegativeName: 380 | negativeButton: 381 | positiveButton: return 382 | altNegativeButton: 383 | altPositiveButton: joystick button 0 384 | gravity: 0 385 | dead: 0 386 | sensitivity: 0 387 | snap: 0 388 | invert: 0 389 | type: 0 390 | axis: 0 391 | joyNum: 0 392 | - serializedVersion: 3 393 | m_Name: Debug Persistent 394 | descriptiveName: 395 | descriptiveNegativeName: 396 | negativeButton: 397 | positiveButton: right shift 398 | altNegativeButton: 399 | altPositiveButton: joystick button 2 400 | gravity: 0 401 | dead: 0 402 | sensitivity: 0 403 | snap: 0 404 | invert: 0 405 | type: 0 406 | axis: 0 407 | joyNum: 0 408 | - serializedVersion: 3 409 | m_Name: Debug Multiplier 410 | descriptiveName: 411 | descriptiveNegativeName: 412 | negativeButton: 413 | positiveButton: left shift 414 | altNegativeButton: 415 | altPositiveButton: joystick button 3 416 | gravity: 0 417 | dead: 0 418 | sensitivity: 0 419 | snap: 0 420 | invert: 0 421 | type: 0 422 | axis: 0 423 | joyNum: 0 424 | - serializedVersion: 3 425 | m_Name: Debug Horizontal 426 | descriptiveName: 427 | descriptiveNegativeName: 428 | negativeButton: left 429 | positiveButton: right 430 | altNegativeButton: 431 | altPositiveButton: 432 | gravity: 1000 433 | dead: 0.001 434 | sensitivity: 1000 435 | snap: 0 436 | invert: 0 437 | type: 0 438 | axis: 0 439 | joyNum: 0 440 | - serializedVersion: 3 441 | m_Name: Debug Vertical 442 | descriptiveName: 443 | descriptiveNegativeName: 444 | negativeButton: down 445 | positiveButton: up 446 | altNegativeButton: 447 | altPositiveButton: 448 | gravity: 1000 449 | dead: 0.001 450 | sensitivity: 1000 451 | snap: 0 452 | invert: 0 453 | type: 0 454 | axis: 0 455 | joyNum: 0 456 | - serializedVersion: 3 457 | m_Name: Debug Vertical 458 | descriptiveName: 459 | descriptiveNegativeName: 460 | negativeButton: down 461 | positiveButton: up 462 | altNegativeButton: 463 | altPositiveButton: 464 | gravity: 1000 465 | dead: 0.001 466 | sensitivity: 1000 467 | snap: 0 468 | invert: 0 469 | type: 2 470 | axis: 6 471 | joyNum: 0 472 | - serializedVersion: 3 473 | m_Name: Debug Horizontal 474 | descriptiveName: 475 | descriptiveNegativeName: 476 | negativeButton: left 477 | positiveButton: right 478 | altNegativeButton: 479 | altPositiveButton: 480 | gravity: 1000 481 | dead: 0.001 482 | sensitivity: 1000 483 | snap: 0 484 | invert: 0 485 | type: 2 486 | axis: 5 487 | joyNum: 0 488 | m_UsePhysicalKeys: 0 489 | -------------------------------------------------------------------------------- /Assets/BG.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0.37311915, g: 0.3807396, b: 0.35872662, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 1 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 0 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 1 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 512 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 256 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 1 83 | m_PVRDenoiserTypeDirect: 1 84 | m_PVRDenoiserTypeIndirect: 1 85 | m_PVRDenoiserTypeAO: 1 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 1 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 0} 102 | --- !u!196 &4 103 | NavMeshSettings: 104 | serializedVersion: 2 105 | m_ObjectHideFlags: 0 106 | m_BuildSettings: 107 | serializedVersion: 2 108 | agentTypeID: 0 109 | agentRadius: 0.5 110 | agentHeight: 2 111 | agentSlope: 45 112 | agentClimb: 0.4 113 | ledgeDropHeight: 0 114 | maxJumpAcrossDistance: 0 115 | minRegionArea: 2 116 | manualCellSize: 0 117 | cellSize: 0.16666667 118 | manualTileSize: 0 119 | tileSize: 256 120 | accuratePlacement: 0 121 | maxJobWorkers: 0 122 | preserveTilesOutsideBounds: 0 123 | debug: 124 | m_Flags: 0 125 | m_NavMeshData: {fileID: 0} 126 | --- !u!1 &1816482637 127 | GameObject: 128 | m_ObjectHideFlags: 0 129 | m_CorrespondingSourceObject: {fileID: 0} 130 | m_PrefabInstance: {fileID: 0} 131 | m_PrefabAsset: {fileID: 0} 132 | serializedVersion: 6 133 | m_Component: 134 | - component: {fileID: 1816482639} 135 | - component: {fileID: 1816482638} 136 | m_Layer: 0 137 | m_Name: Timeline 138 | m_TagString: Untagged 139 | m_Icon: {fileID: 0} 140 | m_NavMeshLayer: 0 141 | m_StaticEditorFlags: 0 142 | m_IsActive: 1 143 | --- !u!320 &1816482638 144 | PlayableDirector: 145 | m_ObjectHideFlags: 0 146 | m_CorrespondingSourceObject: {fileID: 0} 147 | m_PrefabInstance: {fileID: 0} 148 | m_PrefabAsset: {fileID: 0} 149 | m_GameObject: {fileID: 1816482637} 150 | m_Enabled: 1 151 | serializedVersion: 3 152 | m_PlayableAsset: {fileID: 11400000, guid: c81e7997b21d5479083b33cac6f8fa02, type: 2} 153 | m_InitialState: 1 154 | m_WrapMode: 2 155 | m_DirectorUpdateMode: 1 156 | m_InitialTime: 0 157 | m_SceneBindings: [] 158 | m_ExposedReferences: 159 | m_References: [] 160 | --- !u!4 &1816482639 161 | Transform: 162 | m_ObjectHideFlags: 0 163 | m_CorrespondingSourceObject: {fileID: 0} 164 | m_PrefabInstance: {fileID: 0} 165 | m_PrefabAsset: {fileID: 0} 166 | m_GameObject: {fileID: 1816482637} 167 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 168 | m_LocalPosition: {x: 0, y: 0, z: 0} 169 | m_LocalScale: {x: 1, y: 1, z: 1} 170 | m_ConstrainProportionsScale: 0 171 | m_Children: [] 172 | m_Father: {fileID: 0} 173 | m_RootOrder: 0 174 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 175 | --- !u!1 &1860371216 176 | GameObject: 177 | m_ObjectHideFlags: 0 178 | m_CorrespondingSourceObject: {fileID: 0} 179 | m_PrefabInstance: {fileID: 0} 180 | m_PrefabAsset: {fileID: 0} 181 | serializedVersion: 6 182 | m_Component: 183 | - component: {fileID: 1860371220} 184 | - component: {fileID: 1860371219} 185 | - component: {fileID: 1860371217} 186 | m_Layer: 0 187 | m_Name: Camera 188 | m_TagString: MainCamera 189 | m_Icon: {fileID: 0} 190 | m_NavMeshLayer: 0 191 | m_StaticEditorFlags: 0 192 | m_IsActive: 1 193 | --- !u!114 &1860371217 194 | MonoBehaviour: 195 | m_ObjectHideFlags: 0 196 | m_CorrespondingSourceObject: {fileID: 0} 197 | m_PrefabInstance: {fileID: 0} 198 | m_PrefabAsset: {fileID: 0} 199 | m_GameObject: {fileID: 1860371216} 200 | m_Enabled: 1 201 | m_EditorHideFlags: 0 202 | m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} 203 | m_Name: 204 | m_EditorClassIdentifier: 205 | m_RenderShadows: 0 206 | m_RequiresDepthTextureOption: 2 207 | m_RequiresOpaqueTextureOption: 2 208 | m_CameraType: 0 209 | m_Cameras: [] 210 | m_RendererIndex: -1 211 | m_VolumeLayerMask: 212 | serializedVersion: 2 213 | m_Bits: 1 214 | m_VolumeTrigger: {fileID: 0} 215 | m_VolumeFrameworkUpdateModeOption: 2 216 | m_RenderPostProcessing: 1 217 | m_Antialiasing: 0 218 | m_AntialiasingQuality: 2 219 | m_StopNaN: 0 220 | m_Dithering: 0 221 | m_ClearDepth: 1 222 | m_AllowXRRendering: 1 223 | m_RequiresDepthTexture: 0 224 | m_RequiresColorTexture: 0 225 | m_Version: 2 226 | --- !u!20 &1860371219 227 | Camera: 228 | m_ObjectHideFlags: 0 229 | m_CorrespondingSourceObject: {fileID: 0} 230 | m_PrefabInstance: {fileID: 0} 231 | m_PrefabAsset: {fileID: 0} 232 | m_GameObject: {fileID: 1860371216} 233 | m_Enabled: 1 234 | serializedVersion: 2 235 | m_ClearFlags: 2 236 | m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0} 237 | m_projectionMatrixMode: 1 238 | m_GateFitMode: 2 239 | m_FOVAxisMode: 0 240 | m_SensorSize: {x: 36, y: 24} 241 | m_LensShift: {x: 0, y: 0} 242 | m_FocalLength: 50 243 | m_NormalizedViewPortRect: 244 | serializedVersion: 2 245 | x: 0 246 | y: 0 247 | width: 1 248 | height: 1 249 | near clip plane: 0.1 250 | far clip plane: 100 251 | field of view: 40 252 | orthographic: 0 253 | orthographic size: 5 254 | m_Depth: 0 255 | m_CullingMask: 256 | serializedVersion: 2 257 | m_Bits: 4294967295 258 | m_RenderingPath: -1 259 | m_TargetTexture: {fileID: 0} 260 | m_TargetDisplay: 0 261 | m_TargetEye: 3 262 | m_HDR: 1 263 | m_AllowMSAA: 1 264 | m_AllowDynamicResolution: 0 265 | m_ForceIntoRT: 0 266 | m_OcclusionCulling: 0 267 | m_StereoConvergence: 10 268 | m_StereoSeparation: 0.022 269 | --- !u!4 &1860371220 270 | Transform: 271 | m_ObjectHideFlags: 0 272 | m_CorrespondingSourceObject: {fileID: 0} 273 | m_PrefabInstance: {fileID: 0} 274 | m_PrefabAsset: {fileID: 0} 275 | m_GameObject: {fileID: 1860371216} 276 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 277 | m_LocalPosition: {x: 0, y: 0, z: -10} 278 | m_LocalScale: {x: 1, y: 1, z: 1} 279 | m_ConstrainProportionsScale: 0 280 | m_Children: [] 281 | m_Father: {fileID: 0} 282 | m_RootOrder: 1 283 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 284 | --- !u!1 &1967792935 285 | GameObject: 286 | m_ObjectHideFlags: 0 287 | m_CorrespondingSourceObject: {fileID: 0} 288 | m_PrefabInstance: {fileID: 0} 289 | m_PrefabAsset: {fileID: 0} 290 | serializedVersion: 6 291 | m_Component: 292 | - component: {fileID: 1967792938} 293 | - component: {fileID: 1967792937} 294 | - component: {fileID: 1967792936} 295 | m_Layer: 0 296 | m_Name: Jellies 297 | m_TagString: Untagged 298 | m_Icon: {fileID: 0} 299 | m_NavMeshLayer: 0 300 | m_StaticEditorFlags: 0 301 | m_IsActive: 1 302 | --- !u!73398921 &1967792936 303 | VFXRenderer: 304 | serializedVersion: 1 305 | m_ObjectHideFlags: 2 306 | m_CorrespondingSourceObject: {fileID: 0} 307 | m_PrefabInstance: {fileID: 0} 308 | m_PrefabAsset: {fileID: 0} 309 | m_GameObject: {fileID: 1967792935} 310 | m_Enabled: 1 311 | m_CastShadows: 0 312 | m_ReceiveShadows: 0 313 | m_DynamicOccludee: 1 314 | m_StaticShadowCaster: 0 315 | m_MotionVectors: 0 316 | m_LightProbeUsage: 0 317 | m_ReflectionProbeUsage: 0 318 | m_RayTracingMode: 0 319 | m_RayTraceProcedural: 0 320 | m_RenderingLayerMask: 1 321 | m_RendererPriority: 0 322 | m_StaticBatchInfo: 323 | firstSubMesh: 0 324 | subMeshCount: 0 325 | m_StaticBatchRoot: {fileID: 0} 326 | m_ProbeAnchor: {fileID: 0} 327 | m_LightProbeVolumeOverride: {fileID: 0} 328 | m_ScaleInLightmap: 1 329 | m_ReceiveGI: 1 330 | m_PreserveUVs: 0 331 | m_IgnoreNormalsForChartDetection: 0 332 | m_ImportantGI: 0 333 | m_StitchLightmapSeams: 1 334 | m_SelectedEditorRenderState: 3 335 | m_MinimumChartSize: 4 336 | m_AutoUVMaxDistance: 0.5 337 | m_AutoUVMaxAngle: 89 338 | m_LightmapParameters: {fileID: 0} 339 | m_SortingLayerID: 0 340 | m_SortingLayer: 0 341 | m_SortingOrder: 0 342 | --- !u!2083052967 &1967792937 343 | VisualEffect: 344 | m_ObjectHideFlags: 0 345 | m_CorrespondingSourceObject: {fileID: 0} 346 | m_PrefabInstance: {fileID: 0} 347 | m_PrefabAsset: {fileID: 0} 348 | m_GameObject: {fileID: 1967792935} 349 | m_Enabled: 1 350 | m_Asset: {fileID: 8926484042661614526, guid: de5eeffea865a4dc7876a8f9eeb29a97, type: 3} 351 | m_InitialEventName: OnPlay 352 | m_InitialEventNameOverriden: 0 353 | m_StartSeed: 1448676147 354 | m_ResetSeedOnPlay: 0 355 | m_ResourceVersion: 1 356 | m_PropertySheet: 357 | m_Float: 358 | m_Array: [] 359 | m_Vector2f: 360 | m_Array: [] 361 | m_Vector3f: 362 | m_Array: [] 363 | m_Vector4f: 364 | m_Array: [] 365 | m_Uint: 366 | m_Array: [] 367 | m_Int: 368 | m_Array: [] 369 | m_Matrix4x4f: 370 | m_Array: [] 371 | m_AnimationCurve: 372 | m_Array: [] 373 | m_Gradient: 374 | m_Array: [] 375 | m_NamedObject: 376 | m_Array: [] 377 | m_Bool: 378 | m_Array: [] 379 | --- !u!4 &1967792938 380 | Transform: 381 | m_ObjectHideFlags: 0 382 | m_CorrespondingSourceObject: {fileID: 0} 383 | m_PrefabInstance: {fileID: 0} 384 | m_PrefabAsset: {fileID: 0} 385 | m_GameObject: {fileID: 1967792935} 386 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 387 | m_LocalPosition: {x: 0, y: 0, z: 0} 388 | m_LocalScale: {x: 1, y: 1, z: 1} 389 | m_ConstrainProportionsScale: 0 390 | m_Children: [] 391 | m_Father: {fileID: 0} 392 | m_RootOrder: 2 393 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 394 | --- !u!1 &1988351897 395 | GameObject: 396 | m_ObjectHideFlags: 0 397 | m_CorrespondingSourceObject: {fileID: 0} 398 | m_PrefabInstance: {fileID: 0} 399 | m_PrefabAsset: {fileID: 0} 400 | serializedVersion: 6 401 | m_Component: 402 | - component: {fileID: 1988351900} 403 | - component: {fileID: 1988351899} 404 | - component: {fileID: 1988351898} 405 | m_Layer: 0 406 | m_Name: Bubbles 407 | m_TagString: Untagged 408 | m_Icon: {fileID: 0} 409 | m_NavMeshLayer: 0 410 | m_StaticEditorFlags: 0 411 | m_IsActive: 1 412 | --- !u!73398921 &1988351898 413 | VFXRenderer: 414 | serializedVersion: 1 415 | m_ObjectHideFlags: 2 416 | m_CorrespondingSourceObject: {fileID: 0} 417 | m_PrefabInstance: {fileID: 0} 418 | m_PrefabAsset: {fileID: 0} 419 | m_GameObject: {fileID: 1988351897} 420 | m_Enabled: 1 421 | m_CastShadows: 0 422 | m_ReceiveShadows: 0 423 | m_DynamicOccludee: 1 424 | m_StaticShadowCaster: 0 425 | m_MotionVectors: 0 426 | m_LightProbeUsage: 0 427 | m_ReflectionProbeUsage: 0 428 | m_RayTracingMode: 0 429 | m_RayTraceProcedural: 0 430 | m_RenderingLayerMask: 1 431 | m_RendererPriority: 0 432 | m_StaticBatchInfo: 433 | firstSubMesh: 0 434 | subMeshCount: 0 435 | m_StaticBatchRoot: {fileID: 0} 436 | m_ProbeAnchor: {fileID: 0} 437 | m_LightProbeVolumeOverride: {fileID: 0} 438 | m_ScaleInLightmap: 1 439 | m_ReceiveGI: 1 440 | m_PreserveUVs: 0 441 | m_IgnoreNormalsForChartDetection: 0 442 | m_ImportantGI: 0 443 | m_StitchLightmapSeams: 1 444 | m_SelectedEditorRenderState: 3 445 | m_MinimumChartSize: 4 446 | m_AutoUVMaxDistance: 0.5 447 | m_AutoUVMaxAngle: 89 448 | m_LightmapParameters: {fileID: 0} 449 | m_SortingLayerID: 0 450 | m_SortingLayer: 0 451 | m_SortingOrder: 0 452 | --- !u!2083052967 &1988351899 453 | VisualEffect: 454 | m_ObjectHideFlags: 0 455 | m_CorrespondingSourceObject: {fileID: 0} 456 | m_PrefabInstance: {fileID: 0} 457 | m_PrefabAsset: {fileID: 0} 458 | m_GameObject: {fileID: 1988351897} 459 | m_Enabled: 1 460 | m_Asset: {fileID: 8926484042661614526, guid: 3ea3472be8ed6430c81fa06c41c9771e, type: 3} 461 | m_InitialEventName: OnPlay 462 | m_InitialEventNameOverriden: 0 463 | m_StartSeed: 2102397400 464 | m_ResetSeedOnPlay: 0 465 | m_ResourceVersion: 1 466 | m_PropertySheet: 467 | m_Float: 468 | m_Array: [] 469 | m_Vector2f: 470 | m_Array: [] 471 | m_Vector3f: 472 | m_Array: [] 473 | m_Vector4f: 474 | m_Array: [] 475 | m_Uint: 476 | m_Array: [] 477 | m_Int: 478 | m_Array: [] 479 | m_Matrix4x4f: 480 | m_Array: [] 481 | m_AnimationCurve: 482 | m_Array: [] 483 | m_Gradient: 484 | m_Array: [] 485 | m_NamedObject: 486 | m_Array: [] 487 | m_Bool: 488 | m_Array: [] 489 | --- !u!4 &1988351900 490 | Transform: 491 | m_ObjectHideFlags: 0 492 | m_CorrespondingSourceObject: {fileID: 0} 493 | m_PrefabInstance: {fileID: 0} 494 | m_PrefabAsset: {fileID: 0} 495 | m_GameObject: {fileID: 1988351897} 496 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 497 | m_LocalPosition: {x: 0, y: 0, z: 0} 498 | m_LocalScale: {x: 1, y: 1, z: 1} 499 | m_ConstrainProportionsScale: 0 500 | m_Children: [] 501 | m_Father: {fileID: 0} 502 | m_RootOrder: 3 503 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 504 | -------------------------------------------------------------------------------- /Assets/Title.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0, g: 0, b: 0, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 3 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 1 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 0} 41 | m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 1 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 0 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 1 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 512 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 256 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 1 83 | m_PVRDenoiserTypeDirect: 1 84 | m_PVRDenoiserTypeIndirect: 1 85 | m_PVRDenoiserTypeAO: 1 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 1 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 0} 102 | --- !u!196 &4 103 | NavMeshSettings: 104 | serializedVersion: 2 105 | m_ObjectHideFlags: 0 106 | m_BuildSettings: 107 | serializedVersion: 2 108 | agentTypeID: 0 109 | agentRadius: 0.5 110 | agentHeight: 2 111 | agentSlope: 45 112 | agentClimb: 0.4 113 | ledgeDropHeight: 0 114 | maxJumpAcrossDistance: 0 115 | minRegionArea: 2 116 | manualCellSize: 0 117 | cellSize: 0.16666667 118 | manualTileSize: 0 119 | tileSize: 256 120 | accuratePlacement: 0 121 | maxJobWorkers: 0 122 | preserveTilesOutsideBounds: 0 123 | debug: 124 | m_Flags: 0 125 | m_NavMeshData: {fileID: 0} 126 | --- !u!1 &248431731 127 | GameObject: 128 | m_ObjectHideFlags: 0 129 | m_CorrespondingSourceObject: {fileID: 0} 130 | m_PrefabInstance: {fileID: 0} 131 | m_PrefabAsset: {fileID: 0} 132 | serializedVersion: 6 133 | m_Component: 134 | - component: {fileID: 248431734} 135 | - component: {fileID: 248431733} 136 | - component: {fileID: 248431732} 137 | - component: {fileID: 248431735} 138 | m_Layer: 0 139 | m_Name: Bubble 140 | m_TagString: Untagged 141 | m_Icon: {fileID: 0} 142 | m_NavMeshLayer: 0 143 | m_StaticEditorFlags: 0 144 | m_IsActive: 1 145 | --- !u!73398921 &248431732 146 | VFXRenderer: 147 | serializedVersion: 1 148 | m_ObjectHideFlags: 2 149 | m_CorrespondingSourceObject: {fileID: 0} 150 | m_PrefabInstance: {fileID: 0} 151 | m_PrefabAsset: {fileID: 0} 152 | m_GameObject: {fileID: 248431731} 153 | m_Enabled: 1 154 | m_CastShadows: 0 155 | m_ReceiveShadows: 0 156 | m_DynamicOccludee: 1 157 | m_StaticShadowCaster: 0 158 | m_MotionVectors: 0 159 | m_LightProbeUsage: 0 160 | m_ReflectionProbeUsage: 0 161 | m_RayTracingMode: 0 162 | m_RayTraceProcedural: 0 163 | m_RenderingLayerMask: 1 164 | m_RendererPriority: 0 165 | m_StaticBatchInfo: 166 | firstSubMesh: 0 167 | subMeshCount: 0 168 | m_StaticBatchRoot: {fileID: 0} 169 | m_ProbeAnchor: {fileID: 0} 170 | m_LightProbeVolumeOverride: {fileID: 0} 171 | m_ScaleInLightmap: 1 172 | m_ReceiveGI: 1 173 | m_PreserveUVs: 0 174 | m_IgnoreNormalsForChartDetection: 0 175 | m_ImportantGI: 0 176 | m_StitchLightmapSeams: 1 177 | m_SelectedEditorRenderState: 3 178 | m_MinimumChartSize: 4 179 | m_AutoUVMaxDistance: 0.5 180 | m_AutoUVMaxAngle: 89 181 | m_LightmapParameters: {fileID: 0} 182 | m_SortingLayerID: 0 183 | m_SortingLayer: 0 184 | m_SortingOrder: 0 185 | --- !u!2083052967 &248431733 186 | VisualEffect: 187 | m_ObjectHideFlags: 0 188 | m_CorrespondingSourceObject: {fileID: 0} 189 | m_PrefabInstance: {fileID: 0} 190 | m_PrefabAsset: {fileID: 0} 191 | m_GameObject: {fileID: 248431731} 192 | m_Enabled: 1 193 | m_Asset: {fileID: 8926484042661614526, guid: f5d71ecfdc1594e899ad5fa828ec15f6, type: 3} 194 | m_InitialEventName: OnPlay 195 | m_InitialEventNameOverriden: 0 196 | m_StartSeed: 1516614467 197 | m_ResetSeedOnPlay: 0 198 | m_ResourceVersion: 1 199 | m_PropertySheet: 200 | m_Float: 201 | m_Array: 202 | - m_Value: 0 203 | m_Name: SpawnRate 204 | m_Overridden: 1 205 | m_Vector2f: 206 | m_Array: [] 207 | m_Vector3f: 208 | m_Array: [] 209 | m_Vector4f: 210 | m_Array: 211 | - m_Value: {x: 0.36400002, y: 0.51240003, z: 0.546, w: 1} 212 | m_Name: Color2 213 | m_Overridden: 1 214 | m_Uint: 215 | m_Array: [] 216 | m_Int: 217 | m_Array: [] 218 | m_Matrix4x4f: 219 | m_Array: [] 220 | m_AnimationCurve: 221 | m_Array: [] 222 | m_Gradient: 223 | m_Array: [] 224 | m_NamedObject: 225 | m_Array: [] 226 | m_Bool: 227 | m_Array: [] 228 | --- !u!4 &248431734 229 | Transform: 230 | m_ObjectHideFlags: 0 231 | m_CorrespondingSourceObject: {fileID: 0} 232 | m_PrefabInstance: {fileID: 0} 233 | m_PrefabAsset: {fileID: 0} 234 | m_GameObject: {fileID: 248431731} 235 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 236 | m_LocalPosition: {x: 0, y: 0, z: 0} 237 | m_LocalScale: {x: 1, y: 1, z: 1} 238 | m_ConstrainProportionsScale: 0 239 | m_Children: [] 240 | m_Father: {fileID: 0} 241 | m_RootOrder: 3 242 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 243 | --- !u!95 &248431735 244 | Animator: 245 | serializedVersion: 4 246 | m_ObjectHideFlags: 0 247 | m_CorrespondingSourceObject: {fileID: 0} 248 | m_PrefabInstance: {fileID: 0} 249 | m_PrefabAsset: {fileID: 0} 250 | m_GameObject: {fileID: 248431731} 251 | m_Enabled: 1 252 | m_Avatar: {fileID: 0} 253 | m_Controller: {fileID: 0} 254 | m_CullingMode: 0 255 | m_UpdateMode: 0 256 | m_ApplyRootMotion: 0 257 | m_LinearVelocityBlending: 0 258 | m_StabilizeFeet: 0 259 | m_WarningMessage: 260 | m_HasTransformHierarchy: 1 261 | m_AllowConstantClipSamplingOptimization: 1 262 | m_KeepAnimatorControllerStateOnDisable: 0 263 | --- !u!1 &439412900 264 | GameObject: 265 | m_ObjectHideFlags: 0 266 | m_CorrespondingSourceObject: {fileID: 0} 267 | m_PrefabInstance: {fileID: 0} 268 | m_PrefabAsset: {fileID: 0} 269 | serializedVersion: 6 270 | m_Component: 271 | - component: {fileID: 439412901} 272 | m_Layer: 0 273 | m_Name: Preview 274 | m_TagString: Untagged 275 | m_Icon: {fileID: 0} 276 | m_NavMeshLayer: 0 277 | m_StaticEditorFlags: 0 278 | m_IsActive: 1 279 | --- !u!4 &439412901 280 | Transform: 281 | m_ObjectHideFlags: 0 282 | m_CorrespondingSourceObject: {fileID: 0} 283 | m_PrefabInstance: {fileID: 0} 284 | m_PrefabAsset: {fileID: 0} 285 | m_GameObject: {fileID: 439412900} 286 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 287 | m_LocalPosition: {x: 0, y: 0, z: 0} 288 | m_LocalScale: {x: 1, y: 1, z: 1} 289 | m_ConstrainProportionsScale: 0 290 | m_Children: 291 | - {fileID: 527343837} 292 | - {fileID: 1567868646} 293 | m_Father: {fileID: 0} 294 | m_RootOrder: 0 295 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 296 | --- !u!1 &527343833 297 | GameObject: 298 | m_ObjectHideFlags: 0 299 | m_CorrespondingSourceObject: {fileID: 0} 300 | m_PrefabInstance: {fileID: 0} 301 | m_PrefabAsset: {fileID: 0} 302 | serializedVersion: 6 303 | m_Component: 304 | - component: {fileID: 527343837} 305 | - component: {fileID: 527343836} 306 | - component: {fileID: 527343835} 307 | - component: {fileID: 527343834} 308 | m_Layer: 5 309 | m_Name: Canvas 310 | m_TagString: Untagged 311 | m_Icon: {fileID: 0} 312 | m_NavMeshLayer: 0 313 | m_StaticEditorFlags: 0 314 | m_IsActive: 1 315 | --- !u!114 &527343834 316 | MonoBehaviour: 317 | m_ObjectHideFlags: 0 318 | m_CorrespondingSourceObject: {fileID: 0} 319 | m_PrefabInstance: {fileID: 0} 320 | m_PrefabAsset: {fileID: 0} 321 | m_GameObject: {fileID: 527343833} 322 | m_Enabled: 1 323 | m_EditorHideFlags: 0 324 | m_Script: {fileID: 11500000, guid: dc42784cf147c0c48a680349fa168899, type: 3} 325 | m_Name: 326 | m_EditorClassIdentifier: 327 | m_IgnoreReversedGraphics: 1 328 | m_BlockingObjects: 0 329 | m_BlockingMask: 330 | serializedVersion: 2 331 | m_Bits: 4294967295 332 | --- !u!114 &527343835 333 | MonoBehaviour: 334 | m_ObjectHideFlags: 0 335 | m_CorrespondingSourceObject: {fileID: 0} 336 | m_PrefabInstance: {fileID: 0} 337 | m_PrefabAsset: {fileID: 0} 338 | m_GameObject: {fileID: 527343833} 339 | m_Enabled: 1 340 | m_EditorHideFlags: 0 341 | m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} 342 | m_Name: 343 | m_EditorClassIdentifier: 344 | m_UiScaleMode: 0 345 | m_ReferencePixelsPerUnit: 100 346 | m_ScaleFactor: 1 347 | m_ReferenceResolution: {x: 800, y: 600} 348 | m_ScreenMatchMode: 0 349 | m_MatchWidthOrHeight: 0 350 | m_PhysicalUnit: 3 351 | m_FallbackScreenDPI: 96 352 | m_DefaultSpriteDPI: 96 353 | m_DynamicPixelsPerUnit: 1 354 | m_PresetInfoIsWorld: 0 355 | --- !u!223 &527343836 356 | Canvas: 357 | m_ObjectHideFlags: 0 358 | m_CorrespondingSourceObject: {fileID: 0} 359 | m_PrefabInstance: {fileID: 0} 360 | m_PrefabAsset: {fileID: 0} 361 | m_GameObject: {fileID: 527343833} 362 | m_Enabled: 1 363 | serializedVersion: 3 364 | m_RenderMode: 0 365 | m_Camera: {fileID: 0} 366 | m_PlaneDistance: 100 367 | m_PixelPerfect: 0 368 | m_ReceivesEvents: 1 369 | m_OverrideSorting: 0 370 | m_OverridePixelPerfect: 0 371 | m_SortingBucketNormalizedSize: 0 372 | m_AdditionalShaderChannelsFlag: 0 373 | m_SortingLayerID: 0 374 | m_SortingOrder: 0 375 | m_TargetDisplay: 0 376 | --- !u!224 &527343837 377 | RectTransform: 378 | m_ObjectHideFlags: 0 379 | m_CorrespondingSourceObject: {fileID: 0} 380 | m_PrefabInstance: {fileID: 0} 381 | m_PrefabAsset: {fileID: 0} 382 | m_GameObject: {fileID: 527343833} 383 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 384 | m_LocalPosition: {x: 0, y: 0, z: 0} 385 | m_LocalScale: {x: 0, y: 0, z: 0} 386 | m_ConstrainProportionsScale: 0 387 | m_Children: 388 | - {fileID: 1082349658} 389 | m_Father: {fileID: 439412901} 390 | m_RootOrder: 0 391 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 392 | m_AnchorMin: {x: 0, y: 0} 393 | m_AnchorMax: {x: 0, y: 0} 394 | m_AnchoredPosition: {x: 0, y: 0} 395 | m_SizeDelta: {x: 0, y: 0} 396 | m_Pivot: {x: 0, y: 0} 397 | --- !u!1 &1082349657 398 | GameObject: 399 | m_ObjectHideFlags: 0 400 | m_CorrespondingSourceObject: {fileID: 0} 401 | m_PrefabInstance: {fileID: 0} 402 | m_PrefabAsset: {fileID: 0} 403 | serializedVersion: 6 404 | m_Component: 405 | - component: {fileID: 1082349658} 406 | - component: {fileID: 1082349660} 407 | - component: {fileID: 1082349659} 408 | m_Layer: 5 409 | m_Name: RawImage 410 | m_TagString: Untagged 411 | m_Icon: {fileID: 0} 412 | m_NavMeshLayer: 0 413 | m_StaticEditorFlags: 0 414 | m_IsActive: 1 415 | --- !u!224 &1082349658 416 | RectTransform: 417 | m_ObjectHideFlags: 0 418 | m_CorrespondingSourceObject: {fileID: 0} 419 | m_PrefabInstance: {fileID: 0} 420 | m_PrefabAsset: {fileID: 0} 421 | m_GameObject: {fileID: 1082349657} 422 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 423 | m_LocalPosition: {x: 0, y: 0, z: 0} 424 | m_LocalScale: {x: 1, y: 1, z: 1} 425 | m_ConstrainProportionsScale: 0 426 | m_Children: [] 427 | m_Father: {fileID: 527343837} 428 | m_RootOrder: 0 429 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 430 | m_AnchorMin: {x: 0, y: 0} 431 | m_AnchorMax: {x: 1, y: 1} 432 | m_AnchoredPosition: {x: 0, y: 0} 433 | m_SizeDelta: {x: 0, y: 0} 434 | m_Pivot: {x: 0.5, y: 0.5} 435 | --- !u!114 &1082349659 436 | MonoBehaviour: 437 | m_ObjectHideFlags: 0 438 | m_CorrespondingSourceObject: {fileID: 0} 439 | m_PrefabInstance: {fileID: 0} 440 | m_PrefabAsset: {fileID: 0} 441 | m_GameObject: {fileID: 1082349657} 442 | m_Enabled: 1 443 | m_EditorHideFlags: 0 444 | m_Script: {fileID: 11500000, guid: 1344c3c82d62a2a41a3576d8abb8e3ea, type: 3} 445 | m_Name: 446 | m_EditorClassIdentifier: 447 | m_Material: {fileID: 0} 448 | m_Color: {r: 1, g: 1, b: 1, a: 1} 449 | m_RaycastTarget: 1 450 | m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} 451 | m_Maskable: 1 452 | m_OnCullStateChanged: 453 | m_PersistentCalls: 454 | m_Calls: [] 455 | m_Texture: {fileID: 8400000, guid: e8b6622d1210b444db56dec65ae24d81, type: 2} 456 | m_UVRect: 457 | serializedVersion: 2 458 | x: 0 459 | y: 0 460 | width: 1 461 | height: 1 462 | --- !u!222 &1082349660 463 | CanvasRenderer: 464 | m_ObjectHideFlags: 0 465 | m_CorrespondingSourceObject: {fileID: 0} 466 | m_PrefabInstance: {fileID: 0} 467 | m_PrefabAsset: {fileID: 0} 468 | m_GameObject: {fileID: 1082349657} 469 | m_CullTransparentMesh: 1 470 | --- !u!1 &1567868642 471 | GameObject: 472 | m_ObjectHideFlags: 0 473 | m_CorrespondingSourceObject: {fileID: 0} 474 | m_PrefabInstance: {fileID: 0} 475 | m_PrefabAsset: {fileID: 0} 476 | serializedVersion: 6 477 | m_Component: 478 | - component: {fileID: 1567868646} 479 | - component: {fileID: 1567868645} 480 | - component: {fileID: 1567868643} 481 | m_Layer: 0 482 | m_Name: Camera 483 | m_TagString: Untagged 484 | m_Icon: {fileID: 0} 485 | m_NavMeshLayer: 0 486 | m_StaticEditorFlags: 0 487 | m_IsActive: 1 488 | --- !u!114 &1567868643 489 | MonoBehaviour: 490 | m_ObjectHideFlags: 0 491 | m_CorrespondingSourceObject: {fileID: 0} 492 | m_PrefabInstance: {fileID: 0} 493 | m_PrefabAsset: {fileID: 0} 494 | m_GameObject: {fileID: 1567868642} 495 | m_Enabled: 1 496 | m_EditorHideFlags: 0 497 | m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} 498 | m_Name: 499 | m_EditorClassIdentifier: 500 | m_RenderShadows: 0 501 | m_RequiresDepthTextureOption: 2 502 | m_RequiresOpaqueTextureOption: 2 503 | m_CameraType: 0 504 | m_Cameras: [] 505 | m_RendererIndex: -1 506 | m_VolumeLayerMask: 507 | serializedVersion: 2 508 | m_Bits: 1 509 | m_VolumeTrigger: {fileID: 0} 510 | m_VolumeFrameworkUpdateModeOption: 2 511 | m_RenderPostProcessing: 0 512 | m_Antialiasing: 0 513 | m_AntialiasingQuality: 2 514 | m_StopNaN: 0 515 | m_Dithering: 0 516 | m_ClearDepth: 1 517 | m_AllowXRRendering: 1 518 | m_RequiresDepthTexture: 0 519 | m_RequiresColorTexture: 0 520 | m_Version: 2 521 | --- !u!20 &1567868645 522 | Camera: 523 | m_ObjectHideFlags: 0 524 | m_CorrespondingSourceObject: {fileID: 0} 525 | m_PrefabInstance: {fileID: 0} 526 | m_PrefabAsset: {fileID: 0} 527 | m_GameObject: {fileID: 1567868642} 528 | m_Enabled: 1 529 | serializedVersion: 2 530 | m_ClearFlags: 2 531 | m_BackGroundColor: {r: 0.4245283, g: 0.4245283, b: 0.4245283, a: 0} 532 | m_projectionMatrixMode: 1 533 | m_GateFitMode: 2 534 | m_FOVAxisMode: 0 535 | m_SensorSize: {x: 36, y: 24} 536 | m_LensShift: {x: 0, y: 0} 537 | m_FocalLength: 50 538 | m_NormalizedViewPortRect: 539 | serializedVersion: 2 540 | x: 0 541 | y: 0 542 | width: 1 543 | height: 1 544 | near clip plane: 0.1 545 | far clip plane: 100 546 | field of view: 60 547 | orthographic: 1 548 | orthographic size: 0.5 549 | m_Depth: 0 550 | m_CullingMask: 551 | serializedVersion: 2 552 | m_Bits: 0 553 | m_RenderingPath: -1 554 | m_TargetTexture: {fileID: 0} 555 | m_TargetDisplay: 0 556 | m_TargetEye: 3 557 | m_HDR: 1 558 | m_AllowMSAA: 1 559 | m_AllowDynamicResolution: 0 560 | m_ForceIntoRT: 0 561 | m_OcclusionCulling: 0 562 | m_StereoConvergence: 10 563 | m_StereoSeparation: 0.022 564 | --- !u!4 &1567868646 565 | Transform: 566 | m_ObjectHideFlags: 0 567 | m_CorrespondingSourceObject: {fileID: 0} 568 | m_PrefabInstance: {fileID: 0} 569 | m_PrefabAsset: {fileID: 0} 570 | m_GameObject: {fileID: 1567868642} 571 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 572 | m_LocalPosition: {x: 0, y: 0, z: -10} 573 | m_LocalScale: {x: 1, y: 1, z: 1} 574 | m_ConstrainProportionsScale: 0 575 | m_Children: [] 576 | m_Father: {fileID: 439412901} 577 | m_RootOrder: 1 578 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 579 | --- !u!1 &1661742499 580 | GameObject: 581 | m_ObjectHideFlags: 0 582 | m_CorrespondingSourceObject: {fileID: 0} 583 | m_PrefabInstance: {fileID: 0} 584 | m_PrefabAsset: {fileID: 0} 585 | serializedVersion: 6 586 | m_Component: 587 | - component: {fileID: 1661742501} 588 | - component: {fileID: 1661742500} 589 | m_Layer: 0 590 | m_Name: Timeline 591 | m_TagString: Untagged 592 | m_Icon: {fileID: 0} 593 | m_NavMeshLayer: 0 594 | m_StaticEditorFlags: 0 595 | m_IsActive: 1 596 | --- !u!320 &1661742500 597 | PlayableDirector: 598 | m_ObjectHideFlags: 0 599 | m_CorrespondingSourceObject: {fileID: 0} 600 | m_PrefabInstance: {fileID: 0} 601 | m_PrefabAsset: {fileID: 0} 602 | m_GameObject: {fileID: 1661742499} 603 | m_Enabled: 1 604 | serializedVersion: 3 605 | m_PlayableAsset: {fileID: 11400000, guid: d4bc8fc361e1d42ab981010a8dffd0da, type: 2} 606 | m_InitialState: 1 607 | m_WrapMode: 2 608 | m_DirectorUpdateMode: 1 609 | m_InitialTime: 0 610 | m_SceneBindings: 611 | - key: {fileID: -7783638651817563222, guid: d4bc8fc361e1d42ab981010a8dffd0da, type: 2} 612 | value: {fileID: 248431735} 613 | m_ExposedReferences: 614 | m_References: [] 615 | --- !u!4 &1661742501 616 | Transform: 617 | m_ObjectHideFlags: 0 618 | m_CorrespondingSourceObject: {fileID: 0} 619 | m_PrefabInstance: {fileID: 0} 620 | m_PrefabAsset: {fileID: 0} 621 | m_GameObject: {fileID: 1661742499} 622 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 623 | m_LocalPosition: {x: 0, y: 0, z: 0} 624 | m_LocalScale: {x: 1, y: 1, z: 1} 625 | m_ConstrainProportionsScale: 0 626 | m_Children: [] 627 | m_Father: {fileID: 0} 628 | m_RootOrder: 1 629 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 630 | --- !u!1 &2054612769 631 | GameObject: 632 | m_ObjectHideFlags: 0 633 | m_CorrespondingSourceObject: {fileID: 0} 634 | m_PrefabInstance: {fileID: 0} 635 | m_PrefabAsset: {fileID: 0} 636 | serializedVersion: 6 637 | m_Component: 638 | - component: {fileID: 2054612773} 639 | - component: {fileID: 2054612772} 640 | - component: {fileID: 2054612770} 641 | m_Layer: 0 642 | m_Name: Camera 643 | m_TagString: MainCamera 644 | m_Icon: {fileID: 0} 645 | m_NavMeshLayer: 0 646 | m_StaticEditorFlags: 0 647 | m_IsActive: 1 648 | --- !u!114 &2054612770 649 | MonoBehaviour: 650 | m_ObjectHideFlags: 0 651 | m_CorrespondingSourceObject: {fileID: 0} 652 | m_PrefabInstance: {fileID: 0} 653 | m_PrefabAsset: {fileID: 0} 654 | m_GameObject: {fileID: 2054612769} 655 | m_Enabled: 1 656 | m_EditorHideFlags: 0 657 | m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} 658 | m_Name: 659 | m_EditorClassIdentifier: 660 | m_RenderShadows: 0 661 | m_RequiresDepthTextureOption: 2 662 | m_RequiresOpaqueTextureOption: 2 663 | m_CameraType: 0 664 | m_Cameras: [] 665 | m_RendererIndex: -1 666 | m_VolumeLayerMask: 667 | serializedVersion: 2 668 | m_Bits: 1 669 | m_VolumeTrigger: {fileID: 0} 670 | m_VolumeFrameworkUpdateModeOption: 2 671 | m_RenderPostProcessing: 0 672 | m_Antialiasing: 0 673 | m_AntialiasingQuality: 2 674 | m_StopNaN: 0 675 | m_Dithering: 0 676 | m_ClearDepth: 1 677 | m_AllowXRRendering: 1 678 | m_RequiresDepthTexture: 0 679 | m_RequiresColorTexture: 0 680 | m_Version: 2 681 | --- !u!20 &2054612772 682 | Camera: 683 | m_ObjectHideFlags: 0 684 | m_CorrespondingSourceObject: {fileID: 0} 685 | m_PrefabInstance: {fileID: 0} 686 | m_PrefabAsset: {fileID: 0} 687 | m_GameObject: {fileID: 2054612769} 688 | m_Enabled: 1 689 | serializedVersion: 2 690 | m_ClearFlags: 2 691 | m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0} 692 | m_projectionMatrixMode: 1 693 | m_GateFitMode: 2 694 | m_FOVAxisMode: 0 695 | m_SensorSize: {x: 36, y: 24} 696 | m_LensShift: {x: 0, y: 0} 697 | m_FocalLength: 50 698 | m_NormalizedViewPortRect: 699 | serializedVersion: 2 700 | x: 0 701 | y: 0 702 | width: 1 703 | height: 1 704 | near clip plane: 0.1 705 | far clip plane: 100 706 | field of view: 60 707 | orthographic: 1 708 | orthographic size: 3 709 | m_Depth: 0 710 | m_CullingMask: 711 | serializedVersion: 2 712 | m_Bits: 4294967295 713 | m_RenderingPath: -1 714 | m_TargetTexture: {fileID: 8400000, guid: e8b6622d1210b444db56dec65ae24d81, type: 2} 715 | m_TargetDisplay: 0 716 | m_TargetEye: 3 717 | m_HDR: 1 718 | m_AllowMSAA: 1 719 | m_AllowDynamicResolution: 0 720 | m_ForceIntoRT: 0 721 | m_OcclusionCulling: 0 722 | m_StereoConvergence: 10 723 | m_StereoSeparation: 0.022 724 | --- !u!4 &2054612773 725 | Transform: 726 | m_ObjectHideFlags: 0 727 | m_CorrespondingSourceObject: {fileID: 0} 728 | m_PrefabInstance: {fileID: 0} 729 | m_PrefabAsset: {fileID: 0} 730 | m_GameObject: {fileID: 2054612769} 731 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 732 | m_LocalPosition: {x: 0, y: 0, z: -10} 733 | m_LocalScale: {x: 1, y: 1, z: 1} 734 | m_ConstrainProportionsScale: 0 735 | m_Children: [] 736 | m_Father: {fileID: 0} 737 | m_RootOrder: 2 738 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 739 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 23 7 | productGUID: 195e43c30ab0240ceb51305471e91d75 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: DefaultCompany 16 | productName: UnityStationBumper2 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 0 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1920 46 | defaultScreenHeight: 1080 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | mipStripping: 0 53 | numberOfMipsStripped: 0 54 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 55 | iosShowActivityIndicatorOnLoading: -1 56 | androidShowActivityIndicatorOnLoading: -1 57 | iosUseCustomAppBackgroundBehavior: 0 58 | iosAllowHTTPDownload: 1 59 | allowedAutorotateToPortrait: 1 60 | allowedAutorotateToPortraitUpsideDown: 1 61 | allowedAutorotateToLandscapeRight: 1 62 | allowedAutorotateToLandscapeLeft: 1 63 | useOSAutorotation: 1 64 | use32BitDisplayBuffer: 1 65 | preserveFramebufferAlpha: 0 66 | disableDepthAndStencilBuffers: 0 67 | androidStartInFullscreen: 1 68 | androidRenderOutsideSafeArea: 1 69 | androidUseSwappy: 1 70 | androidBlitType: 0 71 | androidResizableWindow: 0 72 | androidDefaultWindowWidth: 1920 73 | androidDefaultWindowHeight: 1080 74 | androidMinimumWindowWidth: 400 75 | androidMinimumWindowHeight: 300 76 | androidFullscreenMode: 1 77 | defaultIsNativeResolution: 1 78 | macRetinaSupport: 1 79 | runInBackground: 0 80 | captureSingleScreen: 0 81 | muteOtherAudioSources: 0 82 | Prepare IOS For Recording: 0 83 | Force IOS Speakers When Recording: 0 84 | deferSystemGesturesMode: 0 85 | hideHomeButton: 0 86 | submitAnalytics: 1 87 | usePlayerLog: 1 88 | bakeCollisionMeshes: 0 89 | forceSingleInstance: 0 90 | useFlipModelSwapchain: 1 91 | resizableWindow: 0 92 | useMacAppStoreValidation: 0 93 | macAppStoreCategory: public.app-category.games 94 | gpuSkinning: 1 95 | xboxPIXTextureCapture: 0 96 | xboxEnableAvatar: 0 97 | xboxEnableKinect: 0 98 | xboxEnableKinectAutoTracking: 0 99 | xboxEnableFitness: 0 100 | visibleInBackground: 1 101 | allowFullscreenSwitch: 1 102 | fullscreenMode: 3 103 | xboxSpeechDB: 0 104 | xboxEnableHeadOrientation: 0 105 | xboxEnableGuest: 0 106 | xboxEnablePIXSampling: 0 107 | metalFramebufferOnly: 0 108 | xboxOneResolution: 0 109 | xboxOneSResolution: 0 110 | xboxOneXResolution: 3 111 | xboxOneMonoLoggingLevel: 0 112 | xboxOneLoggingLevel: 1 113 | xboxOneDisableEsram: 0 114 | xboxOneEnableTypeOptimization: 0 115 | xboxOnePresentImmediateThreshold: 0 116 | switchQueueCommandMemory: 0 117 | switchQueueControlMemory: 16384 118 | switchQueueComputeMemory: 262144 119 | switchNVNShaderPoolsGranularity: 33554432 120 | switchNVNDefaultPoolsGranularity: 16777216 121 | switchNVNOtherPoolsGranularity: 16777216 122 | switchNVNMaxPublicTextureIDCount: 0 123 | switchNVNMaxPublicSamplerIDCount: 0 124 | stadiaPresentMode: 0 125 | stadiaTargetFramerate: 0 126 | vulkanNumSwapchainBuffers: 3 127 | vulkanEnableSetSRGBWrite: 0 128 | vulkanEnablePreTransform: 1 129 | vulkanEnableLateAcquireNextImage: 0 130 | vulkanEnableCommandBufferRecycling: 1 131 | m_SupportedAspectRatios: 132 | 4:3: 1 133 | 5:4: 1 134 | 16:10: 1 135 | 16:9: 1 136 | Others: 1 137 | bundleVersion: 0.1 138 | preloadedAssets: [] 139 | metroInputSource: 0 140 | wsaTransparentSwapchain: 0 141 | m_HolographicPauseOnTrackingLoss: 1 142 | xboxOneDisableKinectGpuReservation: 1 143 | xboxOneEnable7thCore: 1 144 | vrSettings: 145 | enable360StereoCapture: 0 146 | isWsaHolographicRemotingEnabled: 0 147 | enableFrameTimingStats: 0 148 | useHDRDisplay: 0 149 | D3DHDRBitDepth: 0 150 | m_ColorGamuts: 00000000 151 | targetPixelDensity: 30 152 | resolutionScalingMode: 0 153 | androidSupportedAspectRatio: 1 154 | androidMaxAspectRatio: 2.1 155 | applicationIdentifier: 156 | Standalone: com.DefaultCompany.UnityStationBumper2 157 | buildNumber: 158 | Standalone: 0 159 | iPhone: 0 160 | tvOS: 0 161 | overrideDefaultApplicationIdentifier: 0 162 | AndroidBundleVersionCode: 1 163 | AndroidMinSdkVersion: 22 164 | AndroidTargetSdkVersion: 0 165 | AndroidPreferredInstallLocation: 1 166 | aotOptions: 167 | stripEngineCode: 1 168 | iPhoneStrippingLevel: 0 169 | iPhoneScriptCallOptimization: 0 170 | ForceInternetPermission: 0 171 | ForceSDCardPermission: 0 172 | CreateWallpaper: 0 173 | APKExpansionFiles: 0 174 | keepLoadedShadersAlive: 0 175 | StripUnusedMeshComponents: 1 176 | VertexChannelCompressionMask: 4054 177 | iPhoneSdkVersion: 988 178 | iOSTargetOSVersionString: 11.0 179 | tvOSSdkVersion: 0 180 | tvOSRequireExtendedGameController: 0 181 | tvOSTargetOSVersionString: 11.0 182 | uIPrerenderedIcon: 0 183 | uIRequiresPersistentWiFi: 0 184 | uIRequiresFullScreen: 1 185 | uIStatusBarHidden: 1 186 | uIExitOnSuspend: 0 187 | uIStatusBarStyle: 0 188 | appleTVSplashScreen: {fileID: 0} 189 | appleTVSplashScreen2x: {fileID: 0} 190 | tvOSSmallIconLayers: [] 191 | tvOSSmallIconLayers2x: [] 192 | tvOSLargeIconLayers: [] 193 | tvOSLargeIconLayers2x: [] 194 | tvOSTopShelfImageLayers: [] 195 | tvOSTopShelfImageLayers2x: [] 196 | tvOSTopShelfImageWideLayers: [] 197 | tvOSTopShelfImageWideLayers2x: [] 198 | iOSLaunchScreenType: 0 199 | iOSLaunchScreenPortrait: {fileID: 0} 200 | iOSLaunchScreenLandscape: {fileID: 0} 201 | iOSLaunchScreenBackgroundColor: 202 | serializedVersion: 2 203 | rgba: 0 204 | iOSLaunchScreenFillPct: 100 205 | iOSLaunchScreenSize: 100 206 | iOSLaunchScreenCustomXibPath: 207 | iOSLaunchScreeniPadType: 0 208 | iOSLaunchScreeniPadImage: {fileID: 0} 209 | iOSLaunchScreeniPadBackgroundColor: 210 | serializedVersion: 2 211 | rgba: 0 212 | iOSLaunchScreeniPadFillPct: 100 213 | iOSLaunchScreeniPadSize: 100 214 | iOSLaunchScreeniPadCustomXibPath: 215 | iOSLaunchScreenCustomStoryboardPath: 216 | iOSLaunchScreeniPadCustomStoryboardPath: 217 | iOSDeviceRequirements: [] 218 | iOSURLSchemes: [] 219 | macOSURLSchemes: [] 220 | iOSBackgroundModes: 0 221 | iOSMetalForceHardShadows: 0 222 | metalEditorSupport: 1 223 | metalAPIValidation: 1 224 | iOSRenderExtraFrameOnPause: 0 225 | iosCopyPluginsCodeInsteadOfSymlink: 0 226 | appleDeveloperTeamID: 227 | iOSManualSigningProvisioningProfileID: 228 | tvOSManualSigningProvisioningProfileID: 229 | iOSManualSigningProvisioningProfileType: 0 230 | tvOSManualSigningProvisioningProfileType: 0 231 | appleEnableAutomaticSigning: 0 232 | iOSRequireARKit: 0 233 | iOSAutomaticallyDetectAndAddCapabilities: 1 234 | appleEnableProMotion: 0 235 | shaderPrecisionModel: 0 236 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea 237 | templatePackageId: com.unity.template.3d@8.1.0 238 | templateDefaultScene: Assets/Scenes/SampleScene.unity 239 | useCustomMainManifest: 0 240 | useCustomLauncherManifest: 0 241 | useCustomMainGradleTemplate: 0 242 | useCustomLauncherGradleManifest: 0 243 | useCustomBaseGradleTemplate: 0 244 | useCustomGradlePropertiesTemplate: 0 245 | useCustomProguardFile: 0 246 | AndroidTargetArchitectures: 1 247 | AndroidTargetDevices: 0 248 | AndroidSplashScreenScale: 0 249 | androidSplashScreen: {fileID: 0} 250 | AndroidKeystoreName: 251 | AndroidKeyaliasName: 252 | AndroidBuildApkPerCpuArchitecture: 0 253 | AndroidTVCompatibility: 0 254 | AndroidIsGame: 1 255 | AndroidEnableTango: 0 256 | androidEnableBanner: 1 257 | androidUseLowAccuracyLocation: 0 258 | androidUseCustomKeystore: 0 259 | m_AndroidBanners: 260 | - width: 320 261 | height: 180 262 | banner: {fileID: 0} 263 | androidGamepadSupportLevel: 0 264 | chromeosInputEmulation: 1 265 | AndroidMinifyWithR8: 0 266 | AndroidMinifyRelease: 0 267 | AndroidMinifyDebug: 0 268 | AndroidValidateAppBundleSize: 1 269 | AndroidAppBundleSizeToValidate: 150 270 | m_BuildTargetIcons: [] 271 | m_BuildTargetPlatformIcons: [] 272 | m_BuildTargetBatching: 273 | - m_BuildTarget: Standalone 274 | m_StaticBatching: 1 275 | m_DynamicBatching: 0 276 | - m_BuildTarget: tvOS 277 | m_StaticBatching: 1 278 | m_DynamicBatching: 0 279 | - m_BuildTarget: Android 280 | m_StaticBatching: 1 281 | m_DynamicBatching: 0 282 | - m_BuildTarget: iPhone 283 | m_StaticBatching: 1 284 | m_DynamicBatching: 0 285 | - m_BuildTarget: WebGL 286 | m_StaticBatching: 0 287 | m_DynamicBatching: 0 288 | m_BuildTargetGraphicsJobs: 289 | - m_BuildTarget: MacStandaloneSupport 290 | m_GraphicsJobs: 0 291 | - m_BuildTarget: Switch 292 | m_GraphicsJobs: 1 293 | - m_BuildTarget: MetroSupport 294 | m_GraphicsJobs: 1 295 | - m_BuildTarget: AppleTVSupport 296 | m_GraphicsJobs: 0 297 | - m_BuildTarget: BJMSupport 298 | m_GraphicsJobs: 1 299 | - m_BuildTarget: LinuxStandaloneSupport 300 | m_GraphicsJobs: 1 301 | - m_BuildTarget: PS4Player 302 | m_GraphicsJobs: 1 303 | - m_BuildTarget: iOSSupport 304 | m_GraphicsJobs: 0 305 | - m_BuildTarget: WindowsStandaloneSupport 306 | m_GraphicsJobs: 1 307 | - m_BuildTarget: XboxOnePlayer 308 | m_GraphicsJobs: 1 309 | - m_BuildTarget: LuminSupport 310 | m_GraphicsJobs: 0 311 | - m_BuildTarget: AndroidPlayer 312 | m_GraphicsJobs: 0 313 | - m_BuildTarget: WebGLSupport 314 | m_GraphicsJobs: 0 315 | m_BuildTargetGraphicsJobMode: 316 | - m_BuildTarget: PS4Player 317 | m_GraphicsJobMode: 0 318 | - m_BuildTarget: XboxOnePlayer 319 | m_GraphicsJobMode: 0 320 | m_BuildTargetGraphicsAPIs: 321 | - m_BuildTarget: AndroidPlayer 322 | m_APIs: 150000000b000000 323 | m_Automatic: 1 324 | - m_BuildTarget: iOSSupport 325 | m_APIs: 10000000 326 | m_Automatic: 1 327 | - m_BuildTarget: AppleTVSupport 328 | m_APIs: 10000000 329 | m_Automatic: 1 330 | - m_BuildTarget: WebGLSupport 331 | m_APIs: 0b000000 332 | m_Automatic: 1 333 | m_BuildTargetVRSettings: 334 | - m_BuildTarget: Standalone 335 | m_Enabled: 0 336 | m_Devices: 337 | - Oculus 338 | - OpenVR 339 | openGLRequireES31: 0 340 | openGLRequireES31AEP: 0 341 | openGLRequireES32: 0 342 | m_TemplateCustomTags: {} 343 | mobileMTRendering: 344 | Android: 1 345 | iPhone: 1 346 | tvOS: 1 347 | m_BuildTargetGroupLightmapEncodingQuality: 348 | - m_BuildTarget: Android 349 | m_EncodingQuality: 1 350 | - m_BuildTarget: iPhone 351 | m_EncodingQuality: 1 352 | - m_BuildTarget: tvOS 353 | m_EncodingQuality: 1 354 | m_BuildTargetGroupLightmapSettings: [] 355 | m_BuildTargetNormalMapEncoding: 356 | - m_BuildTarget: Android 357 | m_Encoding: 1 358 | - m_BuildTarget: iPhone 359 | m_Encoding: 1 360 | - m_BuildTarget: tvOS 361 | m_Encoding: 1 362 | m_BuildTargetDefaultTextureCompressionFormat: 363 | - m_BuildTarget: Android 364 | m_Format: 3 365 | playModeTestRunnerEnabled: 0 366 | runPlayModeTestAsEditModeTest: 0 367 | actionOnDotNetUnhandledException: 1 368 | enableInternalProfiler: 0 369 | logObjCUncaughtExceptions: 1 370 | enableCrashReportAPI: 0 371 | cameraUsageDescription: 372 | locationUsageDescription: 373 | microphoneUsageDescription: 374 | bluetoothUsageDescription: 375 | switchNMETAOverride: 376 | switchNetLibKey: 377 | switchSocketMemoryPoolSize: 6144 378 | switchSocketAllocatorPoolSize: 128 379 | switchSocketConcurrencyLimit: 14 380 | switchScreenResolutionBehavior: 2 381 | switchUseCPUProfiler: 0 382 | switchUseGOLDLinker: 0 383 | switchLTOSetting: 0 384 | switchApplicationID: 0x01004b9000490000 385 | switchNSODependencies: 386 | switchTitleNames_0: 387 | switchTitleNames_1: 388 | switchTitleNames_2: 389 | switchTitleNames_3: 390 | switchTitleNames_4: 391 | switchTitleNames_5: 392 | switchTitleNames_6: 393 | switchTitleNames_7: 394 | switchTitleNames_8: 395 | switchTitleNames_9: 396 | switchTitleNames_10: 397 | switchTitleNames_11: 398 | switchTitleNames_12: 399 | switchTitleNames_13: 400 | switchTitleNames_14: 401 | switchTitleNames_15: 402 | switchPublisherNames_0: 403 | switchPublisherNames_1: 404 | switchPublisherNames_2: 405 | switchPublisherNames_3: 406 | switchPublisherNames_4: 407 | switchPublisherNames_5: 408 | switchPublisherNames_6: 409 | switchPublisherNames_7: 410 | switchPublisherNames_8: 411 | switchPublisherNames_9: 412 | switchPublisherNames_10: 413 | switchPublisherNames_11: 414 | switchPublisherNames_12: 415 | switchPublisherNames_13: 416 | switchPublisherNames_14: 417 | switchPublisherNames_15: 418 | switchIcons_0: {fileID: 0} 419 | switchIcons_1: {fileID: 0} 420 | switchIcons_2: {fileID: 0} 421 | switchIcons_3: {fileID: 0} 422 | switchIcons_4: {fileID: 0} 423 | switchIcons_5: {fileID: 0} 424 | switchIcons_6: {fileID: 0} 425 | switchIcons_7: {fileID: 0} 426 | switchIcons_8: {fileID: 0} 427 | switchIcons_9: {fileID: 0} 428 | switchIcons_10: {fileID: 0} 429 | switchIcons_11: {fileID: 0} 430 | switchIcons_12: {fileID: 0} 431 | switchIcons_13: {fileID: 0} 432 | switchIcons_14: {fileID: 0} 433 | switchIcons_15: {fileID: 0} 434 | switchSmallIcons_0: {fileID: 0} 435 | switchSmallIcons_1: {fileID: 0} 436 | switchSmallIcons_2: {fileID: 0} 437 | switchSmallIcons_3: {fileID: 0} 438 | switchSmallIcons_4: {fileID: 0} 439 | switchSmallIcons_5: {fileID: 0} 440 | switchSmallIcons_6: {fileID: 0} 441 | switchSmallIcons_7: {fileID: 0} 442 | switchSmallIcons_8: {fileID: 0} 443 | switchSmallIcons_9: {fileID: 0} 444 | switchSmallIcons_10: {fileID: 0} 445 | switchSmallIcons_11: {fileID: 0} 446 | switchSmallIcons_12: {fileID: 0} 447 | switchSmallIcons_13: {fileID: 0} 448 | switchSmallIcons_14: {fileID: 0} 449 | switchSmallIcons_15: {fileID: 0} 450 | switchManualHTML: 451 | switchAccessibleURLs: 452 | switchLegalInformation: 453 | switchMainThreadStackSize: 1048576 454 | switchPresenceGroupId: 455 | switchLogoHandling: 0 456 | switchReleaseVersion: 0 457 | switchDisplayVersion: 1.0.0 458 | switchStartupUserAccount: 0 459 | switchTouchScreenUsage: 0 460 | switchSupportedLanguagesMask: 0 461 | switchLogoType: 0 462 | switchApplicationErrorCodeCategory: 463 | switchUserAccountSaveDataSize: 0 464 | switchUserAccountSaveDataJournalSize: 0 465 | switchApplicationAttribute: 0 466 | switchCardSpecSize: -1 467 | switchCardSpecClock: -1 468 | switchRatingsMask: 0 469 | switchRatingsInt_0: 0 470 | switchRatingsInt_1: 0 471 | switchRatingsInt_2: 0 472 | switchRatingsInt_3: 0 473 | switchRatingsInt_4: 0 474 | switchRatingsInt_5: 0 475 | switchRatingsInt_6: 0 476 | switchRatingsInt_7: 0 477 | switchRatingsInt_8: 0 478 | switchRatingsInt_9: 0 479 | switchRatingsInt_10: 0 480 | switchRatingsInt_11: 0 481 | switchRatingsInt_12: 0 482 | switchLocalCommunicationIds_0: 483 | switchLocalCommunicationIds_1: 484 | switchLocalCommunicationIds_2: 485 | switchLocalCommunicationIds_3: 486 | switchLocalCommunicationIds_4: 487 | switchLocalCommunicationIds_5: 488 | switchLocalCommunicationIds_6: 489 | switchLocalCommunicationIds_7: 490 | switchParentalControl: 0 491 | switchAllowsScreenshot: 1 492 | switchAllowsVideoCapturing: 1 493 | switchAllowsRuntimeAddOnContentInstall: 0 494 | switchDataLossConfirmation: 0 495 | switchUserAccountLockEnabled: 0 496 | switchSystemResourceMemory: 16777216 497 | switchSupportedNpadStyles: 22 498 | switchNativeFsCacheSize: 32 499 | switchIsHoldTypeHorizontal: 0 500 | switchSupportedNpadCount: 8 501 | switchSocketConfigEnabled: 0 502 | switchTcpInitialSendBufferSize: 32 503 | switchTcpInitialReceiveBufferSize: 64 504 | switchTcpAutoSendBufferSizeMax: 256 505 | switchTcpAutoReceiveBufferSizeMax: 256 506 | switchUdpSendBufferSize: 9 507 | switchUdpReceiveBufferSize: 42 508 | switchSocketBufferEfficiency: 4 509 | switchSocketInitializeEnabled: 1 510 | switchNetworkInterfaceManagerInitializeEnabled: 1 511 | switchPlayerConnectionEnabled: 1 512 | switchUseNewStyleFilepaths: 0 513 | switchUseMicroSleepForYield: 1 514 | switchEnableRamDiskSupport: 0 515 | switchMicroSleepForYieldTime: 25 516 | switchRamDiskSpaceSize: 12 517 | ps4NPAgeRating: 12 518 | ps4NPTitleSecret: 519 | ps4NPTrophyPackPath: 520 | ps4ParentalLevel: 11 521 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 522 | ps4Category: 0 523 | ps4MasterVersion: 01.00 524 | ps4AppVersion: 01.00 525 | ps4AppType: 0 526 | ps4ParamSfxPath: 527 | ps4VideoOutPixelFormat: 0 528 | ps4VideoOutInitialWidth: 1920 529 | ps4VideoOutBaseModeInitialWidth: 1920 530 | ps4VideoOutReprojectionRate: 60 531 | ps4PronunciationXMLPath: 532 | ps4PronunciationSIGPath: 533 | ps4BackgroundImagePath: 534 | ps4StartupImagePath: 535 | ps4StartupImagesFolder: 536 | ps4IconImagesFolder: 537 | ps4SaveDataImagePath: 538 | ps4SdkOverride: 539 | ps4BGMPath: 540 | ps4ShareFilePath: 541 | ps4ShareOverlayImagePath: 542 | ps4PrivacyGuardImagePath: 543 | ps4ExtraSceSysFile: 544 | ps4NPtitleDatPath: 545 | ps4RemotePlayKeyAssignment: -1 546 | ps4RemotePlayKeyMappingDir: 547 | ps4PlayTogetherPlayerCount: 0 548 | ps4EnterButtonAssignment: 1 549 | ps4ApplicationParam1: 0 550 | ps4ApplicationParam2: 0 551 | ps4ApplicationParam3: 0 552 | ps4ApplicationParam4: 0 553 | ps4DownloadDataSize: 0 554 | ps4GarlicHeapSize: 2048 555 | ps4ProGarlicHeapSize: 2560 556 | playerPrefsMaxSize: 32768 557 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 558 | ps4pnSessions: 1 559 | ps4pnPresence: 1 560 | ps4pnFriends: 1 561 | ps4pnGameCustomData: 1 562 | playerPrefsSupport: 0 563 | enableApplicationExit: 0 564 | resetTempFolder: 1 565 | restrictedAudioUsageRights: 0 566 | ps4UseResolutionFallback: 0 567 | ps4ReprojectionSupport: 0 568 | ps4UseAudio3dBackend: 0 569 | ps4UseLowGarlicFragmentationMode: 1 570 | ps4SocialScreenEnabled: 0 571 | ps4ScriptOptimizationLevel: 0 572 | ps4Audio3dVirtualSpeakerCount: 14 573 | ps4attribCpuUsage: 0 574 | ps4PatchPkgPath: 575 | ps4PatchLatestPkgPath: 576 | ps4PatchChangeinfoPath: 577 | ps4PatchDayOne: 0 578 | ps4attribUserManagement: 0 579 | ps4attribMoveSupport: 0 580 | ps4attrib3DSupport: 0 581 | ps4attribShareSupport: 0 582 | ps4attribExclusiveVR: 0 583 | ps4disableAutoHideSplash: 0 584 | ps4videoRecordingFeaturesUsed: 0 585 | ps4contentSearchFeaturesUsed: 0 586 | ps4CompatibilityPS5: 0 587 | ps4GPU800MHz: 1 588 | ps4attribEyeToEyeDistanceSettingVR: 0 589 | ps4IncludedModules: [] 590 | ps4attribVROutputEnabled: 0 591 | monoEnv: 592 | splashScreenBackgroundSourceLandscape: {fileID: 0} 593 | splashScreenBackgroundSourcePortrait: {fileID: 0} 594 | blurSplashScreenBackground: 1 595 | spritePackerPolicy: 596 | webGLMemorySize: 16 597 | webGLExceptionSupport: 1 598 | webGLNameFilesAsHashes: 0 599 | webGLDataCaching: 1 600 | webGLDebugSymbols: 0 601 | webGLEmscriptenArgs: 602 | webGLModulesDirectory: 603 | webGLTemplate: APPLICATION:Default 604 | webGLAnalyzeBuildSize: 0 605 | webGLUseEmbeddedResources: 0 606 | webGLCompressionFormat: 1 607 | webGLWasmArithmeticExceptions: 0 608 | webGLLinkerTarget: 1 609 | webGLThreadsSupport: 0 610 | webGLDecompressionFallback: 0 611 | scriptingDefineSymbols: {} 612 | additionalCompilerArguments: {} 613 | platformArchitecture: {} 614 | scriptingBackend: {} 615 | il2cppCompilerConfiguration: {} 616 | managedStrippingLevel: {} 617 | incrementalIl2cppBuild: {} 618 | suppressCommonWarnings: 0 619 | allowUnsafeCode: 0 620 | useDeterministicCompilation: 1 621 | enableRoslynAnalyzers: 1 622 | additionalIl2CppArgs: 623 | scriptingRuntimeVersion: 1 624 | gcIncremental: 1 625 | assemblyVersionValidation: 1 626 | gcWBarrierValidation: 0 627 | apiCompatibilityLevelPerPlatform: {} 628 | m_RenderingPath: 1 629 | m_MobileRenderingPath: 1 630 | metroPackageName: Template_3D 631 | metroPackageVersion: 632 | metroCertificatePath: 633 | metroCertificatePassword: 634 | metroCertificateSubject: 635 | metroCertificateIssuer: 636 | metroCertificateNotAfter: 0000000000000000 637 | metroApplicationDescription: Template_3D 638 | wsaImages: {} 639 | metroTileShortName: 640 | metroTileShowName: 0 641 | metroMediumTileShowName: 0 642 | metroLargeTileShowName: 0 643 | metroWideTileShowName: 0 644 | metroSupportStreamingInstall: 0 645 | metroLastRequiredScene: 0 646 | metroDefaultTileSize: 1 647 | metroTileForegroundText: 2 648 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 649 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1} 650 | metroSplashScreenUseBackgroundColor: 0 651 | platformCapabilities: {} 652 | metroTargetDeviceFamilies: {} 653 | metroFTAName: 654 | metroFTAFileTypes: [] 655 | metroProtocolName: 656 | XboxOneProductId: 657 | XboxOneUpdateKey: 658 | XboxOneSandboxId: 659 | XboxOneContentId: 660 | XboxOneTitleId: 661 | XboxOneSCId: 662 | XboxOneGameOsOverridePath: 663 | XboxOnePackagingOverridePath: 664 | XboxOneAppManifestOverridePath: 665 | XboxOneVersion: 1.0.0.0 666 | XboxOnePackageEncryption: 0 667 | XboxOnePackageUpdateGranularity: 2 668 | XboxOneDescription: 669 | XboxOneLanguage: 670 | - enus 671 | XboxOneCapability: [] 672 | XboxOneGameRating: {} 673 | XboxOneIsContentPackage: 0 674 | XboxOneEnhancedXboxCompatibilityMode: 0 675 | XboxOneEnableGPUVariability: 1 676 | XboxOneSockets: {} 677 | XboxOneSplashScreen: {fileID: 0} 678 | XboxOneAllowedProductIds: [] 679 | XboxOnePersistentLocalStorageSize: 0 680 | XboxOneXTitleMemory: 8 681 | XboxOneOverrideIdentityName: 682 | XboxOneOverrideIdentityPublisher: 683 | vrEditorSettings: {} 684 | cloudServicesEnabled: 685 | UNet: 1 686 | luminIcon: 687 | m_Name: 688 | m_ModelFolderPath: 689 | m_PortalFolderPath: 690 | luminCert: 691 | m_CertPath: 692 | m_SignPackage: 1 693 | luminIsChannelApp: 0 694 | luminVersion: 695 | m_VersionCode: 1 696 | m_VersionName: 697 | apiCompatibilityLevel: 6 698 | activeInputHandler: 0 699 | cloudProjectId: 700 | framebufferDepthMemorylessMode: 0 701 | qualitySettingsNames: [] 702 | projectName: 703 | organizationId: 704 | cloudEnabled: 0 705 | legacyClampBlendShapeWeights: 0 706 | playerDataPath: 707 | forceSRGBBlit: 1 708 | virtualTexturingSupportEnabled: 0 709 | --------------------------------------------------------------------------------