20231123接地线修改

This commit is contained in:
huangjiayu 2023-11-23 15:15:43 +08:00
parent 4a414a7b7e
commit 6356dc44ba
22 changed files with 3702 additions and 530 deletions

View File

@ -1,272 +0,0 @@
using System.Collections.Generic;
using System.IO;
using Unity.VisualScripting;
using UnityEditor;
using UnityEngine;
public class tmptool : MonoBehaviour
{
public Transform a;
public Transform b;
public List<Transform> A;
public List<Transform> B;
public List<MeshRenderer> arender = new List<MeshRenderer>();
public List<MeshRenderer> brender = new List<MeshRenderer>();
public List<Material> amats = new List<Material>();
public List<Material> bmats = new List<Material>();
[ContextMenu("GetRenderer")]
public void GetMat()
{
arender.Clear();
brender.Clear();
var xa = a.GetComponentsInChildren<MeshRenderer>();
for (int i = 0; i < xa.Length; i++)
{
if (xa[i].name.Contains("R"))
{
arender.Add(xa[i]);
}
}
var xb = b.GetComponentsInChildren<MeshRenderer>();
for (int i = 0; i < xb.Length; i++)
{
if (xb[i].name.Contains("R"))
{
brender.Add(xb[i]);
}
}
}
[ContextMenu("Compair")]
public void Compair()
{
//for (int i = 0; i < arender.Count; i++)
//{
// if (brender[i].GetComponent<MeshFilter>().mesh.name == arender[i].GetComponent<MeshFilter>().mesh.name)
// {
// }
// else
// {
// Debug.Log("名称不匹配");
// }
//}
}
[ContextMenu("Replace Materials")]
public void Replace()
{
for (int i = 0; i < arender.Count; i++)
{
//brender[i].materials = new Material[arender[i].materials.Length];
//for (int j = 0; j < brender[i].materials.Length; j++)
//{
// brender[i].CopyComponent
//}
UnityEditorInternal.ComponentUtility.CopyComponent(arender[i]);
UnityEditorInternal.ComponentUtility.PasteComponentValues(brender[i]);
}
}
#region Mesh Filter
public List<MeshFilter> ameshFilter = new List<MeshFilter>();
[ContextMenu("获取AMeshFilter组件")]
/// <summary>
/// 获取Mesh组件
/// </summary>
void GetAMeshFilter()
{
for (int i = 0; i < a.childCount; i++)
{
//if (a.GetChild(i).GetComponent<Mesh>())
//{
// ameshs.Add(a.GetChild(i).GetComponent<Mesh>());
//}
//else
//{
// ameshs.Add(a.GetChild(i).getc<Mesh>());
//}
//ameshs.Add(a.GetChild(i).GetComponentInChildren<MeshFilter>());
if (a.GetChild(i).GetComponent<MeshFilter>())
ameshFilter.Add(a.GetChild(i).GetComponent<MeshFilter>());
}
if (a.childCount == 0)
ameshFilter.Add(a.GetComponent<MeshFilter>());
}
public List<MeshFilter> bmeshsFilter = new List<MeshFilter>();
[ContextMenu("获取BMeshFilter组件")]
/// <summary>
/// 获取Mesh组件
/// </summary>
void GetBMeshFilter()
{
for (int i = 0; i < b.childCount; i++)
{
//if (a.GetChild(i).GetComponent<Mesh>())
//{
// ameshs.Add(a.GetChild(i).GetComponent<Mesh>());
//}
//else
//{
// ameshs.Add(a.GetChild(i).getc<Mesh>());
//}
//bmeshs.Add(b.GetChild(i).GetComponentInChildren<MeshFilter>());
if (b.GetChild(i).GetComponent<MeshFilter>())
bmeshsFilter.Add(b.GetChild(i).GetComponent<MeshFilter>());
}
if (b.GetChild(0).name == "锚点")
bmeshsFilter.Add(b.GetComponent<MeshFilter>());
}
[ContextMenu("Replace BMeshFilter")]
public void ReplaceABMesh()
{
for (int i = 0; i < ameshFilter.Count; i++)
{
//brender[i].materials = new Material[arender[i].materials.Length];
//for (int j = 0; j < brender[i].materials.Length; j++)
//{
// brender[i].CopyComponent
//}
UnityEditorInternal.ComponentUtility.CopyComponent(ameshFilter[i]);
UnityEditorInternal.ComponentUtility.PasteComponentValues(bmeshsFilter[i]);
}
}
#endregion
[ContextMenu("-----------------------------------------------------------------")]
public void asd() { }
#region Mesh
public List<MeshRenderer> a_meshs = new List<MeshRenderer>();
[ContextMenu("获取AMesh组件")]
/// <summary>
/// 获取Mesh组件
/// </summary>
void GetAMesh()
{
for (int i = 0; i < a.childCount; i++)
{
//a_meshs.Add(a.GetChild(i).GetComponentInChildren<MeshRenderer>());
if (a.GetChild(i).GetComponent<MeshRenderer>())
a_meshs.Add(a.GetChild(i).GetComponent<MeshRenderer>());
}
if (a.childCount == 0)
a_meshs.Add(a.GetComponent<MeshRenderer>());
}
public List<MeshRenderer> b_meshs = new List<MeshRenderer>();
[ContextMenu("获取BMesh组件")]
/// <summary>
/// 获取Mesh组件
/// </summary>
void GetBMesh()
{
for (int i = 0; i < b.childCount; i++)
{
//b_meshs.Add(b.GetChild(i).GetComponentInChildren<MeshRenderer>());
if (b.GetChild(i).GetComponent<MeshRenderer>())
b_meshs.Add(b.GetChild(i).GetComponent<MeshRenderer>());
}
if (b.GetChild(0).name == "锚点")
b_meshs.Add(b.GetComponent<MeshRenderer>());
}
[ContextMenu("Replace BMesh")]
public void ReplaceA_BMesh()
{
for (int i = 0; i < a_meshs.Count; i++)
{
UnityEditorInternal.ComponentUtility.CopyComponent(a_meshs[i]);
UnityEditorInternal.ComponentUtility.PasteComponentValues(b_meshs[i]);
}
}
#endregion
public void change_mat()
{
}
[ContextMenu("粘贴5个脚本设备")]
public void Replace5()
{
var b1 = b.AddComponent<DeviceQuery>();
var b2 = b.AddComponent<DragTest>();
var b3 = b.AddComponent<TmsAlarmQuery>();
var b4 = b.AddComponent<TransparentGlow>();
var b5 = b.AddComponent<DragTest1>();
UnityEditorInternal.ComponentUtility.CopyComponent(a.GetComponent<DeviceQuery>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b1);
UnityEditorInternal.ComponentUtility.CopyComponent(a.GetComponent<DragTest>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b2);
UnityEditorInternal.ComponentUtility.CopyComponent(a.GetComponent<TmsAlarmQuery>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b3);
UnityEditorInternal.ComponentUtility.CopyComponent(a.GetComponent<TransparentGlow>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b4);
UnityEditorInternal.ComponentUtility.CopyComponent(a.GetComponent<DragTest1>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b5);
if (!b.GetComponent<MeshCollider>()) b.AddComponent<MeshCollider>();
}
[ContextMenu("粘贴4个脚本板卡")]
public void Replace4()
{
for (int i = 0; i < A.Count; i++)
{
var b1 = B[i].AddComponent<DeviceQuery>();
//var b2 = B.AddComponent<DragTest>();
var b3 = B[i].AddComponent<TmsAlarmQuery>();
var b4 = B[i].AddComponent<TransparentGlow>();
//var b5 = B.AddComponent<DragTest1>();
var b6 = B[i].AddComponent<ClickEvent>();
UnityEditorInternal.ComponentUtility.CopyComponent(A[i].GetComponent<DeviceQuery>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b1);
//UnityEditorInternal.ComponentUtility.CopyComponent(A.GetComponent<DragTest>());
//UnityEditorInternal.ComponentUtility.PasteComponentValues(b2);
UnityEditorInternal.ComponentUtility.CopyComponent(A[i].GetComponent<TmsAlarmQuery>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b3);
UnityEditorInternal.ComponentUtility.CopyComponent(A[i].GetComponent<TransparentGlow>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b4);
//UnityEditorInternal.ComponentUtility.CopyComponent(A.GetComponent<DragTest1>());
//UnityEditorInternal.ComponentUtility.PasteComponentValues(b5);
UnityEditorInternal.ComponentUtility.CopyComponent(A[i].GetComponent<ClickEvent>());
UnityEditorInternal.ComponentUtility.PasteComponentValues(b6);
if (!B[i].GetComponent<MeshCollider>()) B[i].AddComponent<MeshCollider>();
}
}
[ContextMenu("################################################")]
[ContextMenu("获取模型缩略图")]
public void SaveThumbnail()
{
}
}

