This commit is contained in:
CortexCore 2025-02-27 17:52:42 +08:00
parent ed08fd23bd
commit 0551b9f018
46 changed files with 2627 additions and 1306 deletions

View File

@ -0,0 +1,44 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
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: 5a1bd480dd5d8fd4487b77d0b0f56ab5, type: 3}
m_Name: item_suitcase_yangdun
m_EditorClassIdentifier:
id: 1006
displayName:
rid: 2091308013898957191
description:
rid: 2091308013898957192
icon: {fileID: 21300000, guid: dac88ff57837fb84bb81ac3c183bab59, type: 3}
rectangleIcon: {fileID: 0}
quality: 0
maxStack: 1
model: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
value: 0
isImprovised: 0
allowUseWhileKnocked: 0
properties: []
factoryProperty: []
controllerClass:
rid: -2
references:
version: 2
RefIds:
- rid: -2
type: {class: , ns: , asm: }
- rid: 2091308013898957191
type: {class: Reference, ns: BITKit, asm: BITKit}
data:
value: "\u7F8A\u987F\u7684\u968F\u8EAB\u5305"
- rid: 2091308013898957192
type: {class: Reference, ns: BITKit, asm: BITKit}
data:
value: "\u7F8A\u987F\u7684\u9B54\u6CD5\u4E16\u754C\u968F\u8EAB\u5305,\u91CC\u9762\u6709\u5404\u79CD\u5404\u6837\u7684\u9B54\u6CD5\u5C0F\u9053\u5177"

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 1fe8d1930925e47449bb73f56b373a36
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -25,3 +25,5 @@ MonoBehaviour:
Value: item_sushi_futomaski
- Key: 1004
Value: item_taiyaki
- Key: 1006
Value: item_suitcase_yangdun

View File

@ -43,6 +43,8 @@ namespace Net.Like.Xue.Tokyo
serviceCollection.AddSingleton<IUXSnapshotWindow, UXSnapshotWindow>();
serviceCollection.AddSingleton<IUXItemInspector, UXItemInspector>();
serviceCollection.AddSingleton<IUXInventorySwap, UXInventorySwap>();
//获取服务提供者
await using var serviceProvider = BITApp.ServiceProvider = serviceCollection.BuildServiceProvider();
@ -70,6 +72,9 @@ namespace Net.Like.Xue.Tokyo
serviceProvider.GetRequiredService<IUXInventory>();
serviceProvider.GetRequiredService<UXContextMenu>();
serviceProvider.GetRequiredService<IUXInventorySwap>();
Application.targetFrameRate = 165;

View File

@ -0,0 +1,24 @@
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" xsi="http://www.w3.org/2001/XMLSchema-instance" engine="UnityEngine.UIElements" editor="UnityEditor.UIElements" noNamespaceSchemaLocation="../UIElementsSchema/UIElements.xsd" editor-extension-mode="False">
<ui:Template name="ux_item_template" src="project://database/Assets/Artists/UX/ux_item_template.uxml?fileID=9197481963319205126&amp;guid=fa2c13defbae3254882a968978396ed0&amp;type=3#ux_item_template" />
<Style src="project://database/Assets/BITKit/Unity/UX/Common/Common.uss?fileID=7433441132597879392&amp;guid=a3a69d3518fd02b489e721f3c5b0b539&amp;type=3#Common" />
<Style src="project://database/Assets/Artists/UX/Style.uss?fileID=7433441132597879392&amp;guid=506d41b7c5d56a44bb5845e69055a5eb&amp;type=3#Style" />
<ui:VisualElement picking-mode="Ignore" class="root" style="background-image: url(&quot;project://database/Assets/BITKit/Unity/Art/Backgrounds/BG_Gradient_Half_BT_.png?fileID=21300000&amp;guid=d19ac049792985540825b54b0b002529&amp;type=3#BG_Gradient_Half_BT_&quot;); background-color: rgba(0, 0, 0, 0.78); -unity-background-image-tint-color: rgb(0, 0, 0);" />
<ui:VisualElement class="flex-center" style="min-width: 768px;">
<ui:Label tabindex="-1" text="物品容器" parse-escape-sequences="true" display-tooltip-when-elided="true" name="target-label" class="tl" />
<ui:VisualElement name="target-container" style="flex-direction: row; height: 100px;">
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
</ui:VisualElement>
<ui:Label tabindex="-1" text="羊顿的背包" parse-escape-sequences="true" display-tooltip-when-elided="true" name="self-label" />
<ui:VisualElement name="self-container" style="flex-direction: row; height: 100px;">
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
<ui:Instance template="ux_item_template" name="ux_item_template" />
</ui:VisualElement>
</ui:VisualElement>
</ui:UXML>

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: 6ac47a40d0bd6ea40ba853944315c072
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 13804, guid: 0000000000000000e000000000000000, type: 0}

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

View File

@ -0,0 +1,140 @@
fileFormatVersion: 2
guid: 56d236f74534946468c09bd2c1b87307
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 0
aniso: 1
mipBias: 0
wrapU: 1
wrapV: 1
wrapW: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 0
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 512
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
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 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
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -52,7 +52,7 @@ Material:
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Texture: {fileID: 2800000, guid: 611eb595130f22148ab3c3a38bec110d, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
@ -119,7 +119,7 @@ Material:
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.8, g: 0.8, b: 0.8, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 0.8, g: 0.8, b: 0.8, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []

View File

@ -53,7 +53,7 @@ Material:
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Texture: {fileID: 2800000, guid: 8c8757244edf31648bd5ee9946f50d2a, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:

View File

@ -66,7 +66,7 @@ Material:
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 0}
m_Texture: {fileID: 2800000, guid: 5dc6931c029efc84d80b22bf3be3f2e1, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:

View File

@ -0,0 +1,133 @@
%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: No Name
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap:
RenderType: Opaque
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _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: 0}
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}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 0
- _Glossiness: 0
- _GlossyReflections: 0
- _Metallic: 0
- _OcclusionStrength: 1
- _Parallax: 0.005
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.5
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- _BaseColor: {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}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
--- !u!114 &1621433892820028891
MonoBehaviour:
m_ObjectHideFlags: 11
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: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 7

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 6ce06a5cc5d4e8d409a14281029f5a3c
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -11,7 +11,9 @@ GameObject:
- component: {fileID: 4441222250453458894}
- component: {fileID: 724445733441884267}
- component: {fileID: 3308255423010251937}
- component: {fileID: 964528378231880795}
- component: {fileID: 9054539825046786016}
- component: {fileID: 4870427888338130481}
- component: {fileID: 7353030393644111003}
m_Layer: 0
m_Name: ATM
m_TagString: Untagged
@ -26,12 +28,13 @@ Transform:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3956892448720323956}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &724445733441884267
MeshFilter:
@ -52,10 +55,12 @@ MeshRenderer:
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
@ -80,17 +85,77 @@ MeshRenderer:
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
--- !u!64 &964528378231880795
MeshCollider:
m_AdditionalVertexStreams: {fileID: 0}
--- !u!65 &9054539825046786016
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3956892448720323956}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 4
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: 5283176134434784156, guid: 962b46e1949a02f44981391dfa834096, type: 3}
serializedVersion: 3
m_Size: {x: 0.7031754, y: 1.7698672, z: 0.90772635}
m_Center: {x: 0.000000074505806, y: 0.8849335, z: 0.053675205}
--- !u!114 &4870427888338130481
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3956892448720323956}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 054d7fc7589c04d4a8412a6f82b32d6c, type: 3}
m_Name:
m_EditorClassIdentifier:
worldNodeService:
rid: 2091308020455964672
worldNode:
rid: 2091308020455964673
references:
version: 2
RefIds:
- rid: 2091308020455964672
type: {class: WorldNodeService, ns: BITKit.WorldNode, asm: BITKit.WorldNode}
data:
- rid: 2091308020455964673
type: {class: WorldInfoNode, ns: BITKit.WorldNode, asm: BITKit.WorldNode}
data:
name:
rid: 2091308020455964675
description:
rid: 2091308020455964676
- rid: 2091308020455964675
type: {class: Reference, ns: BITKit, asm: BITKit}
data:
value: "ATM\u673A"
- rid: 2091308020455964676
type: {class: Reference, ns: BITKit, asm: BITKit}
data:
value: "\u53EF\u4EE5\u5728\u8FD9\u91CC\u5151\u6362\u548C\u53D6\u73B0\u91D1(\u65E5\u5143)"
--- !u!114 &7353030393644111003
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3956892448720323956}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 2ed62d8e713d0d141a64c4ea6e1d94db, type: 3}
m_Name:
m_EditorClassIdentifier:
allowAdd: 0
allowRemove: 0
initialItems: []

