Merge branch 'RHeavenStudio:master' into calligraphy

This commit is contained in:
フマジメ 2024-03-13 10:52:28 +09:00 committed by GitHub
commit 9e1aa5bc28
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
1258 changed files with 87978 additions and 6911 deletions

View file

@ -1,5 +1,6 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 79b8f7fb601bf3c40a5997d40bd0827c guid: f9dacdaf115722e49ac782c609f8d8ac
folderAsset: yes
DefaultImporter: DefaultImporter:
externalObjects: {} externalObjects: {}
userData: userData:

View file

@ -0,0 +1,19 @@
# CRTEffects
post processing stack v2 にて使えるブラウン管風のエフェクトです。
## 使い方
このファイルをAssetに追加し、Post Processing Stack Volumeで"Custom/CRT"を追加すると適応されます。
Unity2019.1.1f1にて動作を確認しています。
## パラメータ
- Distort - レンズ歪みの強さ
- RGB Blend - 0だとRGBが完全に分離、1だと通常のRGB
- Bottom Collapse - 画面下部の映像が圧縮された部分の大きさ
- Noise Amount - 画面下部のノイズの量
## 参考にさせていただいたサイト樣
[notargs.com "ブラウン管風シェーダーを作った"](http://wordpress.notargs.com/blog/blog/2016/01/09/unity3d%e3%83%96%e3%83%a9%e3%82%a6%e3%83%b3%e7%ae%a1%e9%a2%a8%e3%82%b7%e3%82%a7%e3%83%bc%e3%83%80%e3%83%bc%e3%82%92%e4%bd%9c%e3%81%a3%e3%81%9f/)
[おもちゃラボ "シェーダで作るノイズ5種盛り"](http://nn-hokuson.hatenablog.com/entry/2017/01/27/195659#fBm%E3%83%8E%E3%82%A4%E3%82%BA)
[LIGHT11 "Post Processingで自作のポストエフェクトを実装する"](http://light11.hatenadiary.com/entry/2019/03/31/225111#FXAA%E3%82%92%E4%BD%BF%E3%81%86%E5%A0%B4%E5%90%88%E3%81%AF%E6%9B%B8%E3%81%8D%E6%96%B9%E3%81%AB%E6%B3%A8%E6%84%8F%E3%81%99%E3%82%8B)

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: d7a1f7ab598644c748b17d0cfad3b4a8
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

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

View file

@ -0,0 +1,28 @@
using System;
using UnityEngine;
// UnityEngine.Rendering.PostProcessingをusing
using UnityEngine.Rendering.PostProcessing;
[Serializable] // 必ずSerializableアトリビュートを付ける
[PostProcess(typeof(CRTRenderer), PostProcessEvent.AfterStack, "Custom/CRT", true)]
public sealed class CRT : PostProcessEffectSettings
{
[Range(0f, 1f)]
public FloatParameter distort = new FloatParameter { value = 0.0f };
[Range(0f, 1f)]
public FloatParameter RGBBlend = new FloatParameter { value = 1f };
[Range(0f, 1f)]
public FloatParameter BottomCollapse = new FloatParameter { value = 0f };
[Range(0f, 1f)]
public FloatParameter NoiseAmount = new FloatParameter { value = 0f };
/*// 有効化する条件はこうやって指定する(ちゃんとやっておいたほうがパフォーマンスにつながりそう)
public override bool IsEnabledAndSupported(PostProcessRenderContext context)
{
//Debug.Log(base.IsEnabledAndSupported(context));
return base.IsEnabledAndSupported(context) || distort != 0;
//return true;
}*/
}

View file

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 901667e98588d4b23a60fa932445374b
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,34 @@
using UnityEngine;
using UnityEngine.Rendering.PostProcessing;
public sealed class CRTRenderer : PostProcessEffectRenderer<CRT>
{
// 初期化時の処理
public override void Init()
{
base.Init();
}
public override void Render(PostProcessRenderContext context)
{
// 内部的にプールされているMaterialPropertyBlockが保存されているPropertySheetを取得
var sheet = context.propertySheets.Get(Shader.Find("Hidden/Custom/CRT"));
// MaterialPropertyBlockに対してプロパティをセット
sheet.properties.SetFloat("_Distort", settings.distort);
sheet.properties.SetFloat("_RGBBlend", settings.RGBBlend);
sheet.properties.SetFloat("_BottomCollapse", settings.BottomCollapse);
sheet.properties.SetFloat("_NoiseAmount", settings.NoiseAmount);
sheet.properties.SetFloat("_ScreenWidth", Screen.width);
sheet.properties.SetFloat("_ScreenHeight", Screen.height);
// CommandBufferのBlitFullscreenTriangleを使って描画
context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, 0);
}
// 破棄時の処理
public override void Release()
{
base.Release();
}
}

View file

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: df42bae3b4fab496daaeb3d941474589
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View file

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

View file

@ -0,0 +1,100 @@
Shader "Hidden/Custom/CRT"
{
SubShader
{
Cull Off ZWrite Off ZTest Always
Pass
{
HLSLPROGRAM
const float PI = 3.14159265;
#pragma vertex VertDefault
#pragma fragment Frag
#include "Packages/com.unity.postprocessing/PostProcessing/Shaders/StdLib.hlsl"
float rand(float2 st) {
return frac(sin(dot(st.xy, float2(12.9898, 78.233))) * 43758.5453);
}
float2 random2(float2 st){
st = float2( dot(st,float2(127.1,311.7)),
dot(st,float2(269.5,183.3)) );
return -1.0 + 2.0*frac(sin(st)*43758.5453123);
}
float perlinNoise(float2 st)
{
float2 p = floor(st);
float2 f = frac(st);
float2 u = f*f*(3.0-2.0*f);
float v00 = random2(p+float2(0,0));
float v10 = random2(p+float2(1,0));
float v01 = random2(p+float2(0,1));
float v11 = random2(p+float2(1,1));
return lerp( lerp( dot( v00, f - float2(0,0) ), dot( v10, f - float2(1,0) ), u.x ),
lerp( dot( v01, f - float2(0,1) ), dot( v11, f - float2(1,1) ), u.x ),
u.y)+0.5f;
}
TEXTURE2D_SAMPLER2D(_MainTex, sampler_MainTex);
float _Distort;
float _ScreenWidth;
float _ScreenHeight;
float _RGBBlend;
float _BottomCollapse;
float _NoiseAmount;
float4 Frag(VaryingsDefault i) : SV_Target
{
//レンズ歪み
float2 distcoord = i.texcoord;
distcoord -= 0.5;
distcoord /= 1 - length(distcoord) * _Distort;
distcoord += 0.5;
//画面のズレ
float2 linecoord = distcoord;
//linecoord.x += (sin(_Time.r * 1.5 + linecoord.y * 0.7) > 0.9) * 0.05;
float linedistsin = sin(_Time.g + linecoord.y * 2 * PI);
float linedistwidth = 0.995;
linecoord.x += (linedistsin > linedistwidth) * (linedistsin - linedistwidth);
linecoord.x += (sin(_Time.a * 100 + linecoord.y * 10)) * 0.0005;
//下部の圧縮された部分
linecoord.x -= (linecoord.y < _BottomCollapse) * rand(float2(_Time.a,linecoord.y)) * 0.1;
linecoord.y = linecoord.y < _BottomCollapse ? linecoord.y * (1 / _BottomCollapse) : linecoord.y;
//rgbずれ
float4 color;
color.r = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, linecoord + float2(0.002,0)).r ;
color.g = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, linecoord + float2(0,0)).g;
color.b = SAMPLE_TEXTURE2D(_MainTex, sampler_MainTex, linecoord + float2(-0.002,0)).b;
//下部のノイズ
float noisevalue = perlinNoise(linecoord * float2(5,500) + rand(_Time) + _Time.ba);
float noiseCrit = (1 - _NoiseAmount) + max(linecoord.y - _BottomCollapse, linecoord.y < _BottomCollapse) * 2;
color.r = (noisevalue > noiseCrit) ? rand(linecoord + float2(0,1)) : color.r;
color.g = (noisevalue > noiseCrit) ? rand(linecoord + float2(1,2)) : color.g;
color.b = (noisevalue > noiseCrit) ? rand(linecoord + float2(3,4)) : color.b;
//rgb配列
float rgbmod = fmod((i.texcoord.x) * _ScreenWidth, 3);
color.r *= max(rgbmod < 1, _RGBBlend);
color.g *= max(1 < rgbmod && rgbmod < 2, _RGBBlend);
color.b *= max(2 < rgbmod, _RGBBlend);
rgbmod = fmod((i.texcoord.y) * _ScreenHeight, 4);
color.rgb *= rgbmod >= 1;
//レンズ歪みの外側
color.rgb *= 1 - (distcoord.x < 0 || distcoord.x > 1 || distcoord.y < 0 || distcoord.y > 1);
return color;
}
ENDHLSL
}
}
}

View file