View File

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

View File

@ -7,8 +7,8 @@ Material:
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: SG_LightSwitch
m_Shader: {fileID: -6465566751694194690, guid: 0c0c42eed24e3dd4ea09134192e53945,
m_Name: SG_LightOpacity
m_Shader: {fileID: -6465566751694194690, guid: 7fc2c37ef2892fa40924323d8266a3ac,
type: 3}
m_ValidKeywords: []
m_InvalidKeywords: []
@ -35,15 +35,17 @@ Material:
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _NetTwinkleTime: 1
- _OPENORCLOSE: 0
- _MetalInt: 0
- _OpacityInt: 1
- _PowInt: 1.19
- _QueueControl: 0
- _QueueOffset: 0
- _SmoothInt: 0
m_Colors:
- _NetCloseLightCol: {r: 0, g: 0, b: 0, a: 0}
- _NetOpenLightCol: {r: 1, g: 1, b: 1, a: 0}
- _MainCol_1: {r: 0.04774831, g: 0.2628307, b: 0.4117647, a: 0}
- _MainCol_2: {r: 0.509434, g: 0.509434, b: 0.509434, a: 0}
m_BuildTextureStacks: []
--- !u!114 &378851345560964501
--- !u!114 &1689555450806718643
MonoBehaviour:
m_ObjectHideFlags: 11
m_CorrespondingSourceObject: {fileID: 0}

View File

@ -1,5 +1,5 @@
fileFormatVersion: 2
guid: abbb013c2fca5f64eba22022da9f83b8
guid: e287ff1782178084ba9ac03a4323ae72
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 2100000

View File

@ -40,7 +40,7 @@ Material:
- _TwinkleTime: 8
m_Colors:
- _DarkestLightInt: {r: 0.16981131, g: 0.13216867, b: 0.020024916, a: 1}
- _LightCol: {r: 23.968628, g: 17.945099, b: 0, a: 1}
- _LightCol: {r: 5.992157, g: 4.4862747, b: 0, a: 1}
m_BuildTextureStacks: []
--- !u!114 &903638357331876389
MonoBehaviour:

View File

@ -125,7 +125,7 @@ Material:
- _ZWrite: 0
m_Colors:
- _BaseColor: {r: 0.6040851, g: 0.6687489, b: 0.7075472, a: 0.5}
- _Color: {r: 0.6040851, g: 0.6687489, b: 0.7075472, a: 0.5}
- _Color: {r: 0.604085, g: 0.6687489, b: 0.7075471, a: 0.5}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View File

@ -109,7 +109,7 @@ Material:
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.6226415, g: 0.6226415, b: 0.6226415, a: 1}
- _Color: {r: 0.6226415, g: 0.6226415, b: 0.6226415, a: 1}
- _Color: {r: 0.62264144, g: 0.62264144, b: 0.62264144, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View File

@ -122,7 +122,7 @@ Material:
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.588, g: 0.588, b: 0.588, a: 1}
- _Color: {r: 0.588, g: 0.588, b: 0.588, a: 1}
- _Color: {r: 0.58799994, g: 0.58799994, b: 0.58799994, a: 1}
- _EmissionColor: {r: 0, g: 0, b: 0, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View File

@ -110,7 +110,7 @@ Material:
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.7075472, g: 0.7075472, b: 0.7075472, a: 1}
- _Color: {r: 0.7075472, g: 0.7075472, b: 0.7075472, a: 1}
- _Color: {r: 0.7075471, g: 0.7075471, b: 0.7075471, a: 1}
- _EmissionColor: {r: 0.1509434, g: 0.1509434, b: 0.1509434, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View File

@ -110,7 +110,7 @@ Material:
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- _Color: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- _Color: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
- _EmissionColor: {r: 0.03773582, g: 0.03773582, b: 0.03773582, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View File

@ -123,7 +123,7 @@ Material:
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- _Color: {r: 0.2, g: 0.2, b: 0.2, a: 1}
- _Color: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
- _EmissionColor: {r: 0.09433961, g: 0.09433961, b: 0.09433961, a: 1}
- _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1}
m_BuildTextureStacks: []

View File

@ -14,7 +14,7 @@ Material:
m_InvalidKeywords: []
m_LightmapFlags: 2
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_DoubleSidedGI: 1
m_CustomRenderQueue: -1
stringTagMap:
RenderType: Opaque
@ -85,7 +85,7 @@ Material:
- _BumpScale: 1
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _Cull: 2
- _Cull: 0
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1

View File

@ -0,0 +1,105 @@
fileFormatVersion: 2
guid: f6064daec5eaf384997413c5cd74125e
ModelImporter:
serializedVersion: 21202
internalIDToNameTable: []
externalObjects: {}
materials:
materialImportMode: 2
materialName: 0
materialSearch: 1
materialLocation: 1
animations:
legacyGenerateAnimations: 4
bakeSimulation: 0
resampleCurves: 1
optimizeGameObjects: 0
removeConstantScaleCurves: 1
motionNodeName:
rigImportErrors:
rigImportWarnings:
animationImportErrors:
animationImportWarnings:
animationRetargetingWarnings:
animationDoRetargetingWarnings: 0
importAnimatedCustomProperties: 0
importConstraints: 0
animationCompression: 1
animationRotationError: 0.5
animationPositionError: 0.5
animationScaleError: 0.5
animationWrapMode: 0
extraExposedTransformPaths: []
extraUserProperties: []
clipAnimations: []
isReadable: 0
meshes:
lODScreenPercentages: []
globalScale: 0.013
meshCompression: 0
addColliders: 0
useSRGBMaterialColor: 1
sortHierarchyByName: 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
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: 0.013
rootMotionBoneName:
hasTranslationDoF: 0
hasExtraRoot: 0
skeletonHasParents: 1
lastHumanDescriptionAvatarSource: {instanceID: 0}
autoGenerateAvatarMappingIfUnspecified: 1
animationType: 2
humanoidOversampling: 1
avatarSetup: 0
addHumanoidExtraRootOnlyWhenUsingAvatar: 1
additionalBone: 0
userData:
assetBundleName:
assetBundleVariant:

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,10 @@
fileFormatVersion: 2
guid: ca5c2476a32a2a94eb860136bcd20375
ScriptedImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 2
userData:
assetBundleName:
assetBundleVariant:
script: {fileID: 11500000, guid: 625f186215c104763be7675aa2d941aa, type: 3}

View File

@ -8,15 +8,15 @@ Material:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: emission black
m_Shader: {fileID: 4800000, guid: 8d2bb70cbf9db8d4da26e15b26e74248, type: 3}
m_Shader: {fileID: -6465566751694194690, guid: ca5c2476a32a2a94eb860136bcd20375,
type: 3}
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 4
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap:
RenderType: Opaque
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
@ -25,6 +25,10 @@ Material:
m_Texture: {fileID: 2800000, guid: 489ce2ae134015c4abd28e453cf24ca3, type: 3}
m_Scale: {x: 2.44, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseTex:
m_Texture: {fileID: 2800000, guid: 489ce2ae134015c4abd28e453cf24ca3, 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}
@ -96,10 +100,12 @@ Material:
- _Glossiness: 0.5
- _GlossinessSource: 0
- _GlossyReflections: 1
- _LightInt: 1
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _SampleGI: 0
@ -122,6 +128,7 @@ Material:
m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionCol: {r: 0, g: 0, b: 0, a: 0}
- _EmissionColor: {r: 0.6037736, g: 0.5945529, b: 0.05980776, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []

View File

@ -0,0 +1,147 @@
%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: emission blue
m_Shader: {fileID: -6465566751694194690, guid: ca5c2476a32a2a94eb860136bcd20375,
type: 3}
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 2
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
m_TexEnvs:
- _BaseMap:
m_Texture: {fileID: 2800000, guid: 489ce2ae134015c4abd28e453cf24ca3, type: 3}
m_Scale: {x: 2.44, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseTex:
m_Texture: {fileID: 2800000, guid: 489ce2ae134015c4abd28e453cf24ca3, 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: 489ce2ae134015c4abd28e453cf24ca3, type: 3}
m_Scale: {x: 2.44, y: 1}
m_Offset: {x: 0, y: 0}
- _MetallicGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _OcclusionMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _ParallaxMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- _SpecGlossMap:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_Lightmaps:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_LightmapsInd:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
- unity_ShadowMasks:
m_Texture: {fileID: 0}
m_Scale: {x: 1, y: 1}
m_Offset: {x: 0, y: 0}
m_Ints: []
m_Floats:
- _AlphaClip: 0
- _Blend: 0
- _BlendOp: 0
- _BumpScale: 3
- _ClearCoatMask: 0
- _ClearCoatSmoothness: 0
- _ColorMask: 15
- _Cull: 2
- _Cutoff: 0.5
- _DetailAlbedoMapScale: 1
- _DetailNormalMapScale: 1
- _DstBlend: 0
- _EnvironmentReflections: 1
- _GlossMapScale: 1
- _Glossiness: 0.5
- _GlossinessSource: 0
- _GlossyReflections: 1
- _LightInt: 4
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _SampleGI: 0
- _Shininess: 0
- _Smoothness: 0
- _SmoothnessSource: 0
- _SmoothnessTextureChannel: 0
- _SpecSource: 0
- _SpecularHighlights: 1
- _SrcBlend: 1
- _Stencil: 0
- _StencilComp: 8
- _StencilOp: 0
- _StencilReadMask: 255
- _StencilWriteMask: 255
- _Surface: 0
- _UVSec: 0
- _WorkflowMode: 1
- _ZWrite: 1
m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionCol: {r: 0, g: 1.1450981, b: 1.4980392, a: 0}
- _EmissionColor: {r: 0, g: 0.52987903, b: 0.6603774, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
--- !u!114 &4586313418104410923
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: 5

View File

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

View File

@ -8,16 +8,15 @@ Material:
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_Name: emission
m_Shader: {fileID: 4800000, guid: 8d2bb70cbf9db8d4da26e15b26e74248, type: 3}
m_ValidKeywords:
- _EMISSION
m_Shader: {fileID: -6465566751694194690, guid: ca5c2476a32a2a94eb860136bcd20375,
type: 3}
m_ValidKeywords: []
m_InvalidKeywords: []
m_LightmapFlags: 2
m_EnableInstancingVariants: 0
m_DoubleSidedGI: 0
m_CustomRenderQueue: -1
stringTagMap:
RenderType: Opaque
stringTagMap: {}
disabledShaderPasses: []
m_SavedProperties:
serializedVersion: 3
@ -26,6 +25,10 @@ Material:
m_Texture: {fileID: 2800000, guid: 489ce2ae134015c4abd28e453cf24ca3, type: 3}
m_Scale: {x: 2.44, y: 1}
m_Offset: {x: 0, y: 0}
- _BaseTex:
m_Texture: {fileID: 2800000, guid: 489ce2ae134015c4abd28e453cf24ca3, 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}
@ -97,10 +100,12 @@ Material:
- _Glossiness: 0.5
- _GlossinessSource: 0
- _GlossyReflections: 1
- _LightInt: 5
- _Metallic: 0
- _Mode: 0
- _OcclusionStrength: 1
- _Parallax: 0.02
- _QueueControl: 0
- _QueueOffset: 0
- _ReceiveShadows: 1
- _SampleGI: 0
@ -123,7 +128,8 @@ Material:
m_Colors:
- _BaseColor: {r: 1, g: 1, b: 1, a: 1}
- _Color: {r: 1, g: 1, b: 1, a: 1}
- _EmissionColor: {r: 0.5882353, g: 0.5882353, b: 0, a: 1}
- _EmissionCol: {r: 0, g: 0, b: 0, a: 0}
- _EmissionColor: {r: 0.5754717, g: 0.5754717, b: 0, a: 1}
- _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1}
m_BuildTextureStacks: []
--- !u!114 &4586313418104410923

View File

@ -62,7 +62,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -153,7 +153,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -248,7 +248,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -339,7 +339,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -433,7 +433,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -527,7 +527,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -621,7 +621,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -716,7 +716,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -810,7 +810,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1161,7 +1161,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1252,7 +1252,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1347,7 +1347,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1442,7 +1442,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1536,7 +1536,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1630,7 +1630,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1725,7 +1725,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1816,7 +1816,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1907,7 +1907,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -1998,7 +1998,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -2093,7 +2093,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}
@ -2184,7 +2184,7 @@ MeshRenderer:
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: 7a2ef6e935679534a894b0af47440c1c, type: 2}
- {fileID: 2100000, guid: cf5586d329d32c54eb0957902257f300, type: 2}
- {fileID: 2100000, guid: f401da9e617004c4d9a134ea419dff7b, type: 2}
- {fileID: 2100000, guid: 4a8a2156a741f7d43b02ad9388c04ec4, type: 2}
- {fileID: 2100000, guid: cd753e6b09d44ee4ca3ec65fe8b12077, type: 2}
- {fileID: 2100000, guid: a31d6a4dc1517a34f96b04f27f067140, type: 2}

File diff suppressed because it is too large Load Diff