View File

@ -11,7 +11,6 @@ GameObject:
- component: {fileID: 3936440122197131391}
- component: {fileID: 5291660305350571762}
- component: {fileID: 6497545601040413341}
- component: {fileID: 8017123440651588239}
m_Layer: 0
m_Name: Wheel_1_2
m_TagString: Untagged
@ -84,28 +83,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!64 &8017123440651588239
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 758463423653140182}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: -3866566910799373238, guid: 4a122380f36225b4a82de75af374dc11, type: 3}
--- !u!1 &1354954904269719898
GameObject:
m_ObjectHideFlags: 0
@ -117,7 +94,6 @@ GameObject:
- component: {fileID: 4511270427387090703}
- component: {fileID: 5110315088059865697}
- component: {fileID: 6534255321058375687}
- component: {fileID: 8256111521084594687}
m_Layer: 0
m_Name: Wheel_1_1
m_TagString: Untagged
@ -190,28 +166,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!64 &8256111521084594687
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1354954904269719898}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: 2275265095816645422, guid: 4a122380f36225b4a82de75af374dc11, type: 3}
--- !u!1 &1521629952239437153
GameObject:
m_ObjectHideFlags: 0
@ -371,7 +325,6 @@ GameObject:
- component: {fileID: 6192369070086097187}
- component: {fileID: 194337710852879615}
- component: {fileID: 8490760256088802947}
- component: {fileID: 7144133153153172225}
m_Layer: 0
m_Name: Wheel_1_4
m_TagString: Untagged
@ -444,28 +397,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!64 &7144133153153172225
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3478374957519295899}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: 6088274979357842032, guid: 4a122380f36225b4a82de75af374dc11, type: 3}
--- !u!1 &5686247859986705432
GameObject:
m_ObjectHideFlags: 0
@ -477,7 +408,6 @@ GameObject:
- component: {fileID: 5007099764798315989}
- component: {fileID: 5013345332351020398}
- component: {fileID: 5253161842856631686}
- component: {fileID: 2183810198329020377}
m_Layer: 0
m_Name: Wheel_1_3
m_TagString: Untagged
@ -550,28 +480,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!64 &2183810198329020377
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5686247859986705432}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: 8572342477093527670, guid: 4a122380f36225b4a82de75af374dc11, type: 3}
--- !u!1 &5910945743158461254
GameObject:
m_ObjectHideFlags: 0
@ -583,7 +491,6 @@ GameObject:
- component: {fileID: 3291720062671811834}
- component: {fileID: 200282169893000877}
- component: {fileID: 1594357897047679138}
- component: {fileID: 314257029551957978}
m_Layer: 0
m_Name: Handle_1
m_TagString: Untagged
@ -656,25 +563,3 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!64 &314257029551957978
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5910945743158461254}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: -7904595856351419110, guid: 4a122380f36225b4a82de75af374dc11, type: 3}

View File

@ -146,6 +146,112 @@ MonoBehaviour:
type: {class: Reference, ns: BITKit, asm: BITKit}
data:
value: "\u5728\u8FD9\u91CC\u770B\u5230\u5C04\u7EBF\u68C0\u6D4B\u7684\u7269\u54C1"
--- !u!1 &1047300295277446759
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 5865133725206495988}
- component: {fileID: 915755105245787994}
m_Layer: 0
m_Name: collider
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &5865133725206495988
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1047300295277446759}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &915755105245787994
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1047300295277446759}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 0.12441251, y: 1.8794487, z: 1.4898676}
m_Center: {x: -0.5303682, y: 0.9720222, z: -0.0019330978}
--- !u!1 &1151319431042213279
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 273751350963809081}
- component: {fileID: 2236806153592891747}
m_Layer: 0
m_Name: collider
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &273751350963809081
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1151319431042213279}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &2236806153592891747
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1151319431042213279}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1.1919361, y: 0.12557137, z: 4.0764904}
m_Center: {x: -0.0036901832, y: 0.7402558, z: 0.004643321}
--- !u!1 &2271407088381422975
GameObject:
m_ObjectHideFlags: 0
@ -157,7 +263,6 @@ GameObject:
- component: {fileID: 1499267783219165125}
- component: {fileID: 2549498701864777824}
- component: {fileID: 325759758875806890}
- component: {fileID: 6141450832091820358}
- component: {fileID: 2169378845514571456}
m_Layer: 0
m_Name: Introscope
@ -180,6 +285,13 @@ Transform:
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 5476623779094160139}
- {fileID: 7086755011328610643}
- {fileID: 273751350963809081}
- {fileID: 5865133725206495988}
- {fileID: 4815792325884584325}
- {fileID: 3983742930370800069}
- {fileID: 4991042707706608293}
- {fileID: 5673264167912492600}
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!33 &2549498701864777824
@ -233,28 +345,6 @@ MeshRenderer:
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!64 &6141450832091820358
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2271407088381422975}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: -4074738239155084961, guid: 6aefbb2f81f2fca4b8a52aa92792e1c8, type: 3}
--- !u!114 &2169378845514571456
MonoBehaviour:
m_ObjectHideFlags: 0
@ -292,3 +382,312 @@ MonoBehaviour:
type: {class: Reference, ns: BITKit, asm: BITKit}
data:
value: "\u5DE5\u4F5C\u4EBA\u5458,\u7528\u5B89\u68C0\u673A\u68C0\u67E5\u65C5\u5BA2\u662F\u5426\u643A\u5E26\u4E86\u8FDD\u7981\u54C1/\u30B9\u30BF\u30C3\u30D5\u306F\u3001\u30BB\u30AD\u30E5\u30EA\u30C6\u30A3\u6A5F\u5668\u3092\u4F7F\u7528\u3057\u3066\u3001\u4E57\u5BA2\u304C\u7981\u6B62\u54C1\u3092\u6240\u6301\u3057\u3066\u3044\u306A\u3044\u304B\u3069\u3046\u304B\u3092\u78BA\u8A8D\u3057\u307E\u3059\u3002"
--- !u!1 &2326662863403651333
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 7086755011328610643}
- component: {fileID: 3947622939781553787}
- component: {fileID: 4910460786797993125}
- component: {fileID: 82731828877519394}
m_Layer: 0
m_Name: conveyor
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &7086755011328610643
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2326662863403651333}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!54 &3947622939781553787
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2326662863403651333}
serializedVersion: 4
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_CenterOfMass: {x: 0, y: 0, z: 0}
m_InertiaTensor: {x: 1, y: 1, z: 1}
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_ImplicitCom: 1
m_ImplicitTensor: 1
m_UseGravity: 0
m_IsKinematic: 1
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!65 &4910460786797993125
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2326662863403651333}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1.1919361, y: 0.20271611, z: 3.200896}
m_Center: {x: -0.0036901832, y: 0.77882814, z: 0.44244075}
--- !u!114 &82731828877519394
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2326662863403651333}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 751c0f3f2d0e8934db23f20e35f83412, type: 3}
m_Name:
m_EditorClassIdentifier:
rigidbody: {fileID: 3947622939781553787}
forward: {x: 0, y: 0, z: -1}
speed: 1
--- !u!1 &2539202459533483847
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 5673264167912492600}
- component: {fileID: 2193085672905925601}
m_Layer: 0
m_Name: GameObject (1)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &5673264167912492600
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2539202459533483847}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 3.977}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &2193085672905925601
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 2539202459533483847}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1.1465718, y: 0.86113954, z: 0.10126493}
m_Center: {x: -0.007714927, y: 0.44358146, z: -1.9845493}
--- !u!1 &3023751827490919030
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 3983742930370800069}
- component: {fileID: 4386751231448822152}
m_Layer: 0
m_Name: collider (2)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &3983742930370800069
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3023751827490919030}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: -0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &4386751231448822152
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3023751827490919030}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1.2005764, y: 0.3404138, z: 1.4898676}
m_Center: {x: 0.0077138543, y: 1.7415396, z: -0.0019330978}
--- !u!1 &3841122077474068279
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 4991042707706608293}
- component: {fileID: 6830533692451192794}
m_Layer: 0
m_Name: GameObject
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &4991042707706608293
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3841122077474068279}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &6830533692451192794
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 3841122077474068279}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1.1465718, y: 0.86113954, z: 0.10126493}
m_Center: {x: -0.007714927, y: 0.44358146, z: -1.9845493}
--- !u!1 &5770195539022840230
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 4815792325884584325}
- component: {fileID: 4532886489179694964}
m_Layer: 0
m_Name: collider (1)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &4815792325884584325
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5770195539022840230}
serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 1.057, y: 0, z: -0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1499267783219165125}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &4532886489179694964
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5770195539022840230}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 0.12441251, y: 1.8794487, z: 1.4898676}
m_Center: {x: -0.5303682, y: 0.9720222, z: -0.0019330978}