@ -0,0 +1,9 @@
fileFormatVersion: 2
guid: 23ffd5ce9efd848f79aac1e537568c42
ShaderImporter:
externalObjects: {}
defaultTextures: []
nonModifiableTextures: []
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,5 +1,27 @@
%YAML 1.1 %YAML 1.1
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:unity3d.com,2011:
--- !u!114 &-6672723021951195849
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 2116fb4751a1a3046a3bae7177ecc731, type: 3}
m_Name: GlitchScreenJump
m_EditorClassIdentifier:
active: 1
enabled:
overrideState: 1
value: 1
ScreenJumpDirection:
overrideState: 0
value: 1
ScreenJumpIndensity:
overrideState: 1
value: 0
--- !u!114 &-4362154923023080619 --- !u!114 &-4362154923023080619
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 3 m_ObjectHideFlags: 3
@ -34,6 +56,31 @@ MonoBehaviour:
scale: scale:
overrideState: 0 overrideState: 0
value: 1 value: 1
--- !u!114 &-3842561579889000714
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 824ef16946450f94186364308f3d1eaf, type: 3}
m_Name: GaussianBlur
m_EditorClassIdentifier:
active: 1
enabled:
overrideState: 1
value: 1
BlurRadius:
overrideState: 1
value: 0
Iteration:
overrideState: 0
value: 1
RTDownScaling:
overrideState: 0
value: 1
--- !u!114 &-3146643709030431664 --- !u!114 &-3146643709030431664
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 3 m_ObjectHideFlags: 3
@ -1345,6 +1392,34 @@ MonoBehaviour:
- 0.5 - 0.5
- 0.5 - 0.5
- 0.5 - 0.5
--- !u!114 &-2800641430439692943
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 29f414c45c95c4c4fab1fba6f7db9a44, type: 3}
m_Name: GlitchScanLineJitter
m_EditorClassIdentifier:
active: 1
enabled:
overrideState: 1
value: 1
JitterDirection:
overrideState: 0
value: 0
intervalType:
overrideState: 0
value: 0
frequency:
overrideState: 0
value: 0
JitterIndensity:
overrideState: 1
value: 0
--- !u!114 &-2309378551457945779 --- !u!114 &-2309378551457945779
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 3 m_ObjectHideFlags: 3
@ -1415,6 +1490,31 @@ MonoBehaviour:
opacity: opacity:
overrideState: 0 overrideState: 0
value: 1 value: 1
--- !u!114 &-44530092333175149
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 292a5d75bad86324881ba9dbb87cb997, type: 3}
m_Name: GlitchAnalogNoise
m_EditorClassIdentifier:
active: 1
enabled:
overrideState: 1
value: 1
NoiseSpeed:
overrideState: 1
value: 0
NoiseFading:
overrideState: 1
value: 0
LuminanceJitterThreshold:
overrideState: 1
value: 0
--- !u!114 &11400000 --- !u!114 &11400000
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -1434,6 +1534,40 @@ MonoBehaviour:
- {fileID: -4362154923023080619} - {fileID: -4362154923023080619}
- {fileID: 2598374393394070623} - {fileID: 2598374393394070623}
- {fileID: -3146643709030431664} - {fileID: -3146643709030431664}
- {fileID: 190338221448500764}
- {fileID: -2800641430439692943}
- {fileID: -3842561579889000714}
- {fileID: -44530092333175149}
- {fileID: -6672723021951195849}
- {fileID: 6617679330616591269}
--- !u!114 &190338221448500764
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 901667e98588d4b23a60fa932445374b, type: 3}
m_Name: CRT
m_EditorClassIdentifier:
active: 1
enabled:
overrideState: 1
value: 1
distort:
overrideState: 1
value: 0
RGBBlend:
overrideState: 1
value: 1
BottomCollapse:
overrideState: 1
value: 0
NoiseAmount:
overrideState: 1
value: 0
--- !u!114 &2598374393394070623 --- !u!114 &2598374393394070623
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 3 m_ObjectHideFlags: 3
@ -1462,6 +1596,37 @@ MonoBehaviour:
lumContrib: lumContrib:
overrideState: 1 overrideState: 1
value: 0.8 value: 0.8
--- !u!114 &6617679330616591269
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: efbb636e5cc391347869277957d9c319, type: 3}
m_Name: EdgeDetectionSobelNeonV2
m_EditorClassIdentifier:
active: 1
enabled:
overrideState: 1
value: 1
EdgeWidth:
overrideState: 1
value: 0.05
EdgeNeonFade:
overrideState: 1
value: 0.1
BackgroundFade:
overrideState: 1
value: 1
Brigtness:
overrideState: 1
value: 0.2
BackgroundColor:
overrideState: 0
value: {r: 0, g: 0, b: 0, a: 1}
--- !u!114 &8762005197904913450 --- !u!114 &8762005197904913450
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 3 m_ObjectHideFlags: 3

View file

@ -80,18 +80,20 @@
-<indent=5%>JoyShockLibrary <alpha=#88>Jibb Smart, fork by RHeavenStudio<alpha=#FF></indent> -<indent=5%>JoyShockLibrary <alpha=#88>Jibb Smart, fork by RHeavenStudio<alpha=#FF></indent>
-<indent=5%>Jukebox <alpha=#88>RHeavenStudio<alpha=#FF></indent> -<indent=5%>Jukebox <alpha=#88>RHeavenStudio<alpha=#FF></indent>
-<indent=5%>SoftMaskForUGUI</indent> -<indent=5%>Dependencies Hunter</indent>
-<indent=5%>UniTask</indent>
-<indent=5%>Unity-UI-Rounded-Corners</indent>
-<indent=5%>Unity-AltSourceGenerator</indent>
-<indent=5%>Unity-SpriteAssist</indent>
-<indent=5%>unity-blend-shaders</indent>
-<indent=5%>Newtonsoft.Json</indent>
-<indent=5%>Graphy</indent>
-<indent=5%>DOTween</indent> -<indent=5%>DOTween</indent>
-<indent=5%>StandaloneFileBrowser</indent> -<indent=5%>Graphy</indent>
-<indent=5%>unity-gui-windows</indent>
-<indent=5%>NaughtyBezierCurves</indent> -<indent=5%>NaughtyBezierCurves</indent>
-<indent=5%>Newtonsoft.Json</indent>
-<indent=5%>SoftMaskForUGUI</indent>
-<indent=5%>StandaloneFileBrowser</indent>
-<indent=5%>TMPro Dynamic Data Cleaner</indent>
-<indent=5%>UniTask</indent>
-<indent=5%>Unity-AltSourceGenerator</indent>
-<indent=5%>unity-blend-shaders</indent>
-<indent=5%>unity-gui-windows</indent>
-<indent=5%>Unity-UI-Rounded-Corners</indent>
-<indent=5%>Unity-SpriteAssist</indent>
-<indent=5%>Adobe Photoshop 2022</indent> -<indent=5%>Adobe Photoshop 2022</indent>
-<indent=5%>GIMP</indent> -<indent=5%>GIMP</indent>

View file

@ -253,6 +253,10 @@ MonoBehaviour:
m_LigatureGlyphID: 9451 m_LigatureGlyphID: 9451
- m_ComponentGlyphIDs: 320000004b000000 - m_ComponentGlyphIDs: 320000004b000000
m_LigatureGlyphID: 9331 m_LigatureGlyphID: 9331
- m_ComponentGlyphIDs: 270000002200000039000000
m_LigatureGlyphID: 8279
- m_ComponentGlyphIDs: 2b0000002a00000034000000
m_LigatureGlyphID: 8280
m_GlyphPairAdjustmentRecords: m_GlyphPairAdjustmentRecords:
- m_FirstAdjustmentRecord: - m_FirstAdjustmentRecord:
m_GlyphIndex: 9 m_GlyphIndex: 9
@ -2744,6 +2748,276 @@ MonoBehaviour:
m_XAdvance: 0 m_XAdvance: 0
m_YAdvance: 0 m_YAdvance: 0
m_FeatureLookupFlags: -1093390048 m_FeatureLookupFlags: -1093390048
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -7.2000003
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 13
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -7.2000003
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 15
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 34
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 162
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 163
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 164
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 165
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 166
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 39
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -5.4
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 167
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 13
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 15
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 34
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 162
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 163
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 164
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 165
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 166
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 43
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 167
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
m_MarkToBaseAdjustmentRecords: [] m_MarkToBaseAdjustmentRecords: []
m_MarkToMarkAdjustmentRecords: [] m_MarkToMarkAdjustmentRecords: []
m_ShouldReimportFontFeatures: 0 m_ShouldReimportFontFeatures: 0

File diff suppressed because one or more lines are too long

View file

