Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
|
3f942c3675 | 3 months ago |
|
b90dffb79d | 3 months ago |
|
c10acc3d52 | 4 months ago |
|
db60d56e47 | 5 months ago |
|
1ece225ff7 | 6 months ago |
78 changed files with 19237 additions and 162491 deletions
@ -0,0 +1,81 @@ |
|||||||
|
using UnityEngine; |
||||||
|
using System.Collections; |
||||||
|
using UnityEngine.Rendering.Universal; |
||||||
|
|
||||||
|
public class LoadShader : MonoBehaviour |
||||||
|
{ |
||||||
|
private float snakeTime = 0.01f; |
||||||
|
void Start() |
||||||
|
{ |
||||||
|
//#if !UNITY_WEBGL || UNITY_EDITOR |
||||||
|
SetShader(transform); |
||||||
|
setgameobj(); |
||||||
|
//#endif |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
void setgameobj() |
||||||
|
{ |
||||||
|
foreach (Transform item in transform) |
||||||
|
{ |
||||||
|
if (item.gameObject.activeSelf) |
||||||
|
{ |
||||||
|
StartCoroutine(setGameObj(item.gameObject)); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
IEnumerator setGameObj(GameObject go) |
||||||
|
{ |
||||||
|
go.SetActive(false); |
||||||
|
yield return new WaitForSeconds(snakeTime); |
||||||
|
go.SetActive(true); |
||||||
|
} |
||||||
|
public void SetShader(Transform child) |
||||||
|
{ |
||||||
|
if (child.childCount > 0) |
||||||
|
{ |
||||||
|
for (int i = 0; i < child.childCount; i++) |
||||||
|
{ |
||||||
|
SetShader(child.GetChild(i)); |
||||||
|
} |
||||||
|
} |
||||||
|
else |
||||||
|
{ |
||||||
|
if (child.GetComponent<Renderer>()) |
||||||
|
{ |
||||||
|
var r = child.GetComponent<Renderer>(); |
||||||
|
foreach (var material in r.materials) |
||||||
|
{ |
||||||
|
//Debug.Log(material.shader.name); |
||||||
|
if (material.shader.name == "Universal Render Pipeline/Lit") |
||||||
|
{ |
||||||
|
StartCoroutine(setshader(material)); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
if (child.GetComponent<DecalProjector>()) |
||||||
|
{ |
||||||
|
var r = child.GetComponent<DecalProjector>().material; |
||||||
|
if (r.shader.name == "Shader Graphs/Decal_Graph2") |
||||||
|
{ |
||||||
|
StartCoroutine(setshader1(r)); |
||||||
|
//Debug.Log(r.name); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
IEnumerator setshader(Material m) |
||||||
|
{ |
||||||
|
m.shader = null; |
||||||
|
yield return new WaitForSeconds(snakeTime); |
||||||
|
m.shader = Shader.Find("Universal Render Pipeline/Lit"); |
||||||
|
} |
||||||
|
|
||||||
|
IEnumerator setshader1(Material m) |
||||||
|
{ |
||||||
|
m.shader = null; |
||||||
|
yield return new WaitForSeconds(snakeTime); |
||||||
|
m.shader = Shader.Find("Shader Graphs/Decal_Graph2"); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,2 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: d0a1e8ecdf25070429134fc27e362186 |
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,8 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 396386bb2f8abf6438effcfbde4fd6e2 |
|
||||||
NativeFormatImporter: |
|
||||||
externalObjects: {} |
|
||||||
mainObjectFileID: 23800000 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Binary file not shown.
@ -1,8 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: e261a1004e759604aab78bf73a7c4f49 |
|
||||||
NativeFormatImporter: |
|
||||||
externalObjects: {} |
|
||||||
mainObjectFileID: 23800000 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
@ -1,123 +0,0 @@ |
|||||||
%YAML 1.1 |
|
||||||
%TAG !u! tag:unity3d.com,2011: |
|
||||||
--- !u!1 &4552908051263460107 |
|
||||||
GameObject: |
|
||||||
m_ObjectHideFlags: 0 |
|
||||||
m_CorrespondingSourceObject: {fileID: 0} |
|
||||||
m_PrefabInstance: {fileID: 0} |
|
||||||
m_PrefabAsset: {fileID: 0} |
|
||||||
serializedVersion: 6 |
|
||||||
m_Component: |
|
||||||
- component: {fileID: 5986399401461327749} |
|
||||||
- component: {fileID: 698570993319314408} |
|
||||||
- component: {fileID: 5754363069147616840} |
|
||||||
m_Layer: 0 |
|
||||||
m_Name: Directional Light |
|
||||||
m_TagString: Untagged |
|
||||||
m_Icon: {fileID: 0} |
|
||||||
m_NavMeshLayer: 0 |
|
||||||
m_StaticEditorFlags: 0 |
|
||||||
m_IsActive: 1 |
|
||||||
--- !u!4 &5986399401461327749 |
|
||||||
Transform: |
|
||||||
m_ObjectHideFlags: 0 |
|
||||||
m_CorrespondingSourceObject: {fileID: 0} |
|
||||||
m_PrefabInstance: {fileID: 0} |
|
||||||
m_PrefabAsset: {fileID: 0} |
|
||||||
m_GameObject: {fileID: 4552908051263460107} |
|
||||||
serializedVersion: 2 |
|
||||||
m_LocalRotation: {x: 0.5754419, y: -0.5740763, z: 0.20944375, w: 0.54354066} |
|
||||||
m_LocalPosition: {x: -3346.531, y: 3921.7104, z: -3024.347} |
|
||||||
m_LocalScale: {x: 1, y: 1, z: 1} |
|
||||||
m_ConstrainProportionsScale: 0 |
|
||||||
m_Children: [] |
|
||||||
m_Father: {fileID: 0} |
|
||||||
m_LocalEulerAnglesHint: {x: 60, y: -130, z: -60} |
|
||||||
--- !u!108 &698570993319314408 |
|
||||||
Light: |
|
||||||
m_ObjectHideFlags: 0 |
|
||||||
m_CorrespondingSourceObject: {fileID: 0} |
|
||||||
m_PrefabInstance: {fileID: 0} |
|
||||||
m_PrefabAsset: {fileID: 0} |
|
||||||
m_GameObject: {fileID: 4552908051263460107} |
|
||||||
m_Enabled: 1 |
|
||||||
serializedVersion: 11 |
|
||||||
m_Type: 1 |
|
||||||
m_Color: {r: 1, g: 1, b: 1, a: 1} |
|
||||||
m_Intensity: 3 |
|
||||||
m_Range: 10 |
|
||||||
m_SpotAngle: 30 |
|
||||||
m_InnerSpotAngle: 21.80208 |
|
||||||
m_CookieSize: 10 |
|
||||||
m_Shadows: |
|
||||||
m_Type: 2 |
|
||||||
m_Resolution: -1 |
|
||||||
m_CustomResolution: -1 |
|
||||||
m_Strength: 0.5 |
|
||||||
m_Bias: 0.05 |
|
||||||
m_NormalBias: 0.4 |
|
||||||
m_NearPlane: 0.2 |
|
||||||
m_CullingMatrixOverride: |
|
||||||
e00: 1 |
|
||||||
e01: 0 |
|
||||||
e02: 0 |
|
||||||
e03: 0 |
|
||||||
e10: 0 |
|
||||||
e11: 1 |
|
||||||
e12: 0 |
|
||||||
e13: 0 |
|
||||||
e20: 0 |
|
||||||
e21: 0 |
|
||||||
e22: 1 |
|
||||||
e23: 0 |
|
||||||
e30: 0 |
|
||||||
e31: 0 |
|
||||||
e32: 0 |
|
||||||
e33: 1 |
|
||||||
m_UseCullingMatrixOverride: 0 |
|
||||||
m_Cookie: {fileID: 0} |
|
||||||
m_DrawHalo: 0 |
|
||||||
m_Flare: {fileID: 0} |
|
||||||
m_RenderMode: 0 |
|
||||||
m_CullingMask: |
|
||||||
serializedVersion: 2 |
|
||||||
m_Bits: 4294967295 |
|
||||||
m_RenderingLayerMask: 1 |
|
||||||
m_Lightmapping: 4 |
|
||||||
m_LightShadowCasterMode: 0 |
|
||||||
m_AreaSize: {x: 1, y: 1} |
|
||||||
m_BounceIntensity: 3 |
|
||||||
m_ColorTemperature: 6800 |
|
||||||
m_UseColorTemperature: 1 |
|
||||||
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} |
|
||||||
m_UseBoundingSphereOverride: 0 |
|
||||||
m_UseViewFrustumForShadowCasterCull: 1 |
|
||||||
m_ForceVisible: 0 |
|
||||||
m_ShadowRadius: 0 |
|
||||||
m_ShadowAngle: 0 |
|
||||||
m_LightUnit: 1 |
|
||||||
m_LuxAtDistance: 1 |
|
||||||
m_EnableSpotReflector: 1 |
|
||||||
--- !u!114 &5754363069147616840 |
|
||||||
MonoBehaviour: |
|
||||||
m_ObjectHideFlags: 0 |
|
||||||
m_CorrespondingSourceObject: {fileID: 0} |
|
||||||
m_PrefabInstance: {fileID: 0} |
|
||||||
m_PrefabAsset: {fileID: 0} |
|
||||||
m_GameObject: {fileID: 4552908051263460107} |
|
||||||
m_Enabled: 1 |
|
||||||
m_EditorHideFlags: 0 |
|
||||||
m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} |
|
||||||
m_Name: |
|
||||||
m_EditorClassIdentifier: |
|
||||||
m_Version: 3 |
|
||||||
m_UsePipelineSettings: 1 |
|
||||||
m_AdditionalLightsShadowResolutionTier: 2 |
|
||||||
m_LightLayerMask: 1 |
|
||||||
m_RenderingLayers: 1 |
|
||||||
m_CustomShadowLayers: 0 |
|
||||||
m_ShadowLayerMask: 1 |
|
||||||
m_ShadowRenderingLayers: 1 |
|
||||||
m_LightCookieSize: {x: 1, y: 1} |
|
||||||
m_LightCookieOffset: {x: 0, y: 0} |
|
||||||
m_SoftShadowQuality: 0 |
|
@ -1,7 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 7f7a3a5714905034f81c402e6e1a2adc |
|
||||||
PrefabImporter: |
|
||||||
externalObjects: {} |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 66ed6d320d45c0d48bab53a029768fd8 |
|
||||||
PrefabImporter: |
|
||||||
externalObjects: {} |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
@ -1,5 +1,5 @@ |
|||||||
fileFormatVersion: 2 |
fileFormatVersion: 2 |
||||||
guid: 86e8b1f8646d98544864f46f4cfbaf57 |
guid: 5f805330f1f78ad4e9712a7471b7c3a0 |
||||||
folderAsset: yes |
folderAsset: yes |
||||||
DefaultImporter: |
DefaultImporter: |
||||||
externalObjects: {} |
externalObjects: {} |
@ -0,0 +1,564 @@ |
|||||||
|
%YAML 1.1 |
||||||
|
%TAG !u! tag:unity3d.com,2011: |
||||||
|
--- !u!29 &1 |
||||||
|
OcclusionCullingSettings: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
serializedVersion: 2 |
||||||
|
m_OcclusionBakeSettings: |
||||||
|
smallestOccluder: 5 |
||||||
|
smallestHole: 0.25 |
||||||
|
backfaceThreshold: 100 |
||||||
|
m_SceneGUID: 00000000000000000000000000000000 |
||||||
|
m_OcclusionCullingData: {fileID: 0} |
||||||
|
--- !u!104 &2 |
||||||
|
RenderSettings: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
serializedVersion: 10 |
||||||
|
m_Fog: 0 |
||||||
|
m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} |
||||||
|
m_FogMode: 3 |
||||||
|
m_FogDensity: 0.01 |
||||||
|
m_LinearFogStart: 0 |
||||||
|
m_LinearFogEnd: 300 |
||||||
|
m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} |
||||||
|
m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} |
||||||
|
m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} |
||||||
|
m_AmbientIntensity: 1 |
||||||
|
m_AmbientMode: 0 |
||||||
|
m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} |
||||||
|
m_SkyboxMaterial: {fileID: 2100000, guid: 4e094c1b3935c48498317958bcb3eee0, type: 2} |
||||||
|
m_HaloStrength: 0.5 |
||||||
|
m_FlareStrength: 1 |
||||||
|
m_FlareFadeSpeed: 3 |
||||||
|
m_HaloTexture: {fileID: 0} |
||||||
|
m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} |
||||||
|
m_DefaultReflectionMode: 0 |
||||||
|
m_DefaultReflectionResolution: 128 |
||||||
|
m_ReflectionBounces: 1 |
||||||
|
m_ReflectionIntensity: 1 |
||||||
|
m_CustomReflection: {fileID: 0} |
||||||
|
m_Sun: {fileID: 0} |
||||||
|
m_UseRadianceAmbientProbe: 0 |
||||||
|
--- !u!157 &3 |
||||||
|
LightmapSettings: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
serializedVersion: 12 |
||||||
|
m_GISettings: |
||||||
|
serializedVersion: 2 |
||||||
|
m_BounceScale: 1 |
||||||
|
m_IndirectOutputScale: 1 |
||||||
|
m_AlbedoBoost: 1 |
||||||
|
m_EnvironmentLightingMode: 0 |
||||||
|
m_EnableBakedLightmaps: 1 |
||||||
|
m_EnableRealtimeLightmaps: 0 |
||||||
|
m_LightmapEditorSettings: |
||||||
|
serializedVersion: 12 |
||||||
|
m_Resolution: 2 |
||||||
|
m_BakeResolution: 40 |
||||||
|
m_AtlasSize: 1024 |
||||||
|
m_AO: 0 |
||||||
|
m_AOMaxDistance: 1 |
||||||
|
m_CompAOExponent: 1 |
||||||
|
m_CompAOExponentDirect: 0 |
||||||
|
m_ExtractAmbientOcclusion: 0 |
||||||
|
m_Padding: 2 |
||||||
|
m_LightmapParameters: {fileID: 0} |
||||||
|
m_LightmapsBakeMode: 1 |
||||||
|
m_TextureCompression: 1 |
||||||
|
m_ReflectionCompression: 2 |
||||||
|
m_MixedBakeMode: 2 |
||||||
|
m_BakeBackend: 1 |
||||||
|
m_PVRSampling: 1 |
||||||
|
m_PVRDirectSampleCount: 32 |
||||||
|
m_PVRSampleCount: 512 |
||||||
|
m_PVRBounces: 2 |
||||||
|
m_PVREnvironmentSampleCount: 256 |
||||||
|
m_PVREnvironmentReferencePointCount: 2048 |
||||||
|
m_PVRFilteringMode: 1 |
||||||
|
m_PVRDenoiserTypeDirect: 1 |
||||||
|
m_PVRDenoiserTypeIndirect: 1 |
||||||
|
m_PVRDenoiserTypeAO: 1 |
||||||
|
m_PVRFilterTypeDirect: 0 |
||||||
|
m_PVRFilterTypeIndirect: 0 |
||||||
|
m_PVRFilterTypeAO: 0 |
||||||
|
m_PVREnvironmentMIS: 1 |
||||||
|
m_PVRCulling: 1 |
||||||
|
m_PVRFilteringGaussRadiusDirect: 1 |
||||||
|
m_PVRFilteringGaussRadiusIndirect: 5 |
||||||
|
m_PVRFilteringGaussRadiusAO: 2 |
||||||
|
m_PVRFilteringAtrousPositionSigmaDirect: 0.5 |
||||||
|
m_PVRFilteringAtrousPositionSigmaIndirect: 2 |
||||||
|
m_PVRFilteringAtrousPositionSigmaAO: 1 |
||||||
|
m_ExportTrainingData: 0 |
||||||
|
m_TrainingDataDestination: TrainingData |
||||||
|
m_LightProbeSampleCountMultiplier: 4 |
||||||
|
m_LightingDataAsset: {fileID: 20201, guid: 0000000000000000f000000000000000, type: 0} |
||||||
|
m_LightingSettings: {fileID: 4890085278179872738, guid: fccb15998aa85b441b8811d1e641e7ff, type: 2} |
||||||
|
--- !u!196 &4 |
||||||
|
NavMeshSettings: |
||||||
|
serializedVersion: 2 |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_BuildSettings: |
||||||
|
serializedVersion: 3 |
||||||
|
agentTypeID: 0 |
||||||
|
agentRadius: 0.5 |
||||||
|
agentHeight: 2 |
||||||
|
agentSlope: 45 |
||||||
|
agentClimb: 0.4 |
||||||
|
ledgeDropHeight: 0 |
||||||
|
maxJumpAcrossDistance: 0 |
||||||
|
minRegionArea: 2 |
||||||
|
manualCellSize: 0 |
||||||
|
cellSize: 0.16666667 |
||||||
|
manualTileSize: 0 |
||||||
|
tileSize: 256 |
||||||
|
buildHeightMesh: 0 |
||||||
|
maxJobWorkers: 0 |
||||||
|
preserveTilesOutsideBounds: 0 |
||||||
|
debug: |
||||||
|
m_Flags: 0 |
||||||
|
m_NavMeshData: {fileID: 0} |
||||||
|
--- !u!1 &330585543 |
||||||
|
GameObject: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
serializedVersion: 6 |
||||||
|
m_Component: |
||||||
|
- component: {fileID: 330585546} |
||||||
|
- component: {fileID: 330585545} |
||||||
|
- component: {fileID: 330585544} |
||||||
|
- component: {fileID: 330585547} |
||||||
|
m_Layer: 0 |
||||||
|
m_Name: Main Camera |
||||||
|
m_TagString: MainCamera |
||||||
|
m_Icon: {fileID: 0} |
||||||
|
m_NavMeshLayer: 0 |
||||||
|
m_StaticEditorFlags: 0 |
||||||
|
m_IsActive: 1 |
||||||
|
--- !u!81 &330585544 |
||||||
|
AudioListener: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 330585543} |
||||||
|
m_Enabled: 1 |
||||||
|
--- !u!20 &330585545 |
||||||
|
Camera: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 330585543} |
||||||
|
m_Enabled: 1 |
||||||
|
serializedVersion: 2 |
||||||
|
m_ClearFlags: 1 |
||||||
|
m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} |
||||||
|
m_projectionMatrixMode: 1 |
||||||
|
m_GateFitMode: 2 |
||||||
|
m_FOVAxisMode: 0 |
||||||
|
m_Iso: 200 |
||||||
|
m_ShutterSpeed: 0.005 |
||||||
|
m_Aperture: 16 |
||||||
|
m_FocusDistance: 10 |
||||||
|
m_FocalLength: 50 |
||||||
|
m_BladeCount: 5 |
||||||
|
m_Curvature: {x: 2, y: 11} |
||||||
|
m_BarrelClipping: 0.25 |
||||||
|
m_Anamorphism: 0 |
||||||
|
m_SensorSize: {x: 36, y: 24} |
||||||
|
m_LensShift: {x: 0, y: 0} |
||||||
|
m_NormalizedViewPortRect: |
||||||
|
serializedVersion: 2 |
||||||
|
x: 0 |
||||||
|
y: 0 |
||||||
|
width: 1 |
||||||
|
height: 1 |
||||||
|
near clip plane: 0.3 |
||||||
|
far clip plane: 1000 |
||||||
|
field of view: 60 |
||||||
|
orthographic: 0 |
||||||
|
orthographic size: 5 |
||||||
|
m_Depth: -1 |
||||||
|
m_CullingMask: |
||||||
|
serializedVersion: 2 |
||||||
|
m_Bits: 4294967295 |
||||||
|
m_RenderingPath: -1 |
||||||
|
m_TargetTexture: {fileID: 0} |
||||||
|
m_TargetDisplay: 0 |
||||||
|
m_TargetEye: 3 |
||||||
|
m_HDR: 1 |
||||||
|
m_AllowMSAA: 1 |
||||||
|
m_AllowDynamicResolution: 0 |
||||||
|
m_ForceIntoRT: 0 |
||||||
|
m_OcclusionCulling: 1 |
||||||
|
m_StereoConvergence: 10 |
||||||
|
m_StereoSeparation: 0.022 |
||||||
|
--- !u!4 &330585546 |
||||||
|
Transform: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 330585543} |
||||||
|
serializedVersion: 2 |
||||||
|
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} |
||||||
|
m_LocalPosition: {x: 0, y: 1, z: -10} |
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1} |
||||||
|
m_ConstrainProportionsScale: 0 |
||||||
|
m_Children: [] |
||||||
|
m_Father: {fileID: 0} |
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} |
||||||
|
--- !u!114 &330585547 |
||||||
|
MonoBehaviour: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 330585543} |
||||||
|
m_Enabled: 1 |
||||||
|
m_EditorHideFlags: 0 |
||||||
|
m_Script: {fileID: 11500000, guid: a79441f348de89743a2939f4d699eac1, type: 3} |
||||||
|
m_Name: |
||||||
|
m_EditorClassIdentifier: |
||||||
|
m_RenderShadows: 1 |
||||||
|
m_RequiresDepthTextureOption: 2 |
||||||
|
m_RequiresOpaqueTextureOption: 2 |
||||||
|
m_CameraType: 0 |
||||||
|
m_Cameras: [] |
||||||
|
m_RendererIndex: -1 |
||||||
|
m_VolumeLayerMask: |
||||||
|
serializedVersion: 2 |
||||||
|
m_Bits: 1 |
||||||
|
m_VolumeTrigger: {fileID: 0} |
||||||
|
m_VolumeFrameworkUpdateModeOption: 2 |
||||||
|
m_RenderPostProcessing: 1 |
||||||
|
m_Antialiasing: 1 |
||||||
|
m_AntialiasingQuality: 2 |
||||||
|
m_StopNaN: 0 |
||||||
|
m_Dithering: 0 |
||||||
|
m_ClearDepth: 1 |
||||||
|
m_AllowXRRendering: 1 |
||||||
|
m_AllowHDROutput: 1 |
||||||
|
m_UseScreenCoordOverride: 0 |
||||||
|
m_ScreenSizeOverride: {x: 0, y: 0, z: 0, w: 0} |
||||||
|
m_ScreenCoordScaleBias: {x: 0, y: 0, z: 0, w: 0} |
||||||
|
m_RequiresDepthTexture: 0 |
||||||
|
m_RequiresColorTexture: 0 |
||||||
|
m_Version: 2 |
||||||
|
m_TaaSettings: |
||||||
|
m_Quality: 3 |
||||||
|
m_FrameInfluence: 0.1 |
||||||
|
m_JitterScale: 1 |
||||||
|
m_MipBias: 0 |
||||||
|
m_VarianceClampScale: 0.9 |
||||||
|
m_ContrastAdaptiveSharpening: 0 |
||||||
|
--- !u!1 &410087039 |
||||||
|
GameObject: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
serializedVersion: 6 |
||||||
|
m_Component: |
||||||
|
- component: {fileID: 410087041} |
||||||
|
- component: {fileID: 410087040} |
||||||
|
- component: {fileID: 410087042} |
||||||
|
m_Layer: 0 |
||||||
|
m_Name: Directional Light |
||||||
|
m_TagString: Untagged |
||||||
|
m_Icon: {fileID: 0} |
||||||
|
m_NavMeshLayer: 0 |
||||||
|
m_StaticEditorFlags: 0 |
||||||
|
m_IsActive: 0 |
||||||
|
--- !u!108 &410087040 |
||||||
|
Light: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 410087039} |
||||||
|
m_Enabled: 1 |
||||||
|
serializedVersion: 11 |
||||||
|
m_Type: 1 |
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1} |
||||||
|
m_Intensity: 5 |
||||||
|
m_Range: 10 |
||||||
|
m_SpotAngle: 30 |
||||||
|
m_InnerSpotAngle: 21.80208 |
||||||
|
m_CookieSize: 10 |
||||||
|
m_Shadows: |
||||||
|
m_Type: 0 |
||||||
|
m_Resolution: -1 |
||||||
|
m_CustomResolution: -1 |
||||||
|
m_Strength: 1 |
||||||
|
m_Bias: 0.05 |
||||||
|
m_NormalBias: 0.4 |
||||||
|
m_NearPlane: 0.2 |
||||||
|
m_CullingMatrixOverride: |
||||||
|
e00: 1 |
||||||
|
e01: 0 |
||||||
|
e02: 0 |
||||||
|
e03: 0 |
||||||
|
e10: 0 |
||||||
|
e11: 1 |
||||||
|
e12: 0 |
||||||
|
e13: 0 |
||||||
|
e20: 0 |
||||||
|
e21: 0 |
||||||
|
e22: 1 |
||||||
|
e23: 0 |
||||||
|
e30: 0 |
||||||
|
e31: 0 |
||||||
|
e32: 0 |
||||||
|
e33: 1 |
||||||
|
m_UseCullingMatrixOverride: 0 |
||||||
|
m_Cookie: {fileID: 0} |
||||||
|
m_DrawHalo: 0 |
||||||
|
m_Flare: {fileID: 0} |
||||||
|
m_RenderMode: 0 |
||||||
|
m_CullingMask: |
||||||
|
serializedVersion: 2 |
||||||
|
m_Bits: 4294967295 |
||||||
|
m_RenderingLayerMask: 1 |
||||||
|
m_Lightmapping: 4 |
||||||
|
m_LightShadowCasterMode: 0 |
||||||
|
m_AreaSize: {x: 1, y: 1} |
||||||
|
m_BounceIntensity: 5 |
||||||
|
m_ColorTemperature: 5000 |
||||||
|
m_UseColorTemperature: 1 |
||||||
|
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} |
||||||
|
m_UseBoundingSphereOverride: 0 |
||||||
|
m_UseViewFrustumForShadowCasterCull: 1 |
||||||
|
m_ForceVisible: 0 |
||||||
|
m_ShadowRadius: 0 |
||||||
|
m_ShadowAngle: 0 |
||||||
|
m_LightUnit: 1 |
||||||
|
m_LuxAtDistance: 1 |
||||||
|
m_EnableSpotReflector: 1 |
||||||
|
--- !u!4 &410087041 |
||||||
|
Transform: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 410087039} |
||||||
|
serializedVersion: 2 |
||||||
|
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} |
||||||
|
m_LocalPosition: {x: 0, y: 3, z: 0} |
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1} |
||||||
|
m_ConstrainProportionsScale: 0 |
||||||
|
m_Children: [] |
||||||
|
m_Father: {fileID: 0} |
||||||
|
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} |
||||||
|
--- !u!114 &410087042 |
||||||
|
MonoBehaviour: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 410087039} |
||||||
|
m_Enabled: 1 |
||||||
|
m_EditorHideFlags: 0 |
||||||
|
m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} |
||||||
|
m_Name: |
||||||
|
m_EditorClassIdentifier: |
||||||
|
m_Version: 3 |
||||||
|
m_UsePipelineSettings: 1 |
||||||
|
m_AdditionalLightsShadowResolutionTier: 2 |
||||||
|
m_LightLayerMask: 1 |
||||||
|
m_RenderingLayers: 1 |
||||||
|
m_CustomShadowLayers: 0 |
||||||
|
m_ShadowLayerMask: 1 |
||||||
|
m_ShadowRenderingLayers: 1 |
||||||
|
m_LightCookieSize: {x: 1, y: 1} |
||||||
|
m_LightCookieOffset: {x: 0, y: 0} |
||||||
|
m_SoftShadowQuality: 1 |
||||||
|
--- !u!1001 &1608754277 |
||||||
|
PrefabInstance: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
serializedVersion: 2 |
||||||
|
m_Modification: |
||||||
|
serializedVersion: 3 |
||||||
|
m_TransformParent: {fileID: 0} |
||||||
|
m_Modifications: |
||||||
|
- target: {fileID: 2959572747469297509, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_Name |
||||||
|
value: MainBuilding |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalPosition.x |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalPosition.y |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalPosition.z |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalRotation.w |
||||||
|
value: 1 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalRotation.x |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalRotation.y |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalRotation.z |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalEulerAnglesHint.x |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalEulerAnglesHint.y |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
- target: {fileID: 8513860222506148666, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
propertyPath: m_LocalEulerAnglesHint.z |
||||||
|
value: 0 |
||||||
|
objectReference: {fileID: 0} |
||||||
|
m_RemovedComponents: [] |
||||||
|
m_RemovedGameObjects: [] |
||||||
|
m_AddedGameObjects: [] |
||||||
|
m_AddedComponents: [] |
||||||
|
m_SourcePrefab: {fileID: 100100000, guid: 0f6fb5094bfe6674e8a11615f5fa5830, type: 3} |
||||||
|
--- !u!1 &1688386780 |
||||||
|
GameObject: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
serializedVersion: 6 |
||||||
|
m_Component: |
||||||
|
- component: {fileID: 1688386783} |
||||||
|
- component: {fileID: 1688386782} |
||||||
|
- component: {fileID: 1688386781} |
||||||
|
m_Layer: 0 |
||||||
|
m_Name: Directional Light (1) |
||||||
|
m_TagString: Untagged |
||||||
|
m_Icon: {fileID: 0} |
||||||
|
m_NavMeshLayer: 0 |
||||||
|
m_StaticEditorFlags: 0 |
||||||
|
m_IsActive: 1 |
||||||
|
--- !u!114 &1688386781 |
||||||
|
MonoBehaviour: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 1688386780} |
||||||
|
m_Enabled: 1 |
||||||
|
m_EditorHideFlags: 0 |
||||||
|
m_Script: {fileID: 11500000, guid: 474bcb49853aa07438625e644c072ee6, type: 3} |
||||||
|
m_Name: |
||||||
|
m_EditorClassIdentifier: |
||||||
|
m_Version: 3 |
||||||
|
m_UsePipelineSettings: 1 |
||||||
|
m_AdditionalLightsShadowResolutionTier: 2 |
||||||
|
m_LightLayerMask: 1 |
||||||
|
m_RenderingLayers: 1 |
||||||
|
m_CustomShadowLayers: 0 |
||||||
|
m_ShadowLayerMask: 1 |
||||||
|
m_ShadowRenderingLayers: 1 |
||||||
|
m_LightCookieSize: {x: 1, y: 1} |
||||||
|
m_LightCookieOffset: {x: 0, y: 0} |
||||||
|
m_SoftShadowQuality: 0 |
||||||
|
--- !u!108 &1688386782 |
||||||
|
Light: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 1688386780} |
||||||
|
m_Enabled: 1 |
||||||
|
serializedVersion: 11 |
||||||
|
m_Type: 1 |
||||||
|
m_Color: {r: 1, g: 1, b: 1, a: 1} |
||||||
|
m_Intensity: 1 |
||||||
|
m_Range: 10 |
||||||
|
m_SpotAngle: 30 |
||||||
|
m_InnerSpotAngle: 21.80208 |
||||||
|
m_CookieSize: 10 |
||||||
|
m_Shadows: |
||||||
|
m_Type: 0 |
||||||
|
m_Resolution: -1 |
||||||
|
m_CustomResolution: -1 |
||||||
|
m_Strength: 1 |
||||||
|
m_Bias: 0.05 |
||||||
|
m_NormalBias: 0.4 |
||||||
|
m_NearPlane: 0.2 |
||||||
|
m_CullingMatrixOverride: |
||||||
|
e00: 1 |
||||||
|
e01: 0 |
||||||
|
e02: 0 |
||||||
|
e03: 0 |
||||||
|
e10: 0 |
||||||
|
e11: 1 |
||||||
|
e12: 0 |
||||||
|
e13: 0 |
||||||
|
e20: 0 |
||||||
|
e21: 0 |
||||||
|
e22: 1 |
||||||
|
e23: 0 |
||||||
|
e30: 0 |
||||||
|
e31: 0 |
||||||
|
e32: 0 |
||||||
|
e33: 1 |
||||||
|
m_UseCullingMatrixOverride: 0 |
||||||
|
m_Cookie: {fileID: 0} |
||||||
|
m_DrawHalo: 0 |
||||||
|
m_Flare: {fileID: 0} |
||||||
|
m_RenderMode: 0 |
||||||
|
m_CullingMask: |
||||||
|
serializedVersion: 2 |
||||||
|
m_Bits: 4294967295 |
||||||
|
m_RenderingLayerMask: 1 |
||||||
|
m_Lightmapping: 4 |
||||||
|
m_LightShadowCasterMode: 0 |
||||||
|
m_AreaSize: {x: 1, y: 1} |
||||||
|
m_BounceIntensity: 1 |
||||||
|
m_ColorTemperature: 6570 |
||||||
|
m_UseColorTemperature: 0 |
||||||
|
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} |
||||||
|
m_UseBoundingSphereOverride: 0 |
||||||
|
m_UseViewFrustumForShadowCasterCull: 1 |
||||||
|
m_ForceVisible: 0 |
||||||
|
m_ShadowRadius: 0 |
||||||
|
m_ShadowAngle: 0 |
||||||
|
m_LightUnit: 1 |
||||||
|
m_LuxAtDistance: 1 |
||||||
|
m_EnableSpotReflector: 1 |
||||||
|
--- !u!4 &1688386783 |
||||||
|
Transform: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_CorrespondingSourceObject: {fileID: 0} |
||||||
|
m_PrefabInstance: {fileID: 0} |
||||||
|
m_PrefabAsset: {fileID: 0} |
||||||
|
m_GameObject: {fileID: 1688386780} |
||||||
|
serializedVersion: 2 |
||||||
|
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} |
||||||
|
m_LocalPosition: {x: -3288.7292, y: -134.73137, z: -3581.904} |
||||||
|
m_LocalScale: {x: 1, y: 1, z: 1} |
||||||
|
m_ConstrainProportionsScale: 0 |
||||||
|
m_Children: [] |
||||||
|
m_Father: {fileID: 0} |
||||||
|
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} |
||||||
|
--- !u!1660057539 &9223372036854775807 |
||||||
|
SceneRoots: |
||||||
|
m_ObjectHideFlags: 0 |
||||||
|
m_Roots: |
||||||
|
- {fileID: 330585546} |
||||||
|
- {fileID: 410087041} |
||||||
|
- {fileID: 1608754277} |
||||||
|
- {fileID: 1688386783} |
@ -1,5 +1,5 @@ |
|||||||
fileFormatVersion: 2 |
fileFormatVersion: 2 |
||||||
guid: cb7dece37e077ad439ffd55f69436ae7 |
guid: eb47f559636f7f54d843c0b4f51387d3 |
||||||
DefaultImporter: |
DefaultImporter: |
||||||
externalObjects: {} |
externalObjects: {} |
||||||
userData: |
userData: |
@ -1,79 +0,0 @@ |
|||||||
ManifestFileVersion: 0 |
|
||||||
UnityVersion: 6000.0.13f1 |
|
||||||
CRC: 398449319 |
|
||||||
Hashes: |
|
||||||
AssetFileHash: |
|
||||||
serializedVersion: 2 |
|
||||||
Hash: 10fc4ec6c0c4582f0d7c3f7b0863e2ac |
|
||||||
TypeTreeHash: |
|
||||||
serializedVersion: 2 |
|
||||||
Hash: a5b1f15ca1e9dfdc4f9c8f9e68cdc9ad |
|
||||||
IncrementalBuildHash: |
|
||||||
serializedVersion: 2 |
|
||||||
Hash: 813cfc3eb07ce6f18b186e16e2d7c3d7 |
|
||||||
HashAppended: 0 |
|
||||||
ClassTypes: |
|
||||||
- Class: 1 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 4 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 21 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 23 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 28 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 33 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 43 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 48 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 64 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 65 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 89 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 104 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: d00f7578dda0a1c41b151766a6426479, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 43929be615d468749bba2f9917117a45, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 1e3fdca004f2d45fe8abbed571a8abd5, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: de3dcbb1284b2394a8049095e2bae278, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: b0f36456c352b534cb76fe2cc683b76d, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 1c0e57298488ae54aba3ef60b0b26920, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: ad1ddb7b6b473ac4ea26f44aea624e2b, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 6eeb5dc026fdf4b488bc7ae0138ab719, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 7a5ac11cc976e418e8d13136b07e1f52, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 78722e55a6f8aa54db9f860ce5caf529, type: 3} |
|
||||||
- Class: 115 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 157 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 196 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 215 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 238 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 850595691 |
|
||||||
Script: {instanceID: 0} |
|
||||||
SerializeReferenceClassIdentifiers: [] |
|
||||||
Assets: |
|
||||||
- Assets/ScenesKH/BuildingScene.unity |
|
||||||
Dependencies: [] |
|
@ -0,0 +1,8 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 11e8ecf4843e65747afce3f9bacf8c82 |
||||||
|
folderAsset: yes |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
Binary file not shown.
@ -1,9 +1,9 @@ |
|||||||
ManifestFileVersion: 0 |
ManifestFileVersion: 0 |
||||||
UnityVersion: 6000.0.13f1 |
UnityVersion: 6000.0.13f1 |
||||||
CRC: 1215765465 |
CRC: 2939554988 |
||||||
HashAppended: 0 |
HashAppended: 0 |
||||||
AssetBundleManifest: |
AssetBundleManifest: |
||||||
AssetBundleInfos: |
AssetBundleInfos: |
||||||
Info_0: |
Info_0: |
||||||
Name: buildingscene |
Name: mainbuilding |
||||||
Dependencies: {} |
Dependencies: {} |
@ -1,5 +1,5 @@ |
|||||||
fileFormatVersion: 2 |
fileFormatVersion: 2 |
||||||
guid: 43561f4b35f9aa044a66d587a4f3266d |
guid: 138cf0e7abb37eb438f56bfb273e7577 |
||||||
DefaultImporter: |
DefaultImporter: |
||||||
externalObjects: {} |
externalObjects: {} |
||||||
userData: |
userData: |
@ -1,5 +1,5 @@ |
|||||||
fileFormatVersion: 2 |
fileFormatVersion: 2 |
||||||
guid: 13ceecf138ee20c4dab0260a65f46f1c |
guid: 3ad1095f468f57841a44c3c838b544d1 |
||||||
DefaultImporter: |
DefaultImporter: |
||||||
externalObjects: {} |
externalObjects: {} |
||||||
userData: |
userData: |
Binary file not shown.
@ -0,0 +1,45 @@ |
|||||||
|
ManifestFileVersion: 0 |
||||||
|
UnityVersion: 6000.0.13f1 |
||||||
|
CRC: 1542179936 |
||||||
|
Hashes: |
||||||
|
AssetFileHash: |
||||||
|
serializedVersion: 2 |
||||||
|
Hash: 6c2b4d11a1ed7830078f7ad5968656b9 |
||||||
|
TypeTreeHash: |
||||||
|
serializedVersion: 2 |
||||||
|
Hash: 3e4898902a241424dacad96dafc48830 |
||||||
|
IncrementalBuildHash: |
||||||
|
serializedVersion: 2 |
||||||
|
Hash: afbb8e3ca6593836d2ea672773147b5e |
||||||
|
HashAppended: 0 |
||||||
|
ClassTypes: |
||||||
|
- Class: 1 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 4 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 21 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 23 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 28 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 33 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 43 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 48 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 64 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 114 |
||||||
|
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
||||||
|
- Class: 114 |
||||||
|
Script: {fileID: 11500000, guid: d0a1e8ecdf25070429134fc27e362186, type: 3} |
||||||
|
- Class: 115 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 215 |
||||||
|
Script: {instanceID: 0} |
||||||
|
SerializeReferenceClassIdentifiers: [] |
||||||
|
Assets: |
||||||
|
- Assets/MainBuilding.prefab |
||||||
|
Dependencies: [] |
@ -1,5 +1,5 @@ |
|||||||
fileFormatVersion: 2 |
fileFormatVersion: 2 |
||||||
guid: 50b8fe00282587849bdd5c965aca24c4 |
guid: b5279010646c7e94086c7549c1622a1b |
||||||
DefaultImporter: |
DefaultImporter: |
||||||
externalObjects: {} |
externalObjects: {} |
||||||
userData: |
userData: |
@ -0,0 +1,7 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 26b7e7a5dcd748c4794b060c4aee683a |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
@ -0,0 +1,8 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 3511473540c081c4393c31746ca14897 |
||||||
|
folderAsset: yes |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
@ -1,7 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 85dac25872220284ca25d06be8439ac0 |
|
||||||
DefaultImporter: |
|
||||||
externalObjects: {} |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
@ -1,7 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 02d0fc6b8753ad947af4334ad4c2d633 |
|
||||||
DefaultImporter: |
|
||||||
externalObjects: {} |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
@ -1,79 +0,0 @@ |
|||||||
ManifestFileVersion: 0 |
|
||||||
UnityVersion: 6000.0.13f1 |
|
||||||
CRC: 343948835 |
|
||||||
Hashes: |
|
||||||
AssetFileHash: |
|
||||||
serializedVersion: 2 |
|
||||||
Hash: 6f640ea693775b6d306ef144f6d4d5f7 |
|
||||||
TypeTreeHash: |
|
||||||
serializedVersion: 2 |
|
||||||
Hash: a5b1f15ca1e9dfdc4f9c8f9e68cdc9ad |
|
||||||
IncrementalBuildHash: |
|
||||||
serializedVersion: 2 |
|
||||||
Hash: 95d775201c724ec258d9fc930cff9864 |
|
||||||
HashAppended: 0 |
|
||||||
ClassTypes: |
|
||||||
- Class: 1 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 4 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 21 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 23 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 28 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 33 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 43 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 48 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 64 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 65 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 89 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 104 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: d00f7578dda0a1c41b151766a6426479, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 43929be615d468749bba2f9917117a45, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 1e3fdca004f2d45fe8abbed571a8abd5, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: de3dcbb1284b2394a8049095e2bae278, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: b0f36456c352b534cb76fe2cc683b76d, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 1c0e57298488ae54aba3ef60b0b26920, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: ad1ddb7b6b473ac4ea26f44aea624e2b, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 5627e6832e9378c4e8632a52efa22183, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 6eeb5dc026fdf4b488bc7ae0138ab719, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 7a5ac11cc976e418e8d13136b07e1f52, type: 3} |
|
||||||
- Class: 114 |
|
||||||
Script: {fileID: 11500000, guid: 78722e55a6f8aa54db9f860ce5caf529, type: 3} |
|
||||||
- Class: 115 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 157 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 196 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 215 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 238 |
|
||||||
Script: {instanceID: 0} |
|
||||||
- Class: 850595691 |
|
||||||
Script: {instanceID: 0} |
|
||||||
SerializeReferenceClassIdentifiers: [] |
|
||||||
Assets: |
|
||||||
- Assets/ScenesKH/BuildingScene.unity |
|
||||||
Dependencies: [] |
|
@ -1,7 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: ad94c9b3a67eb2b41b3782bd3f53aef6 |
|
||||||
DefaultImporter: |
|
||||||
externalObjects: {} |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
@ -1,7 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: bc6cadc3a498dc449a4116fec10af389 |
|
||||||
DefaultImporter: |
|
||||||
externalObjects: {} |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
@ -0,0 +1,8 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: f2ca318283d56664aba262ff24f025dd |
||||||
|
folderAsset: yes |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
Binary file not shown.
@ -1,9 +1,9 @@ |
|||||||
ManifestFileVersion: 0 |
ManifestFileVersion: 0 |
||||||
UnityVersion: 6000.0.13f1 |
UnityVersion: 6000.0.13f1 |
||||||
CRC: 2420891750 |
CRC: 4208173202 |
||||||
HashAppended: 0 |
HashAppended: 0 |
||||||
AssetBundleManifest: |
AssetBundleManifest: |
||||||
AssetBundleInfos: |
AssetBundleInfos: |
||||||
Info_0: |
Info_0: |
||||||
Name: buildingscene |
Name: mainbuilding |
||||||
Dependencies: {} |
Dependencies: {} |
@ -0,0 +1,7 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 9996ad7069936494e96b7d7365a904fb |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
@ -0,0 +1,7 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 622f6599765b5ac4e9a85a5e822f48dc |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
Binary file not shown.
@ -0,0 +1,45 @@ |
|||||||
|
ManifestFileVersion: 0 |
||||||
|
UnityVersion: 6000.0.13f1 |
||||||
|
CRC: 2350694992 |
||||||
|
Hashes: |
||||||
|
AssetFileHash: |
||||||
|
serializedVersion: 2 |
||||||
|
Hash: 6f8326bcd46c794ce9d1a99846959463 |
||||||
|
TypeTreeHash: |
||||||
|
serializedVersion: 2 |
||||||
|
Hash: 3e4898902a241424dacad96dafc48830 |
||||||
|
IncrementalBuildHash: |
||||||
|
serializedVersion: 2 |
||||||
|
Hash: 18157571e3faa257da86547030314529 |
||||||
|
HashAppended: 0 |
||||||
|
ClassTypes: |
||||||
|
- Class: 1 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 4 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 21 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 23 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 28 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 33 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 43 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 48 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 64 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 114 |
||||||
|
Script: {fileID: 11500000, guid: 0777d029ed3dffa4692f417d4aba19ca, type: 3} |
||||||
|
- Class: 114 |
||||||
|
Script: {fileID: 11500000, guid: d0a1e8ecdf25070429134fc27e362186, type: 3} |
||||||
|
- Class: 115 |
||||||
|
Script: {instanceID: 0} |
||||||
|
- Class: 215 |
||||||
|
Script: {instanceID: 0} |
||||||
|
SerializeReferenceClassIdentifiers: [] |
||||||
|
Assets: |
||||||
|
- Assets/MainBuilding.prefab |
||||||
|
Dependencies: [] |
@ -0,0 +1,7 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: b2003a9500a01184ea744653e7a139e6 |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
@ -0,0 +1,7 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: e9e083acc1621a3409f48f7bf8a738bd |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
@ -0,0 +1,8 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 6f7f1eb700f3d8246a1202beac10cc85 |
||||||
|
folderAsset: yes |
||||||
|
DefaultImporter: |
||||||
|
externalObjects: {} |
||||||
|
userData: |
||||||
|
assetBundleName: |
||||||
|
assetBundleVariant: |
@ -1 +1 @@ |
|||||||
Subproject commit ba00aa62deb2407da947f6c33cd3151df858bad8 |
Subproject commit d35ff776f0a7235591ccc78fb8a45102588fed36 |
Binary file not shown.
@ -0,0 +1,137 @@ |
|||||||
|
fileFormatVersion: 2 |
||||||
|
guid: 1ab58c58898d21c4a811de54d5863473 |
||||||
|
ModelImporter: |
||||||
|
serializedVersion: 22200 |
||||||
|
internalIDToNameTable: [] |
||||||
|
externalObjects: |
||||||
|
- first: |
||||||
|
type: UnityEngine:Material |
||||||
|
assembly: UnityEngine.CoreModule |
||||||
|
name: CJ_DI1 |
||||||
|
second: {fileID: 2100000, guid: 207db93e118474f41977070fd621d68e, type: 2} |
||||||
|
- first: |
||||||
|
type: UnityEngine:Material |
||||||
|
assembly: UnityEngine.CoreModule |
||||||
|
name: CJ_MAlu |
||||||
|
second: {fileID: 2100000, guid: 298c420f53897e741bcb96b43f482ded, type: 2} |
||||||
|
- first: |
||||||
|
type: UnityEngine:Material |
||||||
|
assembly: UnityEngine.CoreModule |
||||||
|
name: CJ_MAlu1 |
||||||
|
second: {fileID: 2100000, guid: acb85f379521a5f47851b7d6f7a8f88d, type: 2} |
||||||
|
- first: |
||||||
|
type: UnityEngine:Material |
||||||
|
assembly: UnityEngine.CoreModule |
||||||
|
name: CJ_RXD |
||||||
|
second: {fileID: 2100000, guid: 18d73290f97fe5743aa26d9f4c50573d, type: 2} |
||||||
|
- first: |
||||||
|
type: UnityEngine:Material |
||||||
|
assembly: UnityEngine.CoreModule |
||||||
|
name: HL_AA_HunNingTuDiMian_JiaoCuo |
||||||
|
second: {fileID: 2100000, guid: 2bc7d25aa4a229a488a7eb6e5b429ab3, type: 2} |
||||||
|
- first: |
||||||
|
type: UnityEngine:Material |
||||||
|
assembly: UnityEngine.CoreModule |
||||||
|
name: YL_LvBan_1 |
||||||
|
second: {fileID: 2100000, guid: 2e94528a0a0956a49998b25289a3427e, type: 2} |
||||||
|
materials: |
||||||
|
materialImportMode: 2 |
||||||
|
materialName: 1 |
||||||
|
materialSearch: 2 |
||||||
|
materialLocation: 1 |
||||||
|
animations: |
||||||
|
legacyGenerateAnimations: 4 |
||||||
|
bakeSimulation: 0 |
||||||
|
resampleCurves: 1 |
||||||
|
optimizeGameObjects: 0 |
||||||
|
removeConstantScaleCurves: 0 |
||||||
|
motionNodeName: |
||||||
|
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: |
@ -1,138 +0,0 @@ |
|||||||
%YAML 1.1 |
|
||||||
%TAG !u! tag:unity3d.com,2011: |
|
||||||
--- !u!21 &2100000 |
|
||||||
Material: |
|
||||||
serializedVersion: 8 |
|
||||||
m_ObjectHideFlags: 0 |
|
||||||
m_CorrespondingSourceObject: {fileID: 0} |
|
||||||
m_PrefabInstance: {fileID: 0} |
|
||||||
m_PrefabAsset: {fileID: 0} |
|
||||||
m_Name: "\u4E3B\u4F53" |
|
||||||
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: |
|
||||||
- MOTIONVECTORS |
|
||||||
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: |
|
||||||
- _AddPrecomputedVelocity: 0 |
|
||||||
- _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.19999999 |
|
||||||
- _GlossyReflections: 1 |
|
||||||
- _Metallic: 0 |
|
||||||
- _Mode: 0 |
|
||||||
- _OcclusionStrength: 1 |
|
||||||
- _Parallax: 0.02 |
|
||||||
- _QueueOffset: 0 |
|
||||||
- _ReceiveShadows: 1 |
|
||||||
- _Smoothness: 0.19999999 |
|
||||||
- _SmoothnessTextureChannel: 0 |
|
||||||
- _SpecularHighlights: 1 |
|
||||||
- _SrcBlend: 1 |
|
||||||
- _SrcBlendAlpha: 1 |
|
||||||
- _Surface: 0 |
|
||||||
- _UVSec: 0 |
|
||||||
- _WorkflowMode: 1 |
|
||||||
- _ZWrite: 1 |
|
||||||
m_Colors: |
|
||||||
- _BaseColor: {r: 0.91607606, g: 0.91607606, b: 0.91607606, a: 1} |
|
||||||
- _Color: {r: 0.91607606, g: 0.91607606, b: 0.91607606, 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: [] |
|
||||||
m_AllowLocking: 1 |
|
||||||
--- !u!114 &3064600507361974291 |
|
||||||
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: 9 |
|
@ -1,8 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 2a9f954451ca79a4cbb414443fd10abd |
|
||||||
NativeFormatImporter: |
|
||||||
externalObjects: {} |
|
||||||
mainObjectFileID: 2100000 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Binary file not shown.
Before Width: | Height: | Size: 22 KiB |
@ -1,143 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: dd47fb1e3605f3e498a0b4d19c8b89ee |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
buildTarget: Win64 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
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 |
|
||||||
spriteSheet: |
|
||||||
serializedVersion: 2 |
|
||||||
sprites: [] |
|
||||||
outline: [] |
|
||||||
customData: |
|
||||||
physicsShape: [] |
|
||||||
bones: [] |
|
||||||
spriteID: |
|
||||||
internalID: 0 |
|
||||||
vertices: [] |
|
||||||
indices: |
|
||||||
edges: [] |
|
||||||
weights: [] |
|
||||||
secondaryTextures: [] |
|
||||||
spriteCustomMetadata: |
|
||||||
entries: [] |
|
||||||
nameFileIdTable: {} |
|
||||||
mipmapLimitGroupName: |
|
||||||
pSDRemoveMatte: 0 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Before Width: | Height: | Size: 29 KiB |
@ -1,143 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 892183217455bb64fa78b5a7abafbbd2 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
buildTarget: Win64 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
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 |
|
||||||
spriteSheet: |
|
||||||
serializedVersion: 2 |
|
||||||
sprites: [] |
|
||||||
outline: [] |
|
||||||
customData: |
|
||||||
physicsShape: [] |
|
||||||
bones: [] |
|
||||||
spriteID: |
|
||||||
internalID: 0 |
|
||||||
vertices: [] |
|
||||||
indices: |
|
||||||
edges: [] |
|
||||||
weights: [] |
|
||||||
secondaryTextures: [] |
|
||||||
spriteCustomMetadata: |
|
||||||
entries: [] |
|
||||||
nameFileIdTable: {} |
|
||||||
mipmapLimitGroupName: |
|
||||||
pSDRemoveMatte: 0 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Before Width: | Height: | Size: 29 KiB |
@ -1,143 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: fea557551dde013408daeec314dfed82 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
buildTarget: Win64 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
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 |
|
||||||
spriteSheet: |
|
||||||
serializedVersion: 2 |
|
||||||
sprites: [] |
|
||||||
outline: [] |
|
||||||
customData: |
|
||||||
physicsShape: [] |
|
||||||
bones: [] |
|
||||||
spriteID: |
|
||||||
internalID: 0 |
|
||||||
vertices: [] |
|
||||||
indices: |
|
||||||
edges: [] |
|
||||||
weights: [] |
|
||||||
secondaryTextures: [] |
|
||||||
spriteCustomMetadata: |
|
||||||
entries: [] |
|
||||||
nameFileIdTable: {} |
|
||||||
mipmapLimitGroupName: |
|
||||||
pSDRemoveMatte: 0 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Before Width: | Height: | Size: 14 KiB |
@ -1,143 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 63007951c99230d4e8901ba2c7381667 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
buildTarget: Win64 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
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 |
|
||||||
spriteSheet: |
|
||||||
serializedVersion: 2 |
|
||||||
sprites: [] |
|
||||||
outline: [] |
|
||||||
customData: |
|
||||||
physicsShape: [] |
|
||||||
bones: [] |
|
||||||
spriteID: |
|
||||||
internalID: 0 |
|
||||||
vertices: [] |
|
||||||
indices: |
|
||||||
edges: [] |
|
||||||
weights: [] |
|
||||||
secondaryTextures: [] |
|
||||||
spriteCustomMetadata: |
|
||||||
entries: [] |
|
||||||
nameFileIdTable: {} |
|
||||||
mipmapLimitGroupName: |
|
||||||
pSDRemoveMatte: 0 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Before Width: | Height: | Size: 20 KiB |
@ -1,143 +0,0 @@ |
|||||||
fileFormatVersion: 2 |
|
||||||
guid: 71fb7740e8d70864b8698f1930b5711f |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
buildTarget: Win64 |
|
||||||
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: 4 |
|
||||||
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: 4 |
|
||||||
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 |
|
||||||
spriteSheet: |
|
||||||
serializedVersion: 2 |
|
||||||
sprites: [] |
|
||||||
outline: [] |
|
||||||
customData: |
|
||||||
physicsShape: [] |
|
||||||
bones: [] |
|
||||||
spriteID: |
|
||||||
internalID: 0 |
|
||||||
vertices: [] |
|
||||||
indices: |
|
||||||
edges: [] |
|
||||||
weights: [] |
|
||||||
secondaryTextures: [] |
|
||||||
spriteCustomMetadata: |
|
||||||
entries: [] |
|
||||||
nameFileIdTable: {} |
|
||||||
mipmapLimitGroupName: |
|
||||||
pSDRemoveMatte: 0 |
|
||||||
userData: |
|
||||||
assetBundleName: |
|
||||||
assetBundleVariant: |
|
Loading…
Reference in new issue