View File

@ -424,6 +424,103 @@ MeshCollider:
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: -3916733162373328292, guid: abb813f0b3bb9464d933a001271bb236, type: 3}
--- !u!1 &5666543347426721465
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 6682323561570680739}
- component: {fileID: 8260893765912734141}
- component: {fileID: 78202573427965379}
- component: {fileID: 590347084134251950}
m_Layer: 0
m_Name: GameObject
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &6682323561570680739
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5666543347426721465}
serializedVersion: 2
m_LocalRotation: {x: -0.26866758, y: 0, z: 0, w: 0.96323293}
m_LocalPosition: {x: -0, y: 3.9, z: -6.05}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 7717544031629843371}
m_LocalEulerAnglesHint: {x: -31.17, y: 0, z: 0}
--- !u!65 &8260893765912734141
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5666543347426721465}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1, y: 1, z: 13.344752}
m_Center: {x: 0, y: 0.0000013328918, z: -0.52584124}
--- !u!54 &78202573427965379
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5666543347426721465}
serializedVersion: 4
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_CenterOfMass: {x: 0, y: 0, z: 0}
m_InertiaTensor: {x: 1, y: 1, z: 1}
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_ImplicitCom: 1
m_ImplicitTensor: 1
m_UseGravity: 0
m_IsKinematic: 1
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!114 &590347084134251950
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 5666543347426721465}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 751c0f3f2d0e8934db23f20e35f83412, type: 3}
m_Name:
m_EditorClassIdentifier:
rigidbody: {fileID: 78202573427965379}
forward: {x: 0, y: 0, z: 1}
speed: 1
--- !u!1 &6106690668273783146
GameObject:
m_ObjectHideFlags: 0
@ -565,5 +662,6 @@ Transform:
- {fileID: 6860349651032491914}
- {fileID: 4684255977837848214}
- {fileID: 7029056560003896207}
- {fileID: 6682323561570680739}
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}

View File