@ -370,6 +370,10 @@ MonoBehaviour:
m_LigatureGlyphID: 9817 m_LigatureGlyphID: 9817
- m_ComponentGlyphIDs: 19000000100000001a000000 - m_ComponentGlyphIDs: 19000000100000001a000000
m_LigatureGlyphID: 9805 m_LigatureGlyphID: 9805
- m_ComponentGlyphIDs: e8030000ef030000c4030000ae030000ef030000
m_LigatureGlyphID: 11956
- m_ComponentGlyphIDs: e8030000dc030000
m_LigatureGlyphID: 11955
m_GlyphPairAdjustmentRecords: m_GlyphPairAdjustmentRecords:
- m_FirstAdjustmentRecord: - m_FirstAdjustmentRecord:
m_GlyphIndex: 79 m_GlyphIndex: 79
@ -7571,6 +7575,261 @@ MonoBehaviour:
m_XAdvance: 0 m_XAdvance: 0
m_YAdvance: 0 m_YAdvance: 0
m_FeatureLookupFlags: 1334653216 m_FeatureLookupFlags: 1334653216
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -14.400001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 634
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -14.400001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 635
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -10.8
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 636
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -10.8
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 637
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 1.8000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 660
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -2.7
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 928
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -1.8000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 939
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -1.8000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 955
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -9
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 970
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 1.8000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 981
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 1.8000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 982
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -3.6000001
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 988
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: -7.2000003
m_YAdvance: 0
m_SecondAdjustmentRecord:
m_GlyphIndex: 999
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: -60
m_SecondAdjustmentRecord:
m_GlyphIndex: 944
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: -40
m_SecondAdjustmentRecord:
m_GlyphIndex: 966
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: -80
m_SecondAdjustmentRecord:
m_GlyphIndex: 7887
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
- m_FirstAdjustmentRecord:
m_GlyphIndex: 1000
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: -140
m_SecondAdjustmentRecord:
m_GlyphIndex: 7888
m_GlyphValueRecord:
m_XPlacement: 0
m_YPlacement: 0
m_XAdvance: 0
m_YAdvance: 0
m_FeatureLookupFlags: 1946038560
m_MarkToBaseAdjustmentRecords: [] m_MarkToBaseAdjustmentRecords: []
m_MarkToMarkAdjustmentRecords: [] m_MarkToMarkAdjustmentRecords: []
m_ShouldReimportFontFeatures: 0 m_ShouldReimportFontFeatures: 0

File diff suppressed because it is too large Load diff

View file

