맵2 최적화
This commit is contained in:
parent
6f6270d901
commit
b89a1dbf2c
|
|
@ -7,7 +7,7 @@ public static class MaterialChecker
|
||||||
[MenuItem("Tools/Check Materials in Selected Object")]
|
[MenuItem("Tools/Check Materials in Selected Object")]
|
||||||
private static void CheckSelectedObject()
|
private static void CheckSelectedObject()
|
||||||
{
|
{
|
||||||
// 현재 선택된 오브젝트
|
// 현재 선택된 오브젝트 가져오기
|
||||||
GameObject selectedObject = Selection.activeGameObject;
|
GameObject selectedObject = Selection.activeGameObject;
|
||||||
|
|
||||||
if (selectedObject == null)
|
if (selectedObject == null)
|
||||||
|
|
@ -16,7 +16,7 @@ public static class MaterialChecker
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 자식의 MeshRenderer를 확인
|
// 자식 포함 MeshRenderer 가져오기
|
||||||
MeshRenderer[] meshRenderers = selectedObject.GetComponentsInChildren<MeshRenderer>();
|
MeshRenderer[] meshRenderers = selectedObject.GetComponentsInChildren<MeshRenderer>();
|
||||||
if (meshRenderers.Length == 0)
|
if (meshRenderers.Length == 0)
|
||||||
{
|
{
|
||||||
|
|
@ -24,7 +24,7 @@ public static class MaterialChecker
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 매터리얼 수집
|
// 고유한 매터리얼 저장용 HashSet
|
||||||
HashSet<Material> uniqueMaterials = new HashSet<Material>();
|
HashSet<Material> uniqueMaterials = new HashSet<Material>();
|
||||||
foreach (var renderer in meshRenderers)
|
foreach (var renderer in meshRenderers)
|
||||||
{
|
{
|
||||||
|
|
@ -37,12 +37,13 @@ public static class MaterialChecker
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 결과 로그 출력
|
// 결과 출력
|
||||||
Debug.Log($"'{selectedObject.name}'에 사용된 고유한 매터리얼 수: {uniqueMaterials.Count}");
|
Debug.Log($"'{selectedObject.name}'에 사용된 고유한 매터리얼 수: {uniqueMaterials.Count}");
|
||||||
int i = 0;
|
int i = 0;
|
||||||
foreach (var material in uniqueMaterials)
|
foreach (var material in uniqueMaterials)
|
||||||
{
|
{
|
||||||
Debug.Log($"{i++} : {material.name}", material);
|
string path = AssetDatabase.GetAssetPath(material); // 매터리얼 경로
|
||||||
|
Debug.Log($"{i++} : {material.name} (Path: {path})", material);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -69,9 +69,19 @@ messageinfo 엄청 느린 버그
|
||||||
- 원하는 몬스터 소환
|
- 원하는 몬스터 소환
|
||||||
- 실제 인게임과 같은 카메라로
|
- 실제 인게임과 같은 카메라로
|
||||||
|
|
||||||
2챕터 맵 배치
|
|
||||||
- 포탈, 필드보스, 부활의 성소, 챕터보스
|
|
||||||
|
|
||||||
미션
|
미션
|
||||||
|
- 바로가기 (컨텐츠 다 되면 하자)
|
||||||
- 컨텐츠가 없어서 적용안된 미션 있음 (출석, 농장 단계 등)
|
- 컨텐츠가 없어서 적용안된 미션 있음 (출석, 농장 단계 등)
|
||||||
|
|
||||||
|
상점
|
||||||
|
아이템 획득 UI
|
||||||
|
시즌패스
|
||||||
|
뽑기
|
||||||
|
출석부
|
||||||
|
우편함
|
||||||
|
버프
|
||||||
|
랭킹버튼 -> 랭킹 연결
|
||||||
|
|
||||||
|
맵2 배치
|
||||||
|
- 포탈, 필드보스, 부활의 성소, 챕터보스
|
||||||
|
맵2 최적화
|
||||||
|
|
@ -106,6 +106,19 @@ TextureImporter:
|
||||||
ignorePlatformSupport: 0
|
ignorePlatformSupport: 0
|
||||||
androidETC2FallbackOverride: 0
|
androidETC2FallbackOverride: 0
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
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:
|
spriteSheet:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
sprites: []
|
sprites: []
|
||||||
|
|
|
||||||
|
|
@ -106,6 +106,19 @@ TextureImporter:
|
||||||
ignorePlatformSupport: 0
|
ignorePlatformSupport: 0
|
||||||
androidETC2FallbackOverride: 0
|
androidETC2FallbackOverride: 0
|
||||||
forceMaximumCompressionQuality_BC6H_BC7: 0
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
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:
|
spriteSheet:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
sprites: []
|
sprites: []
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: a776fac0af99fb244b5f71c57ea58d72
|
guid: a776fac0af99fb244b5f71c57ea58d72
|
||||||
TextureImporter:
|
TextureImporter:
|
||||||
fileIDToRecycleName: {}
|
internalIDToNameTable: []
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 7
|
serializedVersion: 13
|
||||||
mipmaps:
|
mipmaps:
|
||||||
mipMapMode: 0
|
mipMapMode: 0
|
||||||
enableMipMap: 0
|
enableMipMap: 0
|
||||||
|
|
@ -20,9 +20,12 @@ TextureImporter:
|
||||||
externalNormalMap: 0
|
externalNormalMap: 0
|
||||||
heightScale: 0.25
|
heightScale: 0.25
|
||||||
normalMapFilter: 0
|
normalMapFilter: 0
|
||||||
|
flipGreenChannel: 0
|
||||||
isReadable: 0
|
isReadable: 0
|
||||||
streamingMipmaps: 0
|
streamingMipmaps: 0
|
||||||
streamingMipmapsPriority: 0
|
streamingMipmapsPriority: 0
|
||||||
|
vTOnly: 0
|
||||||
|
ignoreMipmapLimit: 0
|
||||||
grayScaleToAlpha: 0
|
grayScaleToAlpha: 0
|
||||||
generateCubemap: 6
|
generateCubemap: 6
|
||||||
cubemapConvolution: 0
|
cubemapConvolution: 0
|
||||||
|
|
@ -31,12 +34,12 @@ TextureImporter:
|
||||||
maxTextureSize: 2048
|
maxTextureSize: 2048
|
||||||
textureSettings:
|
textureSettings:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
filterMode: -1
|
filterMode: 1
|
||||||
aniso: -1
|
aniso: 1
|
||||||
mipBias: -100
|
mipBias: 0
|
||||||
wrapU: -1
|
wrapU: 0
|
||||||
wrapV: -1
|
wrapV: 0
|
||||||
wrapW: -1
|
wrapW: 0
|
||||||
nPOTScale: 1
|
nPOTScale: 1
|
||||||
lightmap: 0
|
lightmap: 0
|
||||||
compressionQuality: 50
|
compressionQuality: 50
|
||||||
|
|
@ -54,11 +57,17 @@ TextureImporter:
|
||||||
textureType: 0
|
textureType: 0
|
||||||
textureShape: 1
|
textureShape: 1
|
||||||
singleChannelComponent: 0
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
maxTextureSizeSet: 0
|
maxTextureSizeSet: 0
|
||||||
compressionQualitySet: 0
|
compressionQualitySet: 0
|
||||||
textureFormatSet: 0
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 1
|
||||||
|
swizzle: 50462976
|
||||||
|
cookieLightType: 1
|
||||||
platformSettings:
|
platformSettings:
|
||||||
- serializedVersion: 2
|
- serializedVersion: 3
|
||||||
buildTarget: DefaultTexturePlatform
|
buildTarget: DefaultTexturePlatform
|
||||||
maxTextureSize: 128
|
maxTextureSize: 128
|
||||||
resizeAlgorithm: 0
|
resizeAlgorithm: 0
|
||||||
|
|
@ -68,8 +77,10 @@ TextureImporter:
|
||||||
crunchedCompression: 0
|
crunchedCompression: 0
|
||||||
allowsAlphaSplitting: 0
|
allowsAlphaSplitting: 0
|
||||||
overridden: 0
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
androidETC2FallbackOverride: 0
|
androidETC2FallbackOverride: 0
|
||||||
- serializedVersion: 2
|
forceMaximumCompressionQuality_BC6H_BC7: 0
|
||||||
|
- serializedVersion: 3
|
||||||
buildTarget: Standalone
|
buildTarget: Standalone
|
||||||
maxTextureSize: 128
|
maxTextureSize: 128
|
||||||
resizeAlgorithm: 0
|
resizeAlgorithm: 0
|
||||||
|
|
@ -79,7 +90,35 @@ TextureImporter:
|
||||||
crunchedCompression: 0
|
crunchedCompression: 0
|
||||||
allowsAlphaSplitting: 0
|
allowsAlphaSplitting: 0
|
||||||
overridden: 0
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
androidETC2FallbackOverride: 0
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
maxTextureSize: 128
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 2
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: Android
|
||||||
|
maxTextureSize: 128
|
||||||
|
resizeAlgorithm: 0
|
||||||
|
textureFormat: -1
|
||||||
|
textureCompression: 2
|
||||||
|
compressionQuality: 50
|
||||||
|
crunchedCompression: 0
|
||||||
|
allowsAlphaSplitting: 0
|
||||||
|
overridden: 0
|
||||||
|
ignorePlatformSupport: 0
|
||||||
|
androidETC2FallbackOverride: 0
|
||||||
|
forceMaximumCompressionQuality_BC6H_BC7: 1
|
||||||
spriteSheet:
|
spriteSheet:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
sprites: []
|
sprites: []
|
||||||
|
|
@ -87,20 +126,15 @@ TextureImporter:
|
||||||
physicsShape: []
|
physicsShape: []
|
||||||
bones: []
|
bones: []
|
||||||
spriteID:
|
spriteID:
|
||||||
|
internalID: 0
|
||||||
vertices: []
|
vertices: []
|
||||||
indices:
|
indices:
|
||||||
edges: []
|
edges: []
|
||||||
weights: []
|
weights: []
|
||||||
spritePackingTag:
|
secondaryTextures: []
|
||||||
|
nameFileIdTable: {}
|
||||||
|
mipmapLimitGroupName:
|
||||||
pSDRemoveMatte: 0
|
pSDRemoveMatte: 0
|
||||||
pSDShowRemoveMatteOption: 0
|
|
||||||
userData:
|
userData:
|
||||||
assetBundleName:
|
assetBundleName:
|
||||||
assetBundleVariant:
|
assetBundleVariant:
|
||||||
AssetOrigin:
|
|
||||||
serializedVersion: 1
|
|
||||||
productId: 141948
|
|
||||||
packageName: Free Low Poly - Raft on the desert
|
|
||||||
packageVersion: 1.0
|
|
||||||
assetPath: Assets/EmaceArt - raft on the desert/Textures/texture.png
|
|
||||||
uploadId: 314765
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 50df37a2f7f6d95489f8ecdbb5be22e2
|
||||||
|
folderAsset: yes
|
||||||
|
DefaultImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 75 KiB |
|
|
@ -0,0 +1,153 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 97afe819bfea9834b8d9f9cdbd534d1f
|
||||||
|
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: 1
|
||||||
|
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: 1
|
||||||
|
alignment: 0
|
||||||
|
spritePivot: {x: 0.5, y: 0.5}
|
||||||
|
spritePixelsToUnits: 100
|
||||||
|
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
|
||||||
|
spriteGenerateFallbackPhysicsShape: 1
|
||||||
|
alphaUsage: 1
|
||||||
|
alphaIsTransparency: 1
|
||||||
|
spriteTessellationDetail: -1
|
||||||
|
textureType: 8
|
||||||
|
textureShape: 1
|
||||||
|
singleChannelComponent: 0
|
||||||
|
flipbookRows: 1
|
||||||
|
flipbookColumns: 1
|
||||||
|
maxTextureSizeSet: 0
|
||||||
|
compressionQualitySet: 0
|
||||||
|
textureFormatSet: 0
|
||||||
|
ignorePngGamma: 0
|
||||||
|
applyGammaDecoding: 0
|
||||||
|
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: Server
|
||||||
|
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
|
||||||
|
- serializedVersion: 3
|
||||||
|
buildTarget: iPhone
|
||||||
|
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:
|
||||||
|
|
@ -0,0 +1,135 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &-3478271199093428318
|
||||||
|
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: Map2_Mat-mat
|
||||||
|
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: 2800000, guid: 97afe819bfea9834b8d9f9cdbd534d1f, 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: 97afe819bfea9834b8d9f9cdbd534d1f, 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:
|
||||||
|
- _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: 0.14788345
|
||||||
|
- _Glossiness: 0.047278713
|
||||||
|
- _GlossyReflections: 0
|
||||||
|
- _Metallic: 0
|
||||||
|
- _OcclusionStrength: 1
|
||||||
|
- _Parallax: 0.0072182505
|
||||||
|
- _QueueOffset: 0
|
||||||
|
- _ReceiveShadows: 1
|
||||||
|
- _Smoothness: 0
|
||||||
|
- _SmoothnessTextureChannel: 0
|
||||||
|
- _SpecularHighlights: 1
|
||||||
|
- _SrcBlend: 1
|
||||||
|
- _SrcBlendAlpha: 1
|
||||||
|
- _Surface: 0
|
||||||
|
- _WorkflowMode: 1
|
||||||
|
- _ZWrite: 1
|
||||||
|
m_Colors:
|
||||||
|
- _BaseColor: {r: 0.78431374, g: 0.7254902, b: 0.5137255, a: 1}
|
||||||
|
- _Color: {r: 0.78431374, g: 0.7254902, b: 0.5137254, 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: []
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 53b7c4932a951af41ac76ad90910f50b
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 2100000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -0,0 +1,569 @@
|
||||||
|
%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: 7d41887b1546f5c44ab54e7e65aad3bc, type: 3}
|
||||||
|
m_Name: Map2_Mat
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
version: 3252
|
||||||
|
resultType: 0
|
||||||
|
materialsAndUVRects:
|
||||||
|
- material: {fileID: 2100000, guid: 3ef71454599913c49a9da8ceca117798, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_02 (5)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 2
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: bff8db4ee51d46d46aa5a6e765bd547d, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1.5
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: a91cca2207c359d479e7b2a8f378225e, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1.5
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: 4b58b991834d37249860df63da9050c8, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: eb8d78162619bc7419ffc6223a361874, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: 6bfb33ba5bbfc3d42bb1cfecfbf3fa3a, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: b8df34f7020bdf4418326459e5a02371, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: c71c5dd5e9888634480b1e8588e33313, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: 212e583a87de25a48835a41882343c1a, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.32862645
|
||||||
|
height: 0.748538
|
||||||
|
srcObjName: SM_Desert_Rock_01
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 2.5
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: -1
|
||||||
|
width: 2
|
||||||
|
height: 3
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 18858803709778759, guid: bbdb55795fba976429c8d022052a3ea4,
|
||||||
|
type: 3}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.9890886
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.010269577
|
||||||
|
height: 0.015594542
|
||||||
|
srcObjName: SM_Desert_Rock_03 (15)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 5629084884208175553, guid: bbdb55795fba976429c8d022052a3ea4,
|
||||||
|
type: 3}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.9890886
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.010269577
|
||||||
|
height: 0.015594542
|
||||||
|
srcObjName: SM_Desert_Rock_03 (15)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 18858803709778759, guid: c0a9c1dc3e953f34086bda1c4864cd9b,
|
||||||
|
type: 3}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.9890886
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.010269577
|
||||||
|
height: 0.015594542
|
||||||
|
srcObjName: SM_Desert_Rock_03 (15)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 5629084884208175553, guid: c0a9c1dc3e953f34086bda1c4864cd9b,
|
||||||
|
type: 3}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.9890886
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.010269577
|
||||||
|
height: 0.015594542
|
||||||
|
srcObjName: SM_Desert_Rock_03 (15)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 18858803709778759, guid: 93b662c63f7ed5d429925906ec8d78d9,
|
||||||
|
type: 3}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.9890886
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.010269577
|
||||||
|
height: 0.015594542
|
||||||
|
srcObjName: SM_Desert_Rock_03 (15)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 5629084884208175553, guid: 93b662c63f7ed5d429925906ec8d78d9,
|
||||||
|
type: 3}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.9890886
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.010269577
|
||||||
|
height: 0.015594542
|
||||||
|
srcObjName: SM_Desert_Rock_03 (15)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: afb7e14b660d5024cb5ff18c5075ffaf, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.00064184854
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.6572529
|
||||||
|
height: 0.9980507
|
||||||
|
srcObjName: CrossPlains_Ribs_01 (4)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: f136c764383697f469cb30fcba56597d, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.00064184854
|
||||||
|
y: 0.0009746589
|
||||||
|
width: 0.6572529
|
||||||
|
height: 0.9980507
|
||||||
|
srcObjName: CrossPlains_Ribs_01 (4)
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
- material: {fileID: 2100000, guid: f4714ac1872429b4f9f19f95f509e32f, type: 2}
|
||||||
|
atlasRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0.65917844
|
||||||
|
y: 0.751462
|
||||||
|
width: 0.08215661
|
||||||
|
height: 0.124756336
|
||||||
|
srcObjName: EA04_Env_Plants_Cactus_01a_LOD0
|
||||||
|
textureArraySliceIdx: -1
|
||||||
|
allPropsUseSameTiling: 1
|
||||||
|
allPropsUseSameTiling_sourceMaterialTiling:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
allPropsUseSameTiling_samplingEncapsulatinRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1
|
||||||
|
height: 1
|
||||||
|
propsUseDifferntTiling_srcUVsamplingRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 0
|
||||||
|
height: 0
|
||||||
|
tilingTreatment: 0
|
||||||
|
resultMaterials:
|
||||||
|
- combinedMaterial: {fileID: 2100000, guid: 53b7c4932a951af41ac76ad90910f50b, type: 2}
|
||||||
|
considerMeshUVs: 0
|
||||||
|
sourceMaterials:
|
||||||
|
- {fileID: 2100000, guid: 3ef71454599913c49a9da8ceca117798, type: 2}
|
||||||
|
- {fileID: 2100000, guid: bff8db4ee51d46d46aa5a6e765bd547d, type: 2}
|
||||||
|
- {fileID: 2100000, guid: a91cca2207c359d479e7b2a8f378225e, type: 2}
|
||||||
|
- {fileID: 2100000, guid: 4b58b991834d37249860df63da9050c8, type: 2}
|
||||||
|
- {fileID: 2100000, guid: eb8d78162619bc7419ffc6223a361874, type: 2}
|
||||||
|
- {fileID: 2100000, guid: 6bfb33ba5bbfc3d42bb1cfecfbf3fa3a, type: 2}
|
||||||
|
- {fileID: 2100000, guid: b8df34f7020bdf4418326459e5a02371, type: 2}
|
||||||
|
- {fileID: 2100000, guid: c71c5dd5e9888634480b1e8588e33313, type: 2}
|
||||||
|
- {fileID: 2100000, guid: 212e583a87de25a48835a41882343c1a, type: 2}
|
||||||
|
- {fileID: 18858803709778759, guid: bbdb55795fba976429c8d022052a3ea4, type: 3}
|
||||||
|
- {fileID: 5629084884208175553, guid: bbdb55795fba976429c8d022052a3ea4, type: 3}
|
||||||
|
- {fileID: 18858803709778759, guid: c0a9c1dc3e953f34086bda1c4864cd9b, type: 3}
|
||||||
|
- {fileID: 5629084884208175553, guid: c0a9c1dc3e953f34086bda1c4864cd9b, type: 3}
|
||||||
|
- {fileID: 18858803709778759, guid: 93b662c63f7ed5d429925906ec8d78d9, type: 3}
|
||||||
|
- {fileID: 5629084884208175553, guid: 93b662c63f7ed5d429925906ec8d78d9, type: 3}
|
||||||
|
- {fileID: 2100000, guid: afb7e14b660d5024cb5ff18c5075ffaf, type: 2}
|
||||||
|
- {fileID: 2100000, guid: f136c764383697f469cb30fcba56597d, type: 2}
|
||||||
|
- {fileID: 2100000, guid: f4714ac1872429b4f9f19f95f509e32f, type: 2}
|
||||||
|
resultMaterialsTexArray: []
|
||||||
|
doMultiMaterial: 0
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: c42ab9b47886e1b4db228ad04efdf278
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 063ff26701bb81b4f96bfb8b0be0ace0
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 4300000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
|
|
@ -0,0 +1,117 @@
|
||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!1 &1804919115405313422
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 7275408789435014796}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: Map_C02_MB
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &7275408789435014796
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 1804919115405313422}
|
||||||
|
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:
|
||||||
|
- {fileID: 6705913911838709451}
|
||||||
|
m_Father: {fileID: 0}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!1 &6571865066862866606
|
||||||
|
GameObject:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
serializedVersion: 6
|
||||||
|
m_Component:
|
||||||
|
- component: {fileID: 6705913911838709451}
|
||||||
|
- component: {fileID: 2714499380215807830}
|
||||||
|
- component: {fileID: 4035836264435596086}
|
||||||
|
m_Layer: 0
|
||||||
|
m_Name: MeshBaker-mesh-mesh
|
||||||
|
m_TagString: Untagged
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_NavMeshLayer: 0
|
||||||
|
m_StaticEditorFlags: 0
|
||||||
|
m_IsActive: 1
|
||||||
|
--- !u!4 &6705913911838709451
|
||||||
|
Transform:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6571865066862866606}
|
||||||
|
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: 7275408789435014796}
|
||||||
|
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||||
|
--- !u!33 &2714499380215807830
|
||||||
|
MeshFilter:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6571865066862866606}
|
||||||
|
m_Mesh: {fileID: 4300000, guid: 063ff26701bb81b4f96bfb8b0be0ace0, type: 2}
|
||||||
|
--- !u!23 &4035836264435596086
|
||||||
|
MeshRenderer:
|
||||||
|
m_ObjectHideFlags: 0
|
||||||
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
|
m_PrefabInstance: {fileID: 0}
|
||||||
|
m_PrefabAsset: {fileID: 0}
|
||||||
|
m_GameObject: {fileID: 6571865066862866606}
|
||||||
|
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: 53b7c4932a951af41ac76ad90910f50b, 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}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: f0806650b19fe604dbee7eb73b4dc0c1
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,7 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3255baa17093c7b4e913a2bc12db699b
|
||||||
|
PrefabImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -153,7 +153,6 @@ MonoBehaviour:
|
||||||
m_Script: {fileID: 11500000, guid: 257fffff46c7ccd4294e887c06fc9c5a, type: 3}
|
m_Script: {fileID: 11500000, guid: 257fffff46c7ccd4294e887c06fc9c5a, type: 3}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
go_Camera: {fileID: 0}
|
|
||||||
LoadSceneName: Map_C02
|
LoadSceneName: Map_C02
|
||||||
LoadMapPrefab: Assets/Res_Addr/Map/Map_C02.prefab
|
LoadMapPrefab: Assets/Res_Addr/Map/Map_C02.prefab
|
||||||
--- !u!4 &723760620
|
--- !u!4 &723760620
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -0,0 +1,8 @@
|
||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d550f410821aa384e80733b0dc485b8a
|
||||||
|
NativeFormatImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
mainObjectFileID: 11400000
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
Loading…
Reference in New Issue