@ -10320,6 +10320,122 @@ Transform:
m_CorrespondingSourceObject: {fileID: 6207755862278541514, guid: e51ab3ddd89f7ef40b3600e32402d7b7, type: 3}
m_PrefabInstance: {fileID: 632837440}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &633426705
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 0}
m_Modifications:
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalPosition.x
value: -79.964
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalPosition.y
value: 0.815
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalPosition.z
value: -44.686
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalRotation.w
value: 1
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalRotation.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalRotation.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalRotation.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
propertyPath: m_Name
value: bag
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents:
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
insertIndex: -1
addedObject: {fileID: 633426708}
- targetCorrespondingSourceObject: {fileID: 919132149155446097, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
insertIndex: -1
addedObject: {fileID: 633426707}
m_SourcePrefab: {fileID: 100100000, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
--- !u!1 &633426706 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 919132149155446097, guid: bfaf50fe3d6e63141946d6385de31004, type: 3}
m_PrefabInstance: {fileID: 633426705}
m_PrefabAsset: {fileID: 0}
--- !u!54 &633426707
Rigidbody:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 633426706}
serializedVersion: 4
m_Mass: 1
m_Drag: 0
m_AngularDrag: 0.05
m_CenterOfMass: {x: 0, y: 0, z: 0}
m_InertiaTensor: {x: 1, y: 1, z: 1}
m_InertiaRotation: {x: 0, y: 0, z: 0, w: 1}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_ImplicitCom: 1
m_ImplicitTensor: 1
m_UseGravity: 1
m_IsKinematic: 0
m_Interpolate: 0
m_Constraints: 0
m_CollisionDetection: 0
--- !u!65 &633426708
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 633426706}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 0.27179718, y: 0.16843182, z: 0.12708282}
m_Center: {x: 0.0034446716, y: 0.078103095, z: 0.0045928955}
--- !u!1 &643364370
GameObject:
m_ObjectHideFlags: 0
@ -10405,491 +10521,6 @@ GameObject:
m_CorrespondingSourceObject: {fileID: 5293534579243461830, guid: e871ad8894f3f8c42984202892bb4b95, type: 3}
m_PrefabInstance: {fileID: 57164833}
m_PrefabAsset: {fileID: 0}
--- !u!1 &816739203
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 816739209}
- component: {fileID: 816739208}
- component: {fileID: 816739207}
- component: {fileID: 816739206}
- component: {fileID: 816739205}
- component: {fileID: 816739204}
m_Layer: 0
m_Name: Sprite
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 2147483647
m_IsActive: 1
--- !u!64 &816739204
MeshCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 816739203}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 5
m_Convex: 0
m_CookingOptions: 30
m_Mesh: {fileID: 1298248831}
--- !u!33 &816739205
MeshFilter:
m_ObjectHideFlags: 10
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 816739203}
m_Mesh: {fileID: 1298248831}
--- !u!23 &816739206
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 816739203}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 5276484416a732943b6348311beb98bc, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 2
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!114 &816739207
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 816739203}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 1ca002da428252441b92f28d83c8a65f, type: 3}
m_Name:
m_EditorClassIdentifier:
m_Shape:
rid: 2091308001305035712
m_Size: {x: -3, y: 0, z: 11}
m_Rotation: {x: 0, y: 0, z: 0, w: 1}
m_PivotLocation: 1
m_PivotPosition: {x: 0, y: 0, z: 0}
m_UnmodifiedMeshVersion: 701
m_ShapeBox:
m_Center: {x: -1.5, y: 0.00000006556759, z: 5.5}
m_Extent: {x: 5.5, y: 0, z: 1.5}
references:
version: 2
RefIds:
- rid: 2091308001305035712
type: {class: Sprite, ns: UnityEngine.ProBuilder.Shapes, asm: Unity.ProBuilder}
data:
--- !u!114 &816739208
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 816739203}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 8233d90336aea43098adf6dbabd606a2, type: 3}
m_Name:
m_EditorClassIdentifier:
m_MeshFormatVersion: 2
m_Faces:
- m_Indexes: 000000000100000002000000010000000300000002000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: 0
m_TextureGroup: -1
- m_Indexes: 060000000500000004000000060000000700000005000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
- m_Indexes: 0a00000009000000080000000a0000000b00000009000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
- m_Indexes: 0e0000000d0000000c0000000e0000000f0000000d000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
- m_Indexes: 120000001100000010000000120000001300000011000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
- m_Indexes: 160000001500000014000000160000001700000015000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
- m_Indexes: 1a00000019000000180000001a0000001b00000019000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
- m_Indexes: 1e0000001d0000001c0000001e0000001f0000001d000000
m_SmoothingGroup: 0
m_Uv:
m_UseWorldSpace: 0
m_FlipU: 0
m_FlipV: 0
m_SwapUV: 0
m_Fill: 1
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Rotation: 0
m_Anchor: 9
m_Material: {fileID: 0}
m_SubmeshIndex: 0
m_ManualUV: 0
elementGroup: -1
m_TextureGroup: -1
m_SharedVertices:
- m_Vertices: 0000000004000000
- m_Vertices: 01000000050000000c000000
- m_Vertices: 02000000
- m_Vertices: 030000000d000000
- m_Vertices: 0600000008000000
- m_Vertices: 070000000900000011000000
- m_Vertices: 0a000000
- m_Vertices: 0b00000010000000
- m_Vertices: 0e0000001400000018000000
- m_Vertices: 0f00000015000000
- m_Vertices: 12000000
- m_Vertices: 13000000
- m_Vertices: 1600000019000000
- m_Vertices: 17000000
- m_Vertices: 1a0000001c000000
- m_Vertices: 1b0000001d000000
- m_Vertices: 1e000000
- m_Vertices: 1f000000
m_SharedTextures: []
m_Positions:
- {x: -1, y: 0.000000072201686, z: 1.4210855e-14}
- {x: -1, y: 0.00000007220198, z: 3.25}
- {x: 0, y: 0.00000006556759, z: 0}
- {x: -0.000000008742056, y: 0.00000005829292, z: 3.5}
- {x: -1, y: 0.000000072201686, z: 1.4210855e-14}
- {x: -1, y: 0.00000007220198, z: 3.25}
- {x: -5, y: 0.000000053332183, z: 1.4210855e-14}
- {x: -5, y: 0.000000053332474, z: 3.25}
- {x: -5, y: 0.000000053332183, z: 1.4210855e-14}
- {x: -5, y: 0.000000053332474, z: 3.25}
- {x: -8, y: 0.00000005035593, z: 1.4210855e-14}
- {x: -8, y: 0.000000050356242, z: 3.5}
- {x: -1, y: 0.00000007220198, z: 3.25}
- {x: -0.000000008742056, y: 0.00000005829292, z: 3.5}
- {x: -1, y: 0.00000008710367, z: 9.25}
- {x: -0.000000008742049, y: 0.00000008809575, z: 9.25}
- {x: -8, y: 0.000000050356242, z: 3.5}
- {x: -5, y: 0.000000053332474, z: 3.25}
- {x: -8, y: 0.000000065257915, z: 9.25}
- {x: -5, y: 0.00000005333301, z: 9.25}
- {x: -1, y: 0.00000008710367, z: 9.25}
- {x: -0.000000008742049, y: 0.00000008809575, z: 9.25}
- {x: -1, y: 0.00000008710383, z: 11}
- {x: -0.000000008742049, y: 0.000000088095916, z: 11}
- {x: -1, y: 0.00000008710367, z: 9.25}
- {x: -1, y: 0.00000008710383, z: 11}
- {x: -5, y: 0.00000005333301, z: 9.25}
- {x: -5, y: 0.000000053333167, z: 11}
- {x: -5, y: 0.00000005333301, z: 9.25}
- {x: -5, y: 0.000000053333167, z: 11}
- {x: -8, y: 0.000000050356757, z: 9.25}
- {x: -8, y: 0.000000050356913, z: 11}
m_Textures0:
- {x: -1, y: 1.421086e-14}
- {x: -1, y: 3.25}
- {x: -4.3498167e-16, y: 5.8773283e-21}
- {x: -0.000000008742056, y: 3.5}
- {x: -1, y: 1.4210861e-14}
- {x: -1, y: 3.25}
- {x: -5, y: 1.4210861e-14}
- {x: -5, y: 3.25}
- {x: -5, y: 1.421086e-14}
- {x: -5, y: 3.25}
- {x: -8, y: 1.421086e-14}
- {x: -8, y: 3.5}
- {x: -1, y: 3.25}
- {x: -0.000000008742057, y: 3.5}
- {x: -1, y: 9.25}
- {x: -0.00000000874205, y: 9.25}
- {x: -8, y: 3.5}
- {x: -5, y: 3.25}
- {x: -8, y: 9.25}
- {x: -5, y: 9.25}
- {x: -1, y: 9.25}
- {x: -0.000000008742049, y: 9.25}
- {x: -1, y: 11}
- {x: -0.000000008742049, y: 11}
- {x: -1, y: 9.25}
- {x: -1, y: 11}
- {x: -5, y: 9.25}
- {x: -5, y: 11}
- {x: -5, y: 9.25}
- {x: -5, y: 11}
- {x: -8, y: 9.25}
- {x: -8, y: 11}
m_Textures2:
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
m_Textures3:
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
- {x: 0, y: 0, z: 0, w: 0}
m_Tangents:
- {x: 1, y: -0.000000006634096, z: -8.4703295e-22, w: -1}
- {x: 1, y: -0.000000010011767, z: -4.225935e-22, w: -1}
- {x: 1, y: -0.000000010011767, z: -4.225935e-22, w: -1}
- {x: 1, y: -0.000000013389439, z: 1.846059e-24, w: -1}
- {x: 1, y: 0.000000004717376, z: 0, w: -1}
- {x: 1, y: 0.000000004717376, z: 0, w: -1}
- {x: 1, y: 0.000000004717376, z: 0, w: -1}
- {x: 1, y: 0.000000004717376, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
- {x: 1, y: 9.920849e-10, z: 0, w: -1}
- {x: 1, y: 9.920849e-10, z: 0, w: -1}
- {x: 1, y: 9.92085e-10, z: 0, w: -1}
- {x: 1, y: -0.000000014529963, z: 0, w: -1}
- {x: 1, y: -0.000000006768941, z: 0, w: -1}
- {x: 1, y: -0.000000006768941, z: 0, w: -1}
- {x: 1, y: 9.920811e-10, z: 0, w: -1}
- {x: 1, y: 0.0000000012080438, z: 0, w: -1}
- {x: 1, y: -0.000000001383462, z: 0, w: -1}
- {x: 1, y: -0.000000001383462, z: 0, w: -1}
- {x: 1, y: -0.000000003974968, z: 0, w: -1}
- {x: 1, y: 9.920811e-10, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
- {x: 1, y: 9.920882e-10, z: 0, w: -1}
- {x: 1, y: 0.000000008442665, z: 0, w: -1}
- {x: 1, y: 0.000000008442665, z: 0, w: -1}
- {x: 1, y: 0.000000008442665, z: 0, w: -1}
- {x: 1, y: 0.000000008442665, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
- {x: 1, y: 9.920846e-10, z: 0, w: -1}
m_Colors: []
m_UnwrapParameters:
m_HardAngle: 88
m_PackMargin: 20
m_AngleError: 8
m_AreaError: 15
m_PreserveMeshAssetOnDestroy: 0
assetGuid:
m_Mesh: {fileID: 1298248831}
m_VersionIndex: 2717
m_IsSelectable: 1
m_SelectedFaces:
m_SelectedEdges: []
m_SelectedVertices:
--- !u!4 &816739209
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 816739203}
serializedVersion: 2
m_LocalRotation: {x: 4.46762e-14, y: 9.764297e-22, z: 0.0000000218557, w: 1}
m_LocalPosition: {x: 50.142323, y: -0.19999486, z: 93.24683}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1570088162}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!43 &836708546
Mesh:
m_ObjectHideFlags: 0
@ -27955,171 +27586,6 @@ Mesh:
offset: 0
size: 0
path:
--- !u!43 &1298248831
Mesh:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: pb_Mesh-1484602(Clone)(Clone)(Clone)(Clone)
serializedVersion: 11
m_SubMeshes:
- serializedVersion: 2
firstByte: 0
indexCount: 48
topology: 0
baseVertex: 0
firstVertex: 0
vertexCount: 16
localAABB:
m_Center: {x: -4, y: 0.00000006922592, z: 5.5}
m_Extent: {x: 4, y: 0.000000018869994, z: 5.5}
m_Shapes:
vertices: []
shapes: []
channels: []
fullWeights: []
m_BindPose: []
m_BoneNameHashes:
m_RootBoneNameHash: 0
m_BonesAABB: []
m_VariableBoneCountWeights:
m_Data:
m_MeshCompression: 0
m_IsReadable: 1
m_KeepVertices: 1
m_KeepIndices: 1
m_IndexFormat: 0
m_IndexBuffer: 0000010002000100030002000400010000000400050001000600050004000600070005000800030001000800090003000a00050007000a000b0005000c00090008000c000d0009000b000c0008000b000e000c000a000e000b000a000f000e00
m_VertexData:
serializedVersion: 3
m_VertexCount: 16
m_Channels:
- stream: 0
offset: 0
format: 0
dimension: 3
- stream: 0
offset: 12
format: 0
dimension: 3
- stream: 0
offset: 24
format: 0
dimension: 4
- stream: 0
offset: 0
format: 0
dimension: 0
- stream: 0
offset: 40
format: 0
dimension: 2
- stream: 0
offset: 48
format: 0
dimension: 2
- stream: 0
offset: 56
format: 0
dimension: 4
- stream: 0
offset: 72
format: 0
dimension: 4
- stream: 0
offset: 0
format: 0
dimension: 0
- stream: 0
offset: 0
format: 0
dimension: 0
- stream: 0
offset: 0
format: 0
dimension: 0
- stream: 0
offset: 0
format: 0
dimension: 0
- stream: 0
offset: 0
format: 0
dimension: 0
- stream: 0
offset: 0
format: 0
dimension: 0
m_DataSize: 1408
_typelessdata: 000080bf4c0d9b330000802820f2e3310000803f9ed8c9a90000803f20f2e3b10000809c000080bf000080bf0300802890d7a33c6bc3213f0000000000000000000000000000000000000000000000000000000000000000000080bf750d9b330000504038002c320000803f63d38e300000803f38002cb22d71ff9b000080bf000080bf00005040d3b19b3e6dc3213f0000000000000000000000000000000000000000000000000000000000000000000000002ace8c330000000038002c320000803f63d38e300000803f38002cb22d71ff9b000080bff7bffaa5080ade1d0bd7a33c1824383f0000000000000000000000000000000000000000000000000000000000000000f82f16b2be5d7a3300006040600766320000803ff7d40e310000803f600766b2f7d40e18000080bff82f16b2000060402ae2a63e1824383f00000000000000000000000000000000000000000000000000000000000000000000a0c05b0f6533000080287a16a2b10000803f9ed8c9a90000803f7a16a23100000000000080bf0000a0c004008028d4d7a33c7881903e00000000000000000000000000000000000000000000000000000000000000000000a0c0ad0f6533000050407a16a2b10000803f9ed8c9a90000803f7a16a23100000000000080bf0000a0c000005040d8b19b3e7c81903e0000000000000000000000000000000000000000000000000000000000000000000000c1ee46583300008028e25988b00000803f987ec9a90000803fe259883000000000000080bf000000c103008028fbd7a33c18d7a33c0000000000000000000000000000000000000000000000000000000000000000000000c14647583300006040e35988b00000803f9224c9a90000803fe359883000000000000080bf000000c10000604030e2a63e66d7a33c0000000000000000000000000000000000000000000000000000000000000000000080bfc00dbb33000014413c94e8310000803f94b683b10000803f3c94e8b100000000000080bf000080bf00001441ec1c543f68c3213f0000000000000000000000000000000000000000000000000000000000000000f02f16b2272fbd3300001441c05988b00000803f0b17b2b10000803fc059883000000000000080bff12f16b200001441e71c543f1324383f0000000000000000000000000000000000000000000000000000000000000000000000c1eb238c33000014413e24be300000803f6619b2b00000803f3e24beb000000000000080bf000000c100001441ee1c543f0bd7a33c00000000000000000000000000000000000000000000000000000000000000000000a0c04410653300001441309488310000803f5555c9a90000803f309488b100000000000080bf0000a0c000001441e91c543f7581903e0000000000000000000000000000000000000000000000000000000000000000000080bfd60dbb3300003041e05988b00000803fdcb6cda90000803fe059883000000000000080bf000080bf000030411a467b3f6bc3213f0000000000000000000000000000000000000000000000000000000000000000f02f16b23e2fbd3300003041005a88b00000803f2549d2a90000803f005a883000000000000080bff02f16b20000304115467b3f1924383f00000000000000000000000000000000000000000000000000000000000000000000a0c070106533000030413c0b11b20000803f9224c9a90000803f3c0b113200000000000080bf0000a0c00000304117467b3f7d81903e0000000000000000000000000000000000000000000000000000000000000000000000c10348583300003041e05988b00000803f9224c9a90000803fe059883000000000000080bf000000c1000030411b467b3f93d7a33c0000000000000000000000000000000000000000000000000000000000000000
m_CompressedMesh:
m_Vertices:
m_NumItems: 0
m_Range: 0
m_Start: 0
m_Data:
m_BitSize: 0
m_UV:
m_NumItems: 0
m_Range: 0
m_Start: 0
m_Data:
m_BitSize: 0
m_Normals:
m_NumItems: 0
m_Range: 0
m_Start: 0
m_Data:
m_BitSize: 0
m_Tangents:
m_NumItems: 0
m_Range: 0
m_Start: 0
m_Data:
m_BitSize: 0
m_Weights:
m_NumItems: 0
m_Data:
m_BitSize: 0
m_NormalSigns:
m_NumItems: 0
m_Data:
m_BitSize: 0
m_TangentSigns:
m_NumItems: 0
m_Data:
m_BitSize: 0
m_FloatColors:
m_NumItems: 0
m_Range: 0
m_Start: 0
m_Data:
m_BitSize: 0
m_BoneIndices:
m_NumItems: 0
m_Data:
m_BitSize: 0
m_Triangles:
m_NumItems: 0
m_Data:
m_BitSize: 0
m_UVInfo: 0
m_LocalAABB:
m_Center: {x: -4, y: 0.00000006922592, z: 5.5}
m_Extent: {x: 4, y: 0.000000018869994, z: 5.5}
m_MeshUsageFlags: 0
m_CookingOptions: 30
m_BakedConvexCollisionMesh:
m_BakedTriangleCollisionMesh:
m_MeshMetrics[0]: 1
m_MeshMetrics[1]: 130.87378
m_MeshOptimizationFlags: 1
m_StreamData:
serializedVersion: 2
offset: 0
size: 0
path:
--- !u!43 &1301829606
Mesh:
m_ObjectHideFlags: 0
@ -28696,13 +28162,12 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1570088161}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalRotation: {x: -0, y: -0.70710677, z: -0, w: 0.7071069}
m_LocalPosition: {x: 127.3001, y: 0, z: -46.922195}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
- {fileID: 1585692761}
- {fileID: 816739209}
- {fileID: 229564239}
- {fileID: 2112080656}
- {fileID: 256900687}
@ -28713,7 +28178,7 @@ Transform:
- {fileID: 1572859618}
- {fileID: 2035206752}
m_Father: {fileID: 983597818}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: -90, z: 0}
--- !u!1 &1572859612
GameObject:
m_ObjectHideFlags: 0
@ -29038,8 +28503,8 @@ MonoBehaviour:
m_EditorClassIdentifier:
sceneName:
rid: 2091308001305035733
size: {x: 39.6, y: 24, z: 236.6}
position: {x: 42.26, y: -15.16, z: 0}
size: {x: 256, y: 10, z: 32}
position: {x: 118.65, y: -9.7, z: 0}
lod: -1
references:
version: 2
@ -29191,7 +28656,7 @@ MeshRenderer:
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: bdf4c237258c928418073618bc6027f7, type: 2}
- {fileID: 2100000, guid: c04290dc80d5b284184108a40e69174d, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
@ -29325,13 +28790,13 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1998231464}
serializedVersion: 2
m_LocalRotation: {x: 4.46762e-14, y: 9.764297e-22, z: 0.0000000218557, w: 1}
m_LocalPosition: {x: 50.142323, y: -0.19999486, z: 93.24683}
m_LocalRotation: {x: -0.4801185, y: -0.00000017881392, z: -0.00000004470348, w: 0.87720364}
m_LocalPosition: {x: 50.143, y: -7.793, z: 97.313}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 1570088162}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: -57.386, y: 0, z: 0}
--- !u!1 &2035206746
GameObject:
m_ObjectHideFlags: 0
@ -29974,3 +29439,4 @@ SceneRoots:
- {fileID: 1018090778}
- {fileID: 2056664553}
- {fileID: 777733254}
- {fileID: 633426705}