@ -318,7 +318,10 @@ MonoBehaviour:
scheduledInputs: [] scheduledInputs: []
wantsCrouch: 0 wantsCrouch: 0
bgMaterial: {fileID: 2100000, guid: d308d6053cbc091489ae82391d36d476, type: 2} bgMaterial: {fileID: 2100000, guid: d308d6053cbc091489ae82391d36d476, type: 2}
floorMaterial: {fileID: 2100000, guid: 5c5aa636b730eba44b9a80ea76a7bc4e, type: 2} floorMaterial:
- {fileID: 0}
- {fileID: 0}
- {fileID: 0}
cameraPivot: {fileID: 2677427256397037315} cameraPivot: {fileID: 2677427256397037315}
cameraPos: {fileID: 2677427256397037315} cameraPos: {fileID: 2677427256397037315}
cameraFOV: 25 cameraFOV: 25
@ -889,15 +892,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 9.430364 value: 59.691696
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0.074958555 value: -156.58969
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -8964012596248610549, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0.8477552 value: -154.42084
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -8679921383154817045, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_RootOrder propertyPath: m_RootOrder
@ -973,15 +976,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 0.04674983 value: 0.43519548
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: -87.68036 value: 128.22536
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -7623216900852632940, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -180.00005 value: 180
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -997,15 +1000,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -2.7883897 value: 26.951088
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 4.700611 value: 25.432802
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -6777710578386425081, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 55.369484 value: 32.699562
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
@ -1033,15 +1036,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -22.220493 value: 29.426844
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: -11.017366 value: -11.638364
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5887593339048327712, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 3.8632288 value: 34.794968
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
@ -1069,7 +1072,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5546437562569359665, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0.23917596 value: -15.946705
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5315867602706669865, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -5315867602706669865, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
@ -1102,7 +1105,7 @@ PrefabInstance:
- target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_Materials.Array.data[2] propertyPath: m_Materials.Array.data[2]
value: value:
objectReference: {fileID: 2100000, guid: 18236ab917d571548b689dbcdf081b2e, type: 2} objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2}
- target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_Materials.Array.data[3] propertyPath: m_Materials.Array.data[3]
value: value:
@ -1117,15 +1120,15 @@ PrefabInstance:
objectReference: {fileID: 2100000, guid: f58d76d5af0485d4c9cbdd39dbc2c269, type: 2} objectReference: {fileID: 2100000, guid: f58d76d5af0485d4c9cbdd39dbc2c269, type: 2}
- target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -59.364254 value: -71.71055
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: -64.92807 value: 115.95907
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -175.62436 value: -31.898987
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -3673476394703291053, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -3673476394703291053, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
@ -1149,15 +1152,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -15.039279 value: -75.18267
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 6.8003807 value: 8.446224
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2567523845891388357, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 103.032974 value: 109.15193
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
@ -1173,15 +1176,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 24.079586 value: 1.2096696
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: -6.325379 value: 15.73625
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2490844041709736929, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 8.152066 value: -31.016027
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -2240725241546395484, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -1201,27 +1204,27 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -3.9105697 value: -46.420708
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 23.379951 value: -67.4381
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -1593081406422785238, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 156.13875 value: 128.24156
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 2.563657 value: -0.000007316483
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 18.504347 value: -0.000010240673
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -1326856960798226984, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -6.713996 value: -28.50919
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
@ -1265,15 +1268,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 12.141446 value: -14.232529
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 6.918951 value: 57.336376
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -907434222094754871, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -13.036831 value: -35.905334
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
@ -1317,15 +1320,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 8.439123 value: -15.629818
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 4.2026987 value: -39.889194
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 487041899077519193, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 69.492035 value: 80.49676
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -1333,27 +1336,27 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -1.0320508 value: -0.15570568
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 47.240482 value: 17.07026
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 4108420948615836622, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0.9541969 value: 0.507061
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -0.19191778 value: 12.268569
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: -0.15843731 value: -4.864055
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 4250918724240952483, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 7.5429993 value: 28.615183
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5307233405938488542, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 5307233405938488542, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalPosition.y propertyPath: m_LocalPosition.y
@ -1369,15 +1372,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 7.1676645 value: -13.3639965
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 116.93028 value: 69.6086
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 8589286667285037113, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -0.7320976 value: 0.54148036
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -1393,15 +1396,15 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: -0.0000012262393 value: 0.0000002134434
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: -106.47599 value: 0.0000019209908
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 9149972516257850564, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -0.000000039879858 value: 0.0000012806606
objectReference: {fileID: 0} objectReference: {fileID: 0}
m_RemovedComponents: [] m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 333100bf553a5924d870acafacb4f53a, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
@ -1654,7 +1657,7 @@ PrefabInstance:
- target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_Materials.Array.data[2] propertyPath: m_Materials.Array.data[2]
value: value:
objectReference: {fileID: 2100000, guid: 18236ab917d571548b689dbcdf081b2e, type: 2} objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2}
- target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: 919132149155446097, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_Name propertyPath: m_Name
value: neo_airboy value: neo_airboy
@ -1962,7 +1965,7 @@ PrefabInstance:
- target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4422346733805593034, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_Materials.Array.data[2] propertyPath: m_Materials.Array.data[2]
value: value:
objectReference: {fileID: 2100000, guid: 18236ab917d571548b689dbcdf081b2e, type: 2} objectReference: {fileID: 2100000, guid: 21a244208ca5883499c02785947c32eb, type: 2}
- target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3} - target: {fileID: -4327179202414459862, guid: 333100bf553a5924d870acafacb4f53a, type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
value: 1 value: 1

View file

@ -28,8 +28,8 @@ Transform:
m_LocalScale: {x: 1, y: 1, z: 1} m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0 m_ConstrainProportionsScale: 0
m_Children: m_Children:
- {fileID: 9192953979162497955}
- {fileID: 8319323761679134309} - {fileID: 8319323761679134309}
- {fileID: 794646928585569113}
m_Father: {fileID: 3337760827311893485} m_Father: {fileID: 3337760827311893485}
m_RootOrder: 0 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@ -359,7 +359,7 @@ Transform:
- {fileID: 842141362349511046} - {fileID: 842141362349511046}
- {fileID: 835389391171181030} - {fileID: 835389391171181030}
m_Father: {fileID: 4631944531018638297} m_Father: {fileID: 4631944531018638297}
m_RootOrder: 1 m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &2589862644963098560 --- !u!1 &2589862644963098560
GameObject: GameObject:
@ -402,6 +402,100 @@ Transform:
m_Father: {fileID: 1557051792312115487} m_Father: {fileID: 1557051792312115487}
m_RootOrder: 2 m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &2594221142956942938
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 794646928585569113}
- component: {fileID: 8980473610542090131}
m_Layer: 0
m_Name: Directional Light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &794646928585569113
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2594221142956942938}
m_LocalRotation: {x: 0.8329767, y: -0.2017449, z: -0.1333785, w: 0.4976535}
m_LocalPosition: {x: 0.251, y: 3.843, z: -0.689}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 4631944531018638297}
m_RootOrder: 1
m_LocalEulerAnglesHint: {x: 50.828, y: -137.958, z: -132.076}
--- !u!108 &8980473610542090131
Light:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2594221142956942938}
m_Enabled: 1
serializedVersion: 10
m_Type: 1
m_Shape: 0
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Intensity: 1.1
m_Range: 10
m_SpotAngle: 30
m_InnerSpotAngle: 21.80208
m_CookieSize: 10
m_Shadows:
m_Type: 0
m_Resolution: -1
m_CustomResolution: -1
m_Strength: 0.25
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_CullingMatrixOverride:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_UseCullingMatrixOverride: 0
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingLayerMask: 1
m_Lightmapping: 2
m_LightShadowCasterMode: 0
m_AreaSize: {x: 1, y: 1}
m_BounceIntensity: 2
m_ColorTemperature: 6570
m_UseColorTemperature: 0
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
m_UseBoundingSphereOverride: 0
m_UseViewFrustumForShadowCasterCull: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!1 &3090516112524541089 --- !u!1 &3090516112524541089
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -1464,9 +1558,7 @@ MonoBehaviour:
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
SoundSequences: [] SoundSequences: []
EligibleHits: []
scheduledInputs: [] scheduledInputs: []
firstEnable: 0
camPos: {fileID: 90712470157425058} camPos: {fileID: 90712470157425058}
cameraFoV: 13 cameraFoV: 13
environmentRenderer: {fileID: 3593377758750892331} environmentRenderer: {fileID: 3593377758750892331}
@ -1482,102 +1574,16 @@ MonoBehaviour:
shooterMaterial: {fileID: 2100000, guid: 97aebf98db2a0bb4a974fbbbbf03fda8, type: 2} shooterMaterial: {fileID: 2100000, guid: 97aebf98db2a0bb4a974fbbbbf03fda8, type: 2}
objectMaterial: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} objectMaterial: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2}
gridPlaneMaterial: {fileID: 2100000, guid: 3df450e97190f504d9ac4f14283b2e0a, type: 2} gridPlaneMaterial: {fileID: 2100000, guid: 3df450e97190f504d9ac4f14283b2e0a, type: 2}
elevatorMaterial: {fileID: 0} elevatorMaterial: {fileID: 2100000, guid: f8523e095c9f2194d8ae47687a42305a, type: 2}
beltMaterial: {fileID: 2100000, guid: eafa15cb3393da547b21d564d4e71546, type: 2}
firstPatternLights:
- {fileID: 2100000, guid: da6d7e38b05966f40b51e566d6b339a8, type: 2}
- {fileID: 2100000, guid: 19e1f16b6cfe97b44abbebd8638abba7, type: 2}
- {fileID: 2100000, guid: 9dd5968860c25854c81d2bab1f5413d6, type: 2}
secondPatternLights:
- {fileID: 2100000, guid: 30ee7eac2a3457f469ba20a22c6dede1, type: 2}
- {fileID: 2100000, guid: bb162603bc9317b4c99d15b50be9b8ff, type: 2}
beltSpeed: 4.33 beltSpeed: 4.33
--- !u!1 &8373923870426321472
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 9192953979162497955}
- component: {fileID: 5275571480854674939}
m_Layer: 0
m_Name: Light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &9192953979162497955
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8373923870426321472}
m_LocalRotation: {x: 0.83511287, y: 0.16274606, z: -0.33740744, w: 0.4028107}
m_LocalPosition: {x: 0, y: 5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 4631944531018638297}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 128.5, y: 44, z: 0}
--- !u!108 &5275571480854674939
Light:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 8373923870426321472}
m_Enabled: 1
serializedVersion: 10
m_Type: 1
m_Shape: 0
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Intensity: 1
m_Range: 10
m_SpotAngle: 30
m_InnerSpotAngle: 21.80208
m_CookieSize: 10
m_Shadows:
m_Type: 0
m_Resolution: -1
m_CustomResolution: -1
m_Strength: 1
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_CullingMatrixOverride:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_UseCullingMatrixOverride: 0
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingLayerMask: 1
m_Lightmapping: 4
m_LightShadowCasterMode: 0
m_AreaSize: {x: 1, y: 1}
m_BounceIntensity: 1
m_ColorTemperature: 6570
m_UseColorTemperature: 0
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
m_UseBoundingSphereOverride: 0
m_UseViewFrustumForShadowCasterCull: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!1 &8451088964468361308 --- !u!1 &8451088964468361308
GameObject: GameObject:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -1826,6 +1832,10 @@ PrefabInstance:
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -5864696771290800692, guid: 21a743717f79155429b45d3a0fd77c68, type: 3}
propertyPath: m_LocalPosition.x
value: 138
objectReference: {fileID: 0}
- target: {fileID: -4863704078625465896, guid: 21a743717f79155429b45d3a0fd77c68, type: 3} - target: {fileID: -4863704078625465896, guid: 21a743717f79155429b45d3a0fd77c68, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2123,7 +2133,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -947387224812249842, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: -947387224812249842, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0.0000036424658 value: 0.0000033637534
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -944302891571569470, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: -944302891571569470, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
@ -2137,9 +2147,21 @@ PrefabInstance:
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalPosition.x
value: -0.000000017798401
objectReference: {fileID: 0}
- target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalPosition.y
value: 0.5258911
objectReference: {fileID: 0}
- target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalPosition.z
value: -0.117873535
objectReference: {fileID: 0}
- target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: 364309268697413728, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
value: 0.0000036424663 value: 0.0000033637539
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: 919132149155446097, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -2203,7 +2225,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalEulerAnglesHint.x propertyPath: m_LocalEulerAnglesHint.x
value: 7.016709e-15 value: 1.7452948
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalEulerAnglesHint.y propertyPath: m_LocalEulerAnglesHint.y
@ -2211,7 +2233,7 @@ PrefabInstance:
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} - target: {fileID: 7193526923147233643, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: -180 value: -0.000015258789
objectReference: {fileID: 0} objectReference: {fileID: 0}
m_RemovedComponents: [] m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3} m_SourcePrefab: {fileID: 100100000, guid: 4d6a1ca519b6789419c00178b5d2b983, type: 3}
@ -2323,6 +2345,18 @@ PrefabInstance:
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 1.019213e-22
objectReference: {fileID: 0}
- target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 1.390904e-12
objectReference: {fileID: 0}
- target: {fileID: -3631897138051517956, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -2.2417196e-20
objectReference: {fileID: 0}
- target: {fileID: -3203485738917446855, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} - target: {fileID: -3203485738917446855, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2330,7 +2364,7 @@ PrefabInstance:
- target: {fileID: -1003055794911221338, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} - target: {fileID: -1003055794911221338, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_Materials.Array.data[0] propertyPath: m_Materials.Array.data[0]
value: value:
objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} objectReference: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2}
- target: {fileID: -1003055794911221338, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} - target: {fileID: -1003055794911221338, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_Materials.Array.data[1] propertyPath: m_Materials.Array.data[1]
value: value:
@ -2351,6 +2385,34 @@ PrefabInstance:
propertyPath: m_IsActive propertyPath: m_IsActive
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2043205891256864238, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -89.98021
objectReference: {fileID: 0}
- target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.000015258788
objectReference: {fileID: 0}
- target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -179.99998
objectReference: {fileID: 0}
- target: {fileID: 3042270054197743208, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 180
objectReference: {fileID: 0}
- target: {fileID: 4406523010655556583, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -4.0711103e-13
objectReference: {fileID: 0}
- target: {fileID: 4406523010655556583, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -8.1422206e-13
objectReference: {fileID: 0}
- target: {fileID: 4406523010655556583, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 3.546283e-20
objectReference: {fileID: 0}
- target: {fileID: 7226848437003788013, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} - target: {fileID: 7226848437003788013, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2461,6 +2523,18 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -7969190219602097434, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.000000091862304
objectReference: {fileID: 0}
- target: {fileID: -7969190219602097434, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -2.1839556e-16
objectReference: {fileID: 0}
- target: {fileID: -7969190219602097434, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -5.132258e-14
objectReference: {fileID: 0}
- target: {fileID: -7204237955642933900, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} - target: {fileID: -7204237955642933900, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2473,6 +2547,14 @@ PrefabInstance:
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -1869871334352211690, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 89.98021
objectReference: {fileID: 0}
- target: {fileID: -1869871334352211690, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -0.0000008680054
objectReference: {fileID: 0}
- target: {fileID: -685714951338797429, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} - target: {fileID: -685714951338797429, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2489,6 +2571,10 @@ PrefabInstance:
propertyPath: m_IsActive propertyPath: m_IsActive
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2728175015023002165, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -89.98021
objectReference: {fileID: 0}
- target: {fileID: 3394299690235127225, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} - target: {fileID: 3394299690235127225, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2509,6 +2595,30 @@ PrefabInstance:
propertyPath: m_Materials.Array.data[3] propertyPath: m_Materials.Array.data[3]
value: value:
objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2}
- target: {fileID: 4798639761827837329, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.00000006127327
objectReference: {fileID: 0}
- target: {fileID: 4798639761827837329, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -4.0691905e-13
objectReference: {fileID: 0}
- target: {fileID: 4798639761827837329, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -5.9031007e-16
objectReference: {fileID: 0}
- target: {fileID: 5219957376676899290, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.000007851365
objectReference: {fileID: 0}
- target: {fileID: 5219957376676899290, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0.0000009891345
objectReference: {fileID: 0}
- target: {fileID: 5219957376676899290, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -45.771156
objectReference: {fileID: 0}
- target: {fileID: 5833730649146179553, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} - target: {fileID: 5833730649146179553, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -2517,6 +2627,18 @@ PrefabInstance:
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8667595228939439361, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0.0000042472684
objectReference: {fileID: 0}
- target: {fileID: 8667595228939439361, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0.0000013062643
objectReference: {fileID: 0}
- target: {fileID: 8667595228939439361, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -38.218197
objectReference: {fileID: 0}
m_RemovedComponents: [] m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} m_SourcePrefab: {fileID: 100100000, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
--- !u!4 &5903939180778773926 stripped --- !u!4 &5903939180778773926 stripped
@ -2829,10 +2951,14 @@ PrefabInstance:
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3}
propertyPath: m_Materials.Array.size
value: 2
objectReference: {fileID: 0}
- target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} - target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3}
propertyPath: m_Materials.Array.data[0] propertyPath: m_Materials.Array.data[0]
value: value:
objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} objectReference: {fileID: 2100000, guid: f8523e095c9f2194d8ae47687a42305a, type: 2}
- target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} - target: {fileID: 3783149753680359203, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3}
propertyPath: m_Materials.Array.data[1] propertyPath: m_Materials.Array.data[1]
value: value:
@ -2967,14 +3093,62 @@ PrefabInstance:
propertyPath: m_IsActive propertyPath: m_IsActive
value: 1 value: 1
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -6725864900740283272, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -89.98021
objectReference: {fileID: 0}
- target: {fileID: -4582022389678750781, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0.0000009932132
objectReference: {fileID: 0}
- target: {fileID: -4582022389678750781, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -1.8263537e-20
objectReference: {fileID: 0}
- target: {fileID: -4582022389678750781, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 7.2141267e-22
objectReference: {fileID: 0}
- target: {fileID: -3487895895819380211, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} - target: {fileID: -3487895895819380211, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: -2623360714175404741, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 89.98021
objectReference: {fileID: 0}
- target: {fileID: -2623360714175404741, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -0.0000008680054
objectReference: {fileID: 0}
- target: {fileID: -2099288412364085233, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.0000034150944
objectReference: {fileID: 0}
- target: {fileID: -2099288412364085233, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: -0.00000047354183
objectReference: {fileID: 0}
- target: {fileID: -2099288412364085233, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0.0000031419652
objectReference: {fileID: 0}
- target: {fileID: -244648530497092133, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} - target: {fileID: -244648530497092133, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 55471896798365850, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -47.373425
objectReference: {fileID: 0}
- target: {fileID: 55471896798365850, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 25.834826
objectReference: {fileID: 0}
- target: {fileID: 55471896798365850, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -33.344215
objectReference: {fileID: 0}
- target: {fileID: 308257133709792796, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} - target: {fileID: 308257133709792796, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
@ -3015,10 +3189,50 @@ PrefabInstance:
propertyPath: m_Materials.Array.data[3] propertyPath: m_Materials.Array.data[3]
value: value:
objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2} objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2}
- target: {fileID: 4518858451777631492, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_Materials.Array.data[0]
value:
objectReference: {fileID: 2100000, guid: 05418807da86e2146bc9e10ad24a33aa, type: 2}
- target: {fileID: 6096549794379710491, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.000006518555
objectReference: {fileID: 0}
- target: {fileID: 6096549794379710491, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0.0000008680054
objectReference: {fileID: 0}
- target: {fileID: 6096549794379710491, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -1.6191626e-15
objectReference: {fileID: 0}
- target: {fileID: 8813323920513627783, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} - target: {fileID: 8813323920513627783, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_Layer propertyPath: m_Layer
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 9156511915099979942, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -0.0000004268868
objectReference: {fileID: 0}
- target: {fileID: 9156511915099979942, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0.00000066414475
objectReference: {fileID: 0}
- target: {fileID: 9156511915099979942, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0.0000018876924
objectReference: {fileID: 0}
- target: {fileID: 9181040827110084542, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -19.721653
objectReference: {fileID: 0}
- target: {fileID: 9181040827110084542, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 49.642414
objectReference: {fileID: 0}
- target: {fileID: 9181040827110084542, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -73.99892
objectReference: {fileID: 0}
m_RemovedComponents: [] m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} m_SourcePrefab: {fileID: 100100000, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
--- !u!4 &8251119247562495620 stripped --- !u!4 &8251119247562495620 stripped

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 2fa53bdd67c2486419278d6d2d1c3b47
PrefabImporter:
externalObjects: {}
userData:
assetBundleName: ntrfreezeframe/common
assetBundleVariant:

View file

@ -39,13 +39,13 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 2800000, guid: b31d40c42dac95945bce1f9f0061a249, type: 3} m_Texture: {fileID: 2800000, guid: b31d4f673c4dc0b498c0325fbece6d29, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 3}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: -2.2}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: b31d40c42dac95945bce1f9f0061a249, type: 3} m_Texture: {fileID: 2800000, guid: b31d4f673c4dc0b498c0325fbece6d29, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 3}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: -2.2}
- _MetallicGlossMap: - _MetallicGlossMap:
m_Texture: {fileID: 2800000, guid: 9468b42a211b93845a16db88d3f8d471, type: 3} m_Texture: {fileID: 2800000, guid: 9468b42a211b93845a16db88d3f8d471, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 751 B

View file

@ -1,87 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: airboy_board_emm
m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: []
m_InvalidKeywords:
- _EMISSION
- _METALLICGLOSSMAP
m_LightmapFlags: 2
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: b31d40c42dac95945bce1f9f0061a249, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 2800000, guid: 9468b42a211b93845a16db88d3f8d471, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0.039546248, g: 0.039546248, b: 0.039546248, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

Binary file not shown.

Before

Width:  |  Height:  |  Size: 751 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View file

@ -0,0 +1,123 @@
fileFormatVersion: 2
guid: b31d4f673c4dc0b498c0325fbece6d29
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 2
wrapV: 2
wrapW: 2
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -42,12 +42,12 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 2800000, guid: 86cca9cf3ad2b1043a9348e3629f8ac2, type: 3} m_Texture: {fileID: 2800000, guid: 9e8ea6638dfeae64283dd3e0d77aed0e, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 86cca9cf3ad2b1043a9348e3629f8ac2, type: 3} m_Texture: {fileID: 2800000, guid: 9e8ea6638dfeae64283dd3e0d77aed0e, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1,123 +0,0 @@
fileFormatVersion: 2
guid: 81141743666b4504ca859ae6e0564f95
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 0
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 1
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -0,0 +1,123 @@
fileFormatVersion: 2
guid: 9e8ea6638dfeae64283dd3e0d77aed0e
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 2
wrapV: 2
wrapW: 2
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -38,12 +38,12 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 2800000, guid: 7697afb7ad71c9b44b60e6f2ecffeca4, type: 3} m_Texture: {fileID: 2800000, guid: 4b2a5876117e25442a2674db9d59ac22, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 7697afb7ad71c9b44b60e6f2ecffeca4, type: 3} m_Texture: {fileID: 2800000, guid: 4b2a5876117e25442a2674db9d59ac22, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}

View file

@ -1,80 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: airboy_dead_emm
m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 7697afb7ad71c9b44b60e6f2ecffeca4, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
m_BuildTextureStacks: []

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

View file

@ -1,123 +0,0 @@
fileFormatVersion: 2
guid: 9befd19b07081cb4dbd4204ab029d35e
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 686955983c8271b40bfbe5a47db451d7 guid: 4b2a5876117e25442a2674db9d59ac22
TextureImporter: TextureImporter:
internalIDToNameTable: [] internalIDToNameTable: []
externalObjects: {} externalObjects: {}
@ -37,7 +37,7 @@ TextureImporter:
aniso: 1 aniso: 1
mipBias: 0 mipBias: 0
wrapU: 3 wrapU: 3
wrapV: 3 wrapV: 1
wrapW: 3 wrapW: 3
nPOTScale: 0 nPOTScale: 0
lightmap: 0 lightmap: 0

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,123 @@
fileFormatVersion: 2
guid: 27cfa63e19b6e7c4b953335c6c7a1391
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 3
wrapV: 1
wrapW: 1
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -8,7 +8,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: airboy_shadow m_Name: airboy_shadow
m_Shader: {fileID: 10750, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3}
m_ValidKeywords: [] m_ValidKeywords: []
m_InvalidKeywords: [] m_InvalidKeywords: []
m_LightmapFlags: 4 m_LightmapFlags: 4
@ -41,7 +41,7 @@ Material:
m_Scale: {x: 128, y: 64} m_Scale: {x: 128, y: 64}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 686955983c8271b40bfbe5a47db451d7, type: 3} m_Texture: {fileID: 2800000, guid: ababa4335c96cd447ab78f65faf90e7d, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
@ -75,6 +75,6 @@ Material:
- _UVSec: 0 - _UVSec: 0
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 0.44705883}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b31d40c42dac95945bce1f9f0061a249 guid: ababa4335c96cd447ab78f65faf90e7d
TextureImporter: TextureImporter:
internalIDToNameTable: [] internalIDToNameTable: []
externalObjects: {} externalObjects: {}

View file

@ -38,12 +38,12 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 2800000, guid: 9befd19b07081cb4dbd4204ab029d35e, type: 3} m_Texture: {fileID: 2800000, guid: 27cfa63e19b6e7c4b953335c6c7a1391, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 9befd19b07081cb4dbd4204ab029d35e, type: 3} m_Texture: {fileID: 2800000, guid: 27cfa63e19b6e7c4b953335c6c7a1391, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}

View file

@ -27,7 +27,7 @@ Material:
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap: - _DetailAlbedoMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 0, y: 0}
m_Offset: {x: 100, y: 0} m_Offset: {x: 100, y: 0}
- _DetailMask: - _DetailMask:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
@ -38,12 +38,12 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 2800000, guid: 31b0c21dec88b074d84a77198537c9c4, type: 3} m_Texture: {fileID: 2800000, guid: c1489975cea6d494e8b5fb97a3df7420, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 31b0c21dec88b074d84a77198537c9c4, type: 3} m_Texture: {fileID: 2800000, guid: c1489975cea6d494e8b5fb97a3df7420, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 2, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,123 @@
fileFormatVersion: 2
guid: c1489975cea6d494e8b5fb97a3df7420
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 3
wrapV: 1
wrapW: 3
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 0
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,86 +0,0 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: airboy_smile_emm
m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: []
m_InvalidKeywords:
- _EMISSION
m_LightmapFlags: 2
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BumpMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailAlbedoMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 100, y: 0}
- _DetailMask:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _DetailNormalMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _EmissionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: 31b0c21dec88b074d84a77198537c9c4, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _BumpScale: 1
- _Cutoff: 0.5
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _UVSec: 0
- _ZWrite: 1
m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0.0754717, g: 0.0754717, b: 0.0754717, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View file

@ -8,7 +8,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: block_shadow m_Name: block_shadow
m_Shader: {fileID: 10750, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3}
m_ValidKeywords: [] m_ValidKeywords: []
m_InvalidKeywords: [] m_InvalidKeywords: []
m_LightmapFlags: 4 m_LightmapFlags: 4
@ -41,7 +41,7 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: d32d389a2d018c340ba55d6004c02a8b, type: 3} m_Texture: {fileID: 2800000, guid: b7b154f14d1c0954e829f3ffd889d91e, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
@ -75,6 +75,6 @@ Material:
- _UVSec: 0 - _UVSec: 0
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 0.5019608}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

Binary file not shown.

Before

Width:  |  Height:  |  Size: 927 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 22c07774052939142b7a94b6d9faa678 guid: b7b154f14d1c0954e829f3ffd889d91e
TextureImporter: TextureImporter:
internalIDToNameTable: [] internalIDToNameTable: []
externalObjects: {} externalObjects: {}

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

View file

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 31b0c21dec88b074d84a77198537c9c4 guid: 1d2639e7922955d4885420d3bc0e61c3
TextureImporter: TextureImporter:
internalIDToNameTable: [] internalIDToNameTable: []
externalObjects: {} externalObjects: {}

View file

@ -42,7 +42,7 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: b9367d4ab4f046c4e9a68ca6c41bae2d, type: 3} m_Texture: {fileID: 2800000, guid: 1d2639e7922955d4885420d3bc0e61c3, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:

Binary file not shown.

Before

Width:  |  Height:  |  Size: 866 B

View file

@ -8,7 +8,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: dog_shadow m_Name: dog_shadow
m_Shader: {fileID: 10750, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 4800000, guid: 6edf21a3fdd28154ab40e23fb0660133, type: 3}
m_ValidKeywords: [] m_ValidKeywords: []
m_InvalidKeywords: m_InvalidKeywords:
- _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A - _SMOOTHNESS_TEXTURE_ALBEDO_CHANNEL_A
@ -42,7 +42,7 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 91c26570f64739e40bee4ea80e99ddbc, type: 3} m_Texture: {fileID: 2800000, guid: c94502c75174fa448836079af762a7bb, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:
@ -80,7 +80,7 @@ Material:
- _UVSec: 0 - _UVSec: 0
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 0.5019608}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: b3d408db3cd2ecf4fa3d1d8e3d4854d9 guid: 0ecceba387529984a9ee91e382fe65d0
TextureImporter: TextureImporter:
internalIDToNameTable: [] internalIDToNameTable: []
externalObjects: {} externalObjects: {}

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -1,5 +1,5 @@
fileFormatVersion: 2 fileFormatVersion: 2
guid: 7697afb7ad71c9b44b60e6f2ecffeca4 guid: c94502c75174fa448836079af762a7bb
TextureImporter: TextureImporter:
internalIDToNameTable: [] internalIDToNameTable: []
externalObjects: {} externalObjects: {}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

View file

@ -38,11 +38,11 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 2800000, guid: b3d408db3cd2ecf4fa3d1d8e3d4854d9, type: 3} m_Texture: {fileID: 2800000, guid: 850e40bc393a1cc45abb8745f5950668, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: b3d408db3cd2ecf4fa3d1d8e3d4854d9, type: 3} m_Texture: {fileID: 2800000, guid: 850e40bc393a1cc45abb8745f5950668, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MetallicGlossMap: - _MetallicGlossMap:

Binary file not shown.

After

Width:  |  Height:  |  Size: 294 KiB

View file

@ -0,0 +1,123 @@
fileFormatVersion: 2
guid: 850e40bc393a1cc45abb8745f5950668
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 0
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMasterTextureLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 1
spriteTessellationDetail: -1
textureType: 8
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 4096
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Server
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
spritePackingTag:
pSDRemoveMatte: 0
pSDShowRemoveMatteOption: 0
userData:
assetBundleName:
assetBundleVariant:

View file

@ -87,6 +87,6 @@ Material:
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767} - _ClipRect: {r: -32767, g: -32767, b: 32767, a: 32767}
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 0.9921569, g: 0.7686275, b: 0.9921569, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -20,7 +20,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: -5988718474069186256, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} m_Motion: {fileID: 3800077309258468399, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:
@ -46,7 +46,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: -6767608362192247663, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} m_Motion: {fileID: -3344633985405764014, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:
@ -94,7 +94,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: 888322792775095555, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3} m_Motion: {fileID: 6125961371069380270, guid: 266571bf0a87816428e18a51e3c57d0f, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:

View file

@ -64,7 +64,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: 1800392339729405328, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3} m_Motion: {fileID: 2465399158856133786, guid: 69111fa8d72cdb847ad14fc0d8fd984c, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:

View file

@ -20,7 +20,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: 3977097287908140603, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3} m_Motion: {fileID: 9130175970626193648, guid: c9dfe6e539f24b14c8918dba9c6e35eb, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:

View file

@ -64,7 +64,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: -7095431843126280680, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3} m_Motion: {fileID: 5263545620203285798, guid: e6239db4d6763504fa0e5ad6ce9761b7, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:

View file

@ -767,12 +767,12 @@ AnimationClip:
m_PPtrCurves: m_PPtrCurves:
- curve: - curve:
- time: 0 - time: 0
value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
- time: 0.041666668 - time: 0.041666668
value: {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
- time: 0.083333336 - time: 0.083333336
value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
- time: 0.125 - time: 0.16666667
value: {fileID: 2100000, guid: c2dcdccce937af54aab2ffb52ce8b7e4, type: 2} value: {fileID: 2100000, guid: c2dcdccce937af54aab2ffb52ce8b7e4, type: 2}
- time: 7.5416665 - time: 7.5416665
value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2}
@ -780,6 +780,19 @@ AnimationClip:
path: parts_ok.001 path: parts_ok.001
classID: 137 classID: 137
script: {fileID: 0} script: {fileID: 0}
- curve:
- time: 0
value: {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2}
- time: 0.083333336
value: {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2}
- time: 0.125
value: {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2}
- time: 0.16666667
value: {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
attribute: m_Materials.Array.data[3]
path: parts_ok.001
classID: 137
script: {fileID: 0}
m_SampleRate: 24 m_SampleRate: 24
m_WrapMode: 0 m_WrapMode: 0
m_Bounds: m_Bounds:
@ -843,6 +856,13 @@ AnimationClip:
typeID: 137 typeID: 137
customType: 21 customType: 21
isPPtrCurve: 1 isPPtrCurve: 1
- serializedVersion: 2
path: 2603234997
attribute: 3
script: {fileID: 0}
typeID: 137
customType: 21
isPPtrCurve: 1
- serializedVersion: 2 - serializedVersion: 2
path: 2288273962 path: 2288273962
attribute: 1 attribute: 1
@ -900,11 +920,15 @@ AnimationClip:
customType: 0 customType: 0
isPPtrCurve: 0 isPPtrCurve: 0
pptrCurveMapping: pptrCurveMapping:
- {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
- {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2} - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
- {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2} - {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
- {fileID: 2100000, guid: c2dcdccce937af54aab2ffb52ce8b7e4, type: 2} - {fileID: 2100000, guid: c2dcdccce937af54aab2ffb52ce8b7e4, type: 2}
- {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2} - {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2}
- {fileID: 2100000, guid: bb9b20d1fb0ff2e45a2a8f14bd1fd6ee, type: 2}
- {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2}
- {fileID: 2100000, guid: 65811a5ed9222154b8a07c752e87c8c8, type: 2}
- {fileID: 2100000, guid: 1edfe5e6a93077d4cb5f95cf53c7e768, type: 2}
m_AnimationClipSettings: m_AnimationClipSettings:
serializedVersion: 2 serializedVersion: 2
m_AdditiveReferencePoseClip: {fileID: 0} m_AdditiveReferencePoseClip: {fileID: 0}

View file

@ -20,7 +20,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: -7723785180693003703, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Motion: {fileID: 3178102532616702734, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:
@ -46,7 +46,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: 241429122767823071, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Motion: {fileID: -1408222738841483094, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:
@ -72,7 +72,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: 241429122767823071, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Motion: {fileID: -1408222738841483094, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:
@ -98,7 +98,7 @@ AnimatorState:
m_MirrorParameterActive: 0 m_MirrorParameterActive: 0
m_CycleOffsetParameterActive: 0 m_CycleOffsetParameterActive: 0
m_TimeParameterActive: 0 m_TimeParameterActive: 0
m_Motion: {fileID: -8998818034351126502, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3} m_Motion: {fileID: -1871232912940249434, guid: 26c46c4ecd6e69145a6e971ac2cf6dcf, type: 3}
m_Tag: m_Tag:
m_SpeedParameter: m_SpeedParameter:
m_MirrorParameter: m_MirrorParameter:

View file

@ -40,7 +40,94 @@ ModelImporter:
animationWrapMode: 0 animationWrapMode: 0
extraExposedTransformPaths: [] extraExposedTransformPaths: []
extraUserProperties: [] extraUserProperties: []
clipAnimations: [] clipAnimations:
- serializedVersion: 16
name: elevator_down
takeName: elevator|elevator|elevator|elevator_down_elevator|elevator|elevator_down
internalID: 3800077309258468399
firstFrame: 0
lastFrame: 36
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: elevator_up
takeName: elevator|elevator|elevator|elevator_up_elevator|elevator|elevator_up_ele
internalID: 6125961371069380270
firstFrame: 0
lastFrame: 40
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
- serializedVersion: 16
name: elevator_wait
takeName: elevator|elevator|elevator|elevator_wait_elevator|elevator|elevator_wait
internalID: -3344633985405764014
firstFrame: 0
lastFrame: 1
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
isReadable: 0 isReadable: 0
meshes: meshes:
lODScreenPercentages: [] lODScreenPercentages: []

View file

@ -18,7 +18,7 @@ ModelImporter:
resampleCurves: 1 resampleCurves: 1
optimizeGameObjects: 0 optimizeGameObjects: 0
removeConstantScaleCurves: 0 removeConstantScaleCurves: 0
motionNodeName: motionNodeName: <Root Transform>
rigImportErrors: rigImportErrors:
rigImportWarnings: rigImportWarnings:
animationImportErrors: animationImportErrors:
@ -27,14 +27,43 @@ ModelImporter:
animationDoRetargetingWarnings: 0 animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0 importAnimatedCustomProperties: 0
importConstraints: 0 importConstraints: 0
animationCompression: 1 animationCompression: 0
animationRotationError: 0.5 animationRotationError: 0.5
animationPositionError: 0.5 animationPositionError: 0.5
animationScaleError: 0.5 animationScaleError: 0.5
animationWrapMode: 0 animationWrapMode: 0
extraExposedTransformPaths: [] extraExposedTransformPaths: []
extraUserProperties: [] extraUserProperties: []
clipAnimations: [] clipAnimations:
- serializedVersion: 16
name: parts_airshot
takeName: parts_airshot|parts_airshot|parts_airshot|parts_airshot_parts_airshot|parts_a
internalID: 2465399158856133786
firstFrame: 0
lastFrame: 40
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
isReadable: 0 isReadable: 0
meshes: meshes:
lODScreenPercentages: [] lODScreenPercentages: []
@ -59,7 +88,7 @@ ModelImporter:
skinWeightsMode: 0 skinWeightsMode: 0
maxBonesPerVertex: 4 maxBonesPerVertex: 4
minBoneWeight: 0.001 minBoneWeight: 0.001
optimizeBones: 1 optimizeBones: 0
meshOptimizationFlags: -1 meshOptimizationFlags: -1
indexFormat: 0 indexFormat: 0
secondaryUVAngleDistortion: 8 secondaryUVAngleDistortion: 8
@ -92,7 +121,7 @@ ModelImporter:
legStretch: 0.05 legStretch: 0.05
feetSpacing: 0 feetSpacing: 0
globalScale: 1 globalScale: 1
rootMotionBoneName: rootMotionBoneName: parts_airshot.001
hasTranslationDoF: 0 hasTranslationDoF: 0
hasExtraRoot: 0 hasExtraRoot: 0
skeletonHasParents: 1 skeletonHasParents: 1
@ -100,7 +129,7 @@ ModelImporter:
autoGenerateAvatarMappingIfUnspecified: 1 autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2 animationType: 2
humanoidOversampling: 1 humanoidOversampling: 1
avatarSetup: 0 avatarSetup: 1
addHumanoidExtraRootOnlyWhenUsingAvatar: 1 addHumanoidExtraRootOnlyWhenUsingAvatar: 1
remapMaterialsIfMaterialImportModeIsNone: 1 remapMaterialsIfMaterialImportModeIsNone: 1
additionalBone: 0 additionalBone: 0

View file

@ -34,7 +34,36 @@ ModelImporter:
animationWrapMode: 0 animationWrapMode: 0
extraExposedTransformPaths: [] extraExposedTransformPaths: []
extraUserProperties: [] extraUserProperties: []
clipAnimations: [] clipAnimations:
- serializedVersion: 16
name: partsok
takeName: parts_ok|parts_ok|parts_ok|parts_ok_parts_ok|parts_ok|parts_ok_parts_ok
internalID: 4401626605303300418
firstFrame: 0
lastFrame: 180
wrapMode: 0
orientationOffsetY: 0
level: 0
cycleOffset: 0
loop: 0
hasAdditiveReferencePose: 0
loopTime: 0
loopBlend: 0
loopBlendOrientation: 0
loopBlendPositionY: 0
loopBlendPositionXZ: 0
keepOriginalOrientation: 0
keepOriginalPositionY: 1
keepOriginalPositionXZ: 0
heightFromFeet: 0
mirror: 0
bodyMask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000
curves: []
events: []
transformMask: []
maskType: 3
maskSource: {instanceID: 0}
additiveReferencePoseFrame: 0
isReadable: 0 isReadable: 0
meshes: meshes:
lODScreenPercentages: [] lODScreenPercentages: []

View file

@ -2,14 +2,15 @@
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000 --- !u!21 &2100000
Material: Material:
serializedVersion: 6 serializedVersion: 8
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Divider m_Name: Divider
m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 10755, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4 m_LightmapFlags: 4
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
@ -55,6 +56,7 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats: m_Floats:
- _BumpScale: 1 - _BumpScale: 1
- _Cutoff: 0.5 - _Cutoff: 0.5
@ -73,6 +75,6 @@ Material:
- _UVSec: 0 - _UVSec: 0
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _Color: {r: 0, g: 0, b: 0, a: 1} - _Color: {r: 0.509434, g: 0.509434, b: 0.509434, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -2,15 +2,19 @@
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000 --- !u!21 &2100000
Material: Material:
serializedVersion: 6 serializedVersion: 8
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Impact m_Name: Impact
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _GLOSSYREFLECTIONS_OFF m_ValidKeywords:
m_LightmapFlags: 4 - _ALPHAPREMULTIPLY_ON
- _EMISSION
- _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: []
m_LightmapFlags: 2
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000 m_CustomRenderQueue: 3000
@ -42,7 +46,7 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 2800000, guid: 772d88056ab3bf5408fc8d5a3387df8d, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
@ -77,6 +81,7 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats: m_Floats:
- _AlphaClip: 0 - _AlphaClip: 0
- _Blend: 0 - _Blend: 0
@ -110,7 +115,7 @@ Material:
m_Colors: m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1} - _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []
--- !u!114 &1655112528312275563 --- !u!114 &1655112528312275563

View file

@ -2,15 +2,19 @@
%TAG !u! tag:unity3d.com,2011: %TAG !u! tag:unity3d.com,2011:
--- !u!21 &2100000 --- !u!21 &2100000
Material: Material:
serializedVersion: 6 serializedVersion: 8
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: ImpactFaded m_Name: ImpactFaded
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _GLOSSYREFLECTIONS_OFF m_ValidKeywords:
m_LightmapFlags: 4 - _ALPHAPREMULTIPLY_ON
- _EMISSION
- _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: []
m_LightmapFlags: 2
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
m_CustomRenderQueue: 3000 m_CustomRenderQueue: 3000
@ -42,7 +46,7 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 2800000, guid: 772d88056ab3bf5408fc8d5a3387df8d, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
@ -77,6 +81,7 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats: m_Floats:
- _AlphaClip: 0 - _AlphaClip: 0
- _Blend: 0 - _Blend: 0
@ -110,7 +115,7 @@ Material:
m_Colors: m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 0.5019608} - _BaseColor: {r: 1, g: 1, b: 1, a: 0.5019608}
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []
--- !u!114 &1655112528312275563 --- !u!114 &1655112528312275563

View file

@ -8,11 +8,12 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Object m_Name: Object
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _EMISSION
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: [] m_InvalidKeywords: []
m_LightmapFlags: 4 m_LightmapFlags: 2
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
m_CustomRenderQueue: -1 m_CustomRenderQueue: -1
@ -102,7 +103,7 @@ Material:
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _FirstOutlineWidth: 0.02 - _FirstOutlineWidth: 0.02
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.621
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _IndirectLightMultiplier: 1 - _IndirectLightMultiplier: 1
@ -141,7 +142,7 @@ Material:
m_Colors: m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1} - _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0.20754719, g: 0.20754719, b: 0.20754719, a: 1}
- _EmissionMapChannelMask: {r: 1, g: 1, b: 1, a: 0} - _EmissionMapChannelMask: {r: 1, g: 1, b: 1, a: 0}
- _FirstOutlineColor: {r: 0, g: 0, b: 0, a: 0.5} - _FirstOutlineColor: {r: 0, g: 0, b: 0, a: 0.5}
- _IndirectLightMinColor: {r: 0, g: 0, b: 0, a: 1} - _IndirectLightMinColor: {r: 0, g: 0, b: 0, a: 1}

View file

@ -8,10 +8,11 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Shooter m_Name: Shooter
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: [] m_ValidKeywords:
- _EMISSION
m_InvalidKeywords: [] m_InvalidKeywords: []
m_LightmapFlags: 4 m_LightmapFlags: 2
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
m_CustomRenderQueue: -1 m_CustomRenderQueue: -1
@ -56,6 +57,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: [] m_Ints: []
m_Floats: m_Floats:
- _BumpScale: 1 - _BumpScale: 1
@ -63,7 +68,7 @@ Material:
- _DetailNormalMapScale: 1 - _DetailNormalMapScale: 1
- _DstBlend: 0 - _DstBlend: 0
- _GlossMapScale: 1 - _GlossMapScale: 1
- _Glossiness: 0.5 - _Glossiness: 0.684
- _GlossyReflections: 1 - _GlossyReflections: 1
- _Metallic: 0 - _Metallic: 0
- _Mode: 0 - _Mode: 0
@ -76,5 +81,6 @@ Material:
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0.16981131, g: 0.16981131, b: 0.16981131, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -65,7 +65,7 @@ Material:
- _MainTex: - _MainTex:
m_Texture: {fileID: 2800000, guid: 42ac679b050de8c4288fbafb9d353498, type: 3} m_Texture: {fileID: 2800000, guid: 42ac679b050de8c4288fbafb9d353498, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: -0.013172884}
- _MetallicGlossMap: - _MetallicGlossMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}

View file

@ -15,15 +15,18 @@ MonoBehaviour:
version: 4 version: 4
--- !u!21 &2100000 --- !u!21 &2100000
Material: Material:
serializedVersion: 6 serializedVersion: 8
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Bridge m_Name: Bridge
m_Shader: {fileID: 10752, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: m_ValidKeywords:
m_LightmapFlags: 4 - _EMISSION
- _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: []
m_LightmapFlags: 2
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
m_CustomRenderQueue: -1 m_CustomRenderQueue: -1
@ -53,7 +56,7 @@ Material:
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _EmissionMap: - _EmissionMap:
m_Texture: {fileID: 0} m_Texture: {fileID: 2800000, guid: 657c2f9c15dce0541bcc21ff7c7ede1d, type: 3}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _MainTex: - _MainTex:
@ -88,6 +91,7 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats: m_Floats:
- _AlphaClip: 0 - _AlphaClip: 0
- _Blend: 0 - _Blend: 0
@ -101,9 +105,10 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.807
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1 - _OcclusionStrength: 1
- _Parallax: 0.005 - _Parallax: 0.005
- _QueueOffset: 0 - _QueueOffset: 0
@ -114,11 +119,12 @@ Material:
- _SpecularHighlights: 1 - _SpecularHighlights: 1
- _SrcBlend: 1 - _SrcBlend: 1
- _Surface: 0 - _Surface: 0
- _UVSec: 0
- _WorkflowMode: 1 - _WorkflowMode: 1
- _ZWrite: 1 - _ZWrite: 1
m_Colors: m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1} - _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1} - _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0.122641504, g: 0.122641504, b: 0.122641504, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -15,14 +15,17 @@ MonoBehaviour:
version: 4 version: 4
--- !u!21 &2100000 --- !u!21 &2100000
Material: Material:
serializedVersion: 6 serializedVersion: 8
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: GapShadow m_Name: GapShadow
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _ALPHAPREMULTIPLY_ON _GLOSSYREFLECTIONS_OFF m_ValidKeywords:
- _ALPHAPREMULTIPLY_ON
- _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: []
m_LightmapFlags: 4 m_LightmapFlags: 4
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
@ -105,6 +108,7 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats: m_Floats:
- _AdditionalLightIgnoreCelShade: 0.9 - _AdditionalLightIgnoreCelShade: 0.9
- _AlphaClip: 0 - _AlphaClip: 0

View file

@ -21,7 +21,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Grid m_Name: Grid
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: m_InvalidKeywords:
@ -79,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -104,8 +108,8 @@ Material:
- _DetailNormalMapScale: 1 - _DetailNormalMapScale: 1
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0.305
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -130,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -21,7 +21,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: GridPlane m_Name: GridPlane
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: m_InvalidKeywords:
@ -79,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -105,7 +109,7 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -130,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -21,7 +21,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Lights 1 m_Name: Lights 1
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: m_InvalidKeywords:
@ -79,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -105,7 +109,7 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -130,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -21,7 +21,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Lights 2 m_Name: Lights 2
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: m_InvalidKeywords:
@ -79,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -105,7 +109,7 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -130,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -21,7 +21,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Lights 3 m_Name: Lights 3
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: m_InvalidKeywords:
@ -79,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -105,7 +109,7 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -130,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -15,14 +15,17 @@ MonoBehaviour:
version: 4 version: 4
--- !u!21 &2100000 --- !u!21 &2100000
Material: Material:
serializedVersion: 6 serializedVersion: 8
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0} m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Lights 4 m_Name: Lights 4
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ShaderKeywords: _GLOSSYREFLECTIONS_OFF _RECEIVE_SHADOWS_OFF m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords:
- _RECEIVE_SHADOWS_OFF
m_LightmapFlags: 4 m_LightmapFlags: 4
m_EnableInstancingVariants: 0 m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0 m_DoubleSidedGI: 0
@ -76,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -88,6 +95,7 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats: m_Floats:
- _AlphaClip: 0 - _AlphaClip: 0
- _Blend: 0 - _Blend: 0
@ -101,7 +109,7 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -126,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

View file

@ -21,7 +21,7 @@ Material:
m_PrefabInstance: {fileID: 0} m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0} m_PrefabAsset: {fileID: 0}
m_Name: Lights m_Name: Lights
m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} m_Shader: {fileID: 45, guid: 0000000000000000f000000000000000, type: 0}
m_ValidKeywords: m_ValidKeywords:
- _GLOSSYREFLECTIONS_OFF - _GLOSSYREFLECTIONS_OFF
m_InvalidKeywords: m_InvalidKeywords:
@ -79,6 +79,10 @@ Material:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0} m_Offset: {x: 0, y: 0}
- _TerrainHolesTexture:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps: - unity_Lightmaps:
m_Texture: {fileID: 0} m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1} m_Scale: {x: 1, y: 1}
@ -105,7 +109,7 @@ Material:
- _DstBlend: 0 - _DstBlend: 0
- _EnvironmentReflections: 1 - _EnvironmentReflections: 1
- _GlossMapScale: 0 - _GlossMapScale: 0
- _Glossiness: 0 - _Glossiness: 0.689
- _GlossinessSource: 0 - _GlossinessSource: 0
- _GlossyReflections: 0 - _GlossyReflections: 0
- _Metallic: 0 - _Metallic: 0
@ -130,5 +134,5 @@ Material:
- _BaseColor: {r: 0, g: 1, b: 0, a: 1} - _BaseColor: {r: 0, g: 1, b: 0, a: 1}
- _Color: {r: 0, g: 1, b: 0, a: 1} - _Color: {r: 0, g: 1, b: 0, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} - _SpecColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
m_BuildTextureStacks: [] m_BuildTextureStacks: []

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