View File

@ -239834,6 +239834,72 @@ Transform:
m_CorrespondingSourceObject: {fileID: 6612940981151611605, guid: 78aabc57e7d92964faf2a414940db9dd, type: 3}
m_PrefabInstance: {fileID: 1471749853}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1472086582
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 1899637053}
m_Modifications:
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalPosition.x
value: -224.74545
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalPosition.y
value: 62.292202
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalPosition.z
value: -26.30304
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalRotation.w
value: 0.0000016391277
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalRotation.x
value: -0.0000016391277
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalRotation.y
value: -0.7071068
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalRotation.z
value: -0.7071068
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -90
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: -180
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_Name
value: nagoyacitybus
objectReference: {fileID: 0}
- target: {fileID: 919132149155446097, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
propertyPath: m_StaticEditorFlags
value: 2147483647
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
--- !u!4 &1472086583 stripped
Transform:
m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 28f837012cea6eb479ce3ce1a4e9c725, type: 3}
m_PrefabInstance: {fileID: 1472086582}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1472092770
PrefabInstance:
m_ObjectHideFlags: 0
@ -311357,6 +311423,7 @@ Transform:
- {fileID: 1029339355}
- {fileID: 91029535}
- {fileID: 2019221460}
- {fileID: 1472086583}
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1001 &1900132551

View File

@ -687391,116 +687391,6 @@ Transform:
m_CorrespondingSourceObject: {fileID: 3279702672603962812, guid: 7962f5c261b3c5e46aa6ca10652f6a7e, type: 3}
m_PrefabInstance: {fileID: 119483117}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &119879306
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 249190437}
m_Modifications:
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 53.628002
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.y
value: 7
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: -61.724
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.w
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 180
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 262
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalScale.x
value: -1
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 25.33
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: 2.8150003
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.w
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: -1
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 180
objectReference: {fileID: 0}
- target: {fileID: 6784385730395736339, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_Name
value: seats_1
objectReference: {fileID: 0}
- target: {fileID: 7877407966801065544, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
--- !u!4 &119879307 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
m_PrefabInstance: {fileID: 119879306}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &120293859
PrefabInstance:
m_ObjectHideFlags: 0
@ -710615,10 +710505,6 @@ Transform:
- {fileID: 215876216}
- {fileID: 1572554008}
- {fileID: 448995026}
- {fileID: 1498511028}
- {fileID: 119879307}
- {fileID: 1378422558}
- {fileID: 1435561480}
- {fileID: 1386807656}
- {fileID: 922031688}
- {fileID: 2120374899}
@ -712107,7 +711993,6 @@ Transform:
- {fileID: 2114413324}
- {fileID: 568431440}
- {fileID: 186578476}
- {fileID: 279476253}
- {fileID: 1858786888}
- {fileID: 1351717562}
- {fileID: 23650483}
@ -712413,6 +712298,7 @@ Transform:
- {fileID: 10264284}
- {fileID: 2104137335}
- {fileID: 305395215}
- {fileID: 1241313687}
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1001 &249234506
@ -717618,76 +717504,6 @@ Transform:
m_CorrespondingSourceObject: {fileID: 1387476619567384428, guid: 87fe4b4ce2a2dd9408e4370fa61afa52, type: 3}
m_PrefabInstance: {fileID: 279358134}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &279476252
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 249190437}
m_Modifications:
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_RootOrder
value: 3
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalPosition.x
value: -64.318
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalPosition.y
value: 1.035
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalPosition.z
value: -53.7
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalRotation.w
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalRotation.x
value: -0.5
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalRotation.y
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalRotation.z
value: 0.5
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: -90
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 90
objectReference: {fileID: 0}
- target: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 1521629952239437153, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_Name
value: Case_1 (6)
objectReference: {fileID: 0}
- target: {fileID: 3291720062671811834, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
propertyPath: m_LocalPosition.y
value: 0.41
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
--- !u!4 &279476253 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 571713811043988396, guid: ecf210ca03ff815418bb5b91b8af37d4, type: 3}
m_PrefabInstance: {fileID: 279476252}
m_PrefabAsset: {fileID: 0}
--- !u!1 &279923202 stripped
GameObject:
m_CorrespondingSourceObject: {fileID: 1460892508476470906, guid: f2250600845da994c85a0c90279ce9e4, type: 3}
@ -866971,6 +866787,111 @@ Transform:
m_CorrespondingSourceObject: {fileID: 1387476619567384428, guid: 87fe4b4ce2a2dd9408e4370fa61afa52, type: 3}
m_PrefabInstance: {fileID: 1240934447}
m_PrefabAsset: {fileID: 0}
--- !u!1 &1241313686
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1241313687}
- component: {fileID: 1241313690}
- component: {fileID: 1241313689}
- component: {fileID: 1241313688}
m_Layer: 0
m_Name: Cube (1)
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 2147483647
m_IsActive: 1
--- !u!4 &1241313687
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1241313686}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 43.36, y: -8.65, z: -0.63}
m_LocalScale: {x: 3.700001, y: 3.7, z: 3.700001}
m_ConstrainProportionsScale: 1
m_Children: []
m_Father: {fileID: 249190437}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &1241313688
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1241313686}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1, y: 1, z: 1}
m_Center: {x: 0, y: 0, z: 0}
--- !u!23 &1241313689
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1241313686}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: c26a0a7046add294f88e8fb6f1263cba, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!33 &1241313690
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1241313686}
m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
--- !u!1001 &1241822965
PrefabInstance:
m_ObjectHideFlags: 0
@ -889137,104 +889058,6 @@ Transform:
m_CorrespondingSourceObject: {fileID: 5409390725635348011, guid: 67c6ca1e3101c704584a9f8aaf11afe9, type: 3}
m_PrefabInstance: {fileID: 1377795292}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1378422557
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 249190437}
m_Modifications:
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 53.628002
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.y
value: 7
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: -61.724
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.w
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 180
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 263
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalScale.x
value: -1
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 24.6524
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: 1.0497
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 6784385730395736339, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_Name
value: seats_1
objectReference: {fileID: 0}
- target: {fileID: 7877407966801065544, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
--- !u!4 &1378422558 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
m_PrefabInstance: {fileID: 1378422557}
m_PrefabAsset: {fileID: 0}
--- !u!1 &1379264058
GameObject:
m_ObjectHideFlags: 0
@ -899303,116 +899126,6 @@ Transform:
m_CorrespondingSourceObject: {fileID: 1387476619567384428, guid: 87fe4b4ce2a2dd9408e4370fa61afa52, type: 3}
m_PrefabInstance: {fileID: 1435080815}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1435561479
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 249190437}
m_Modifications:
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 53.628002
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.y
value: 7
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: -61.724
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.w
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 180
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 264
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalScale.x
value: -1
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 25.33
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.y
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: 1.05
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.w
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: -1
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 180
objectReference: {fileID: 0}
- target: {fileID: 6784385730395736339, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_Name
value: seats_1
objectReference: {fileID: 0}
- target: {fileID: 7877407966801065544, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
--- !u!4 &1435561480 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
m_PrefabInstance: {fileID: 1435561479}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1435717309
PrefabInstance:
m_ObjectHideFlags: 0
@ -908040,104 +907753,6 @@ Transform:
m_CorrespondingSourceObject: {fileID: 4305747448382592539, guid: 85aef18c1e4f86e4fa2e29a4ad9b182c, type: 3}
m_PrefabInstance: {fileID: 1498491822}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1498511027
PrefabInstance:
m_ObjectHideFlags: 0
serializedVersion: 2
m_Modification:
serializedVersion: 3
m_TransformParent: {fileID: 249190437}
m_Modifications:
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 53.628002
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.y
value: 7
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: -61.724
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.w
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: 1
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.y
value: 180
objectReference: {fileID: 0}
- target: {fileID: 3112885148677581476, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalEulerAnglesHint.z
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 261
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalScale.x
value: -1
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.x
value: 24.6524
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalPosition.z
value: 2.8147
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.x
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.y
value: -0
objectReference: {fileID: 0}
- target: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_LocalRotation.z
value: -0
objectReference: {fileID: 0}
- target: {fileID: 6784385730395736339, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_Name
value: seats_1
objectReference: {fileID: 0}
- target: {fileID: 7877407966801065544, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
propertyPath: m_RootOrder
value: 189
objectReference: {fileID: 0}
m_RemovedComponents: []
m_RemovedGameObjects: []
m_AddedGameObjects: []
m_AddedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
--- !u!4 &1498511028 stripped
Transform:
m_CorrespondingSourceObject: {fileID: 4441342115693852791, guid: 1bcda19ad6098ac4d9a91b035308d11d, type: 3}
m_PrefabInstance: {fileID: 1498511027}
m_PrefabAsset: {fileID: 0}
--- !u!1001 &1499899806
PrefabInstance:
m_ObjectHideFlags: 0

View File

@ -24439,6 +24439,111 @@ Light:
m_UseViewFrustumForShadowCasterCull: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!1 &593365506
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 593365507}
- component: {fileID: 593365510}
- component: {fileID: 593365509}
- component: {fileID: 593365508}
m_Layer: 0
m_Name: Cube
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 2147483647
m_IsActive: 1
--- !u!4 &593365507
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 593365506}
serializedVersion: 2
m_LocalRotation: {x: -0, y: 0.7071065, z: -0, w: 0.7071072}
m_LocalPosition: {x: -0.00006866455, y: -7, z: 80}
m_LocalScale: {x: 3.7, y: 3.7, z: 3.7}
m_ConstrainProportionsScale: 1
m_Children: []
m_Father: {fileID: 1390587612}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!65 &593365508
BoxCollider:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 593365506}
m_Material: {fileID: 0}
m_IncludeLayers:
serializedVersion: 2
m_Bits: 0
m_ExcludeLayers:
serializedVersion: 2
m_Bits: 0
m_LayerOverridePriority: 0
m_IsTrigger: 0
m_ProvidesContacts: 0
m_Enabled: 1
serializedVersion: 3
m_Size: {x: 1, y: 1, z: 1}
m_Center: {x: 0, y: 0, z: 0}
--- !u!23 &593365509
MeshRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 593365506}
m_Enabled: 1
m_CastShadows: 1
m_ReceiveShadows: 1
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 2
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 52ec67dd6616ab3448946b8bf747400d, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 3
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_AdditionalVertexStreams: {fileID: 0}
--- !u!33 &593365510
MeshFilter:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 593365506}
m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0}
--- !u!1 &597482173
GameObject:
m_ObjectHideFlags: 0
@ -56004,8 +56109,8 @@ Transform:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1390587611}
serializedVersion: 2
m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
m_LocalPosition: {x: 47.25, y: 5, z: 16}
m_LocalRotation: {x: -0, y: -0.7071065, z: -0, w: 0.7071072}
m_LocalPosition: {x: 111, y: 5, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children:
@ -57047,8 +57152,9 @@ Transform:
- {fileID: 1772350534}
- {fileID: 1115643847}
- {fileID: 1004572373}
- {fileID: 593365507}
m_Father: {fileID: 0}
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_LocalEulerAnglesHint: {x: 0, y: -90, z: 0}
--- !u!1001 &1392604917
PrefabInstance:
m_ObjectHideFlags: 0

View File

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

View File

@ -0,0 +1,137 @@
%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: Nagoya
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords:
- _EMISSION
- _OCCLUSIONMAP
m_InvalidKeywords: []
m_LightmapFlags: 1
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap:
RenderType: Opaque
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 2800000, guid: a5a5565cdd8df1c428d88b38bf687692, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _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: 2800000, guid: d37edc1d4bf506f42b8951a4611c45d0, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _MainTex:
m_Texture: {fileID: 2800000, guid: a5a5565cdd8df1c428d88b38bf687692, 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: 2800000, guid: 12c99eec9056f1e4b96c2b523b58c85b, type: 3}
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}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 1
- _Glossiness: 0.64705884
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0.64705884
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _UVSec: 0
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 1, g: 1, b: 1, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
--- !u!114 &362782592031615727
MonoBehaviour:
m_ObjectHideFlags: 11
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: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 7

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 739aa0b2ec6c8944da6c5594ff4afcb1
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 264 KiB

View File

@ -0,0 +1,140 @@
fileFormatVersion: 2
guid: 12c99eec9056f1e4b96c2b523b58c85b
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 1
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 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: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
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: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 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
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 KiB

View File

@ -0,0 +1,140 @@
fileFormatVersion: 2
guid: d37edc1d4bf506f42b8951a4611c45d0
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 1
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 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: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
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: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 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
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -0,0 +1,140 @@
fileFormatVersion: 2
guid: a5a5565cdd8df1c428d88b38bf687692
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 1
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 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: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
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: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 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
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,114 @@
fileFormatVersion: 2
guid: 28f837012cea6eb479ce3ce1a4e9c725
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: Nagoya
second: {fileID: 2100000, guid: 739aa0b2ec6c8944da6c5594ff4afcb1, type: 2}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 1
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

View File

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

Binary file not shown.

View File

@ -0,0 +1,114 @@
fileFormatVersion: 2
guid: bfaf50fe3d6e63141946d6385de31004
ModelImporter:
serializedVersion: 22200
internalIDToNameTable: []
externalObjects:
- first:
type: UnityEngine:Material
assembly: UnityEngine.CoreModule
name: low
second: {fileID: 2100000, guid: 65b693bf64c18bf438be4cb1f863f234, type: 2}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 0
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 1
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 1
importPhysicalCameras: 1
importVisibility: 1
importBlendShapes: 1
importCameras: 1
importLights: 1
nodeNameCollisionStrategy: 1
fileIdsGeneration: 2
swapUVChannels: 0
generateSecondaryUV: 0
useFileUnits: 1
keepQuads: 0
weldVertices: 1
bakeAxisConversion: 0
preserveHierarchy: 0
skinWeightsMode: 0
maxBonesPerVertex: 4
minBoneWeight: 0.001
optimizeBones: 1
meshOptimizationFlags: -1
indexFormat: 0
secondaryUVAngleDistortion: 8
secondaryUVAreaDistortion: 15.000001
secondaryUVHardAngle: 88
secondaryUVMarginMethod: 1
secondaryUVMinLightmapResolution: 40
secondaryUVMinObjectScale: 1
secondaryUVPackMargin: 4
useFileScale: 1
strictVertexDataChecks: 0
tangentSpace:
normalSmoothAngle: 60
normalImportMode: 0
tangentImportMode: 3
normalCalculationMode: 4
legacyComputeAllNormalsFromSmoothingGroupsWhenMeshHasBlendShapes: 0
blendShapeNormalImportMode: 1
normalSmoothingSource: 0
referencedClips: []
importAnimation: 1
humanDescription:
serializedVersion: 3
human: []
skeleton: []
armTwist: 0.5
foreArmTwist: 0.5
upperLegTwist: 0.5
legTwist: 0.5
armStretch: 0.05
legStretch: 0.05
feetSpacing: 0
globalScale: 1
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
importBlendShapeDeformPercent: 1
remapMaterialsIfMaterialImportModeIsNone: 0
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 73 KiB

View File

@ -0,0 +1,140 @@
fileFormatVersion: 2
guid: 39fb55b8414043b44869044ec788bed0
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
mipmaps:
mipMapMode: 0
enableMipMap: 1
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 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: 0
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: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 0
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 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
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 MiB

View File

@ -0,0 +1,140 @@
fileFormatVersion: 2
guid: dac88ff57837fb84bb81ac3c183bab59
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 13
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
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 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: 0
nPOTScale: 0
lightmap: 0
compressionQuality: 50
spriteMode: 1
spriteExtrude: 1
spriteMeshType: 0
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 512
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
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 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
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Android
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID: 5e97eb03825dee720800000000000000
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,135 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &-3433978459788158432
MonoBehaviour:
m_ObjectHideFlags: 11
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: d0353a89b1f911e48b9e16bdc9f2e058, type: 3}
m_Name:
m_EditorClassIdentifier:
version: 7
--- !u!21 &2100000
Material:
serializedVersion: 8
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: low
m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3}
m_Parent: {fileID: 0}
m_ModifiedSerializedProperties: 0
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap:
RenderType: Opaque
disabledShaderPasses: []
m_LockedProperties:
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 2800000, guid: dac88ff57837fb84bb81ac3c183bab59, type: 3}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _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: dac88ff57837fb84bb81ac3c183bab59, 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}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaClip: 0
- _AlphaToMask: 0
- _Blend: 0
- _BlendModePreserveSpecular: 1
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _DstBlendAlpha: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossyReflections: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _QueueOffset: 0
- _ReceiveShadows: 1
- _Smoothness: 0
- _SmoothnessTextureChannel: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _SrcBlendAlpha: 1
- _Surface: 0
- _UVSec: 0
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- _BaseColor: {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}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 65b693bf64c18bf438be4cb1f863f234
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000
userData:
assetBundleName:
assetBundleVariant:

View File

@ -15,6 +15,9 @@ namespace BITKit
/// </summary>
public interface IRuntimeItemContainer:IBinarySerialize
{
public bool AllowAdd { get; set; }
public bool AllowRemove { get; set; }
public ValidHandle IsBusy { get; }
/// <summary>
/// 物品容器的唯一Id
@ -96,6 +99,8 @@ namespace BITKit
throw new NotImplementedException();
}
public bool AllowAdd { get; set; }
public bool AllowRemove { get; set; }
public ValidHandle IsBusy { get; } = new();
public int Id { get; set; }
public IRuntimeItem[] GetItems()=>Items.Values.ToArray();

View File

@ -4,6 +4,7 @@ using UnityEngine;
using UnityEngine.InputSystem;
using System;
using System.Linq;
using UnityEngine.InputSystem.Controls;
namespace BITKit
{
@ -11,7 +12,7 @@ namespace BITKit
{
public static bool JustPressed(this InputAction.CallbackContext self)
{
return self.interaction is null && self.started;
return self is { started:true, control: ButtonControl { wasPressedThisFrame: true , isPressed:true} };
}
public static InputAction RegisterCallback(this InputAction self, Action<InputAction.CallbackContext> action)
{

View File

@ -134,7 +134,7 @@
{
"type": "UnityEngine.Vector3, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",
"key": "ShapeBuilder.LastSize",
"value": "{\"m_Value\":{\"x\":-0.5000000596046448,\"y\":0.0,\"z\":-0.5}}"
"value": "{\"m_Value\":{\"x\":4.405368804931641,\"y\":0.0,\"z\":6.674064636230469}}"
},
{
"type": "UnityEngine.Quaternion, UnityEngine.CoreModule